From 60fb049f5642691be1e600a9a8272541f60d6298 Mon Sep 17 00:00:00 2001 From: Alex Pavlenko Date: Sun, 21 Jul 2024 13:41:20 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20add=20note=20in=20docs=20regarding=20so?= =?UTF-8?q?lution=20selection=20due=20to=20vscode=20set=E2=80=A6=20(#242)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …tings removal from VCS in [#29285](https://github.com/space-wizards/space-station-14/issues/29285). --- .../setup/setting-up-a-development-environment.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/en/general-development/setup/setting-up-a-development-environment.md b/src/en/general-development/setup/setting-up-a-development-environment.md index 465e073b3..dc30af604 100644 --- a/src/en/general-development/setup/setting-up-a-development-environment.md +++ b/src/en/general-development/setup/setting-up-a-development-environment.md @@ -58,7 +58,8 @@ And with that, your repo is now properly setup! 2. Run the installer or extract the zip file to a location of your choice and run the .exe once extracted. 3. Once installed, navigate to the Extensions tab (part way down on the top left corner bar, looks like 4 tiles) and search for "C#". An extension by "Muhammad-Sammy" with over 70K downloads and a green / white logo is the one, install that. Extension ID `muhammad-sammy.csharp`. 4. Select File > Open Folder, then navigate to your cloned repository from above and open this full folder. -5. Now you can run and debug your game. Select the icon above "Extensions" from earlier for "Run and Debug" and from the dropdown next to the green play button you can select "Server/Client". This will run both the client and server, opening the game for you to debug. Relevant information will pop up in the debug along the bottom. Select the processes in the call stack on the left to change what you are debugging. +5. When asked to open a solution, select `SpaceStation14.sln`. Alternatively, set `dotnet.defaultSolution` setting to `SpaceStation14.sln` in your workspace settings. +6. Now you can run and debug your game. Select the icon above "Extensions" from earlier for "Run and Debug" and from the dropdown next to the green play button you can select "Server/Client". This will run both the client and server, opening the game for you to debug. Relevant information will pop up in the debug along the bottom. Select the processes in the call stack on the left to change what you are debugging. ## 4. Starting SS14