Skip to content

Commit

Permalink
Add Winget instructions (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilisThePikachu authored Dec 12, 2024
1 parent e384088 commit fd639f5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The only modifications you can do to a packaged server build is with the ``serve
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).
```

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.
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``
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.
3. Extract that to a directory somewhere.
4. Run `run_server.bat` (Windows) or `Robust.Server` [via terminal on macOS/Linux](#running-the-server-on-macos-or-linux))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,27 @@ First you're gonna need some software:
* **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.
* For **all platforms**, [VSCodium](https://vscodium.com/) with the C# extension. Open source and without the bloat and tracking of VSCode.

~~~admonish info title="Windows and winget"
Windows users are suggested to use winget for an easier install, just open a command prompt/powershell and enter the following:
Required:
```
winget install Git.Git
winget install Python.Python.3.13
winget install Microsoft.DotNet.SDK.8
```
And one of the following ide's:
``winget install JetBrains.Toolbox`` (replace with ``JetBrains.Rider`` if you don't want the whole toolbox app)
``winget install Microsoft.VisualStudio.2022.Community`` (Visual Studio 2022)
``winget install Microsoft.VisualStudioCode`` (Visual Studio Code)
``winget install VSCodium.VSCodium`` (VSCodium)
~~~

## Video guide
Are you stuck? Don't understand how to do a certain part? This video should help

Expand Down

0 comments on commit fd639f5

Please sign in to comment.