Eraknelo Posted June 22, 2018 Posted June 22, 2018 (edited) I wanted to make a tutorial that is a little different from what is currently offered on the wiki (https://wiki.gtanet.work/index.php?title=Setting_Up_a_Development_Environment_using_Visual_Studio) This tutorial gets you through setting up a project outside the RAGE MP folder, that automatically builds into a resource folder, and allows debugging by simply pressing "Run" or F5 in Visual Studio 2017 There's a download of a project set up this way in the bottom of the post, if you just want to get started as fast as possible. You'll need to change all the paths in the configured project obviously, but there you go. Prerequisites Visual Studio 2017 (At the time of writing, using version 15.7.1) RAGE MP installed and server set up. Common sense Setup Ensure the .NET Core cross-platform development package/product is installed. Open Visual Studio Installer from the start menu Click on modify under Visual Studio {Version} 2017 Find .NET Core cross-platform development and make sure it's checked If it wasn't installed previously, after checking the box on this item, click modify in the bottom right, and install the package. Creating the project Open Visual Studio, and click File -> New -> Project. In the tree on the left, go to Installed -> Visual C# -> .NET Core. Then select Class Library (.NET Core) in the list on the right. Give your project a name in the bottom, choose a location to store it (can be anywhere on your PC), and hit OK This should create a project that compiles as .NET Core 2.0, which is the version used for resources at the time of writing. It may change to 2.1 in version 0.4 of RAGE MP. To ensure the project compiles to Core 2.0, right click on your new project in the Solution Explorer, and select Properties. Under Target framework, ensure it says .NET Core 2.0 While we're here, we can configure debugging. On the left, select the Debug tab, change the Launch dropdown to Executable. A new item appears: Executable with a Browse... button. Click browse, and select your RAGE MP server.exe The second input below that is for Working directory, set that to the folder that contains server.exe Save this window and close it. Build configuration Now we need to change how the project is built. If you want use external NuGet packages, you'll want Visual Studio to copy their DLLs to the build directory. Right click on your project in the Solution Explorer, and click Edit {project name}.csproj Under <TargetFramework>netcoreapp2.0</TargetFramework> Add the following: <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> Save and close the file. Now we set up the Meta.xml file. Right click on your project, and select Add -> New Item... In the pop-up dialog, click on Installed -> Visual C# Items in the tree on the left, then scroll down and select Xml File in the list on the right, and name it meta.xml Replace the file contents with the following, replacing ExampleResource with the name of your project: <meta> <info name="ExampleResource" type="script" /> <script src="ExampleResource.dll" /> </meta> Save and close the file. Right click on the file in Solution Explorer and click Properties Set Build Action to Content and Copy to Output Directory to Copy always Now let's configure it to copy the built project to the resources directory. Go back to the project properties (Solution Explorer, right click on the project, Properties). Open the Build Events tab, and put the following code in the text box under Post-build event command line: del "D:\Games\RAGEMP\server-files\bridge\resources\ExampleResource\*.*" /Q xcopy "$(OutDir)*" "D:\Games\RAGEMP\server-files\bridge\resources\ExampleResource" /Y Make sure to replace the path to \bridge\resources and ExampleResource with the correct path to the resources, and your project name. Also make sure the folder exists, obviously. Save and close the properties window. Try going to Build -> Rebuild Solution in the top of Visual Studio. This should complete successfully, and several DLLs should now appear in the resource folder in your server installation. Add the resource to the server settings.xml Open the settings.xml file in the RAGE MP server directory under the bridge folder Add the following, replacing ExampleResource with the name of your resource <resource src="ExampleResource" /> Save and close the file. Creating the resource Alright, that should be the basic project and debugging configured. Now let's add the GTA Network package so we can create a resource. In the Solution Explorer, right click on your project and select Manage NuGet packages... Click on Browse in the top left, search for gtanetwork.api, and install the gtanetwork.api package. By default, there should be a Class1.cs with a class in it called Class1. I like to rename this to Main.cs with a class Main, I suggest you do the same as I'll be referring to it in the rest of the tutorial. Replace the content of the file with the following. I will not be explaining basic C#, but it'll demonstrate the project working, and give you an entry point for the code: using System; using GTANetworkAPI; namespace ExampleResource { public class Main : Script { [ServerEvent(Event.ResourceStart)] public void OnResourceStart() { NAPI.Util.ConsoleOutput("Example resource loaded!"); } } } Save the file, and HIT THAT MF DEBUG BUTTON in the top of Visual Studio The server should now start up and show our console output: Breakpoints Breakpoints should also work immediately, try placing one on the console output, and hit debug: If something still doesn't work, you can download an example project here, which was set up using the steps above. Obviously you'll need to change the paths configured in it to match your system, but it may help you debug any issues. Edited July 28, 2018 by Eraknelo 17
FailerZ Posted June 27, 2018 Posted June 27, 2018 (edited) Quote Try going to Build -> Rebuild Solution in the top of Visual Studio. This should complete successfully, and several DLLs should now appear in the resource folder in your server installation. This step failed for me because ExampleResource folder doesn't exists, So I have created one but It said copied 0 files and it is empty after rebuild What am I doing wrong? EDIT: Never mind. I was placing the commands in pre-build instead of post build!! Sorry! Edited June 27, 2018 by FailerZ 1
Illuminated Posted July 25, 2018 Posted July 25, 2018 Hello, i have a problem like this: Picture KLICK What i´m doing wrong ?!
Eraknelo Posted July 25, 2018 Author Posted July 25, 2018 (edited) 37 minutes ago, Illuminated said: Hello, i have a problem like this: Picture KLICK What i´m doing wrong ?! Is the path correct? Make sure to replace the path to \bridge\resources and ExampleResource with the correct path to the resources, and your project name. Edited July 25, 2018 by Eraknelo
Illuminated Posted July 25, 2018 Posted July 25, 2018 Gerade eben schrieb Eraknelo: Is the path correct? yes, I have tried it with my own project and with the sample project, always the same mistake.
Eraknelo Posted July 25, 2018 Author Posted July 25, 2018 15 minutes ago, Illuminated said: yes, I have tried it with my own project and with the sample project, always the same mistake. So you're saying that you actually happen to have the exact folder in the exact same place on your system? D:\Games\RAGEMP\server-files\bridge\resources\ExampleResource\ is an existing folder?
Illuminated Posted July 25, 2018 Posted July 25, 2018 (edited) vor 4 Minuten schrieb Eraknelo: So you're saying that you actually happen to have the exact folder in the exact same place on your system? D:\Games\RAGEMP\server-files\bridge\resources\ExampleResource\ is an existing folder? yes, to be exact, I changed the paths to D:\RAGEMP\server-files\bridge\resources\PROJECTANAME\ . it does not work anyway. Now I've tried it with JetBrains Rider, there it goes = P Edited July 25, 2018 by Illuminated
Guest Sоukyan Posted July 25, 2018 Posted July 25, 2018 1 minute ago, Illuminated said: yes, to be exact, I changed the paths to D:\RAGEMP\server-files\bridge\resources\PROJECTANAME\ . it does not work anyway. Now I've tried it with JetBrains Rider, there it goes = P Provide whole post build event code.
Illuminated Posted July 25, 2018 Posted July 25, 2018 vor 1 Minute schrieb Soukyan: Provide whole post build event code. I do not know why, but it works now.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now