Skip to content

Commit fd639f5

Browse files
Add Winget instructions (space-wizards#356)
1 parent e384088 commit fd639f5

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/en/general-development/setup/server-hosting-tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The only modifications you can do to a packaged server build is with the ``serve
1010
If you wish to modify your server to add your own content. You will need a [proper development environment](./setting-up-a-development-environment.md) with your changes and then [package your own custom build.](#level-2-server-with-custom-code).
1111
```
1212

13-
1. Download and install the [.NET 8 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). You only need "x64" under "run console apps" not "hosting bundle" from the downloads page.
13+
1. Download and install the [.NET 8 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). You only need "x64" under "run console apps" not "hosting bundle" from the downloads page. If you know how to use winget ``winget install Microsoft.DotNet.Runtime.8``
1414
2. Download the latest version of the server from [our builds page](https://wizards.cdn.spacestation14.com/fork/wizards), for your operating system. If you are looking for another fork, ask that fork if they have a server builds page. Otherwise refer to the [Custom Code](#level-2-server-with-custom-code) section below.
1515
3. Extract that to a directory somewhere.
1616
4. Run `run_server.bat` (Windows) or `Robust.Server` [via terminal on macOS/Linux](#running-the-server-on-macos-or-linux))

src/en/general-development/setup/setting-up-a-development-environment.md

+21
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,27 @@ First you're gonna need some software:
1313
* **Exclusive to VSCode/VSCodium**: you can install our community made [Robust YAML](https://marketplace.visualstudio.com/items?itemName=slava0135.robust-yaml) extension for better Robust Toolbox YAML experience on top of [YAML Language Support](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) extension.
1414
* For **all platforms**, [VSCodium](https://vscodium.com/) with the C# extension. Open source and without the bloat and tracking of VSCode.
1515

16+
~~~admonish info title="Windows and winget"
17+
Windows users are suggested to use winget for an easier install, just open a command prompt/powershell and enter the following:
18+
19+
Required:
20+
```
21+
winget install Git.Git
22+
winget install Python.Python.3.13
23+
winget install Microsoft.DotNet.SDK.8
24+
```
25+
26+
And one of the following ide's:
27+
28+
``winget install JetBrains.Toolbox`` (replace with ``JetBrains.Rider`` if you don't want the whole toolbox app)
29+
30+
``winget install Microsoft.VisualStudio.2022.Community`` (Visual Studio 2022)
31+
32+
``winget install Microsoft.VisualStudioCode`` (Visual Studio Code)
33+
34+
``winget install VSCodium.VSCodium`` (VSCodium)
35+
~~~
36+
1637
## Video guide
1738
Are you stuck? Don't understand how to do a certain part? This video should help
1839

0 commit comments

Comments
 (0)