IDE Setup
If you don’t set up your IDE (like Visual Studio or JetBrains Rider) correctly for s&box development, you might run into issues like missing IntelliSense and missing references. Here’s how to set it up properly.
Visual Studio
- Make sure you have the latest version of Visual Studio installed, at the time of writing, Visual Studio 2026 is required.
- Install the
.NET desktop developmentandASP.Net and web developmentworkload during installation, via the Visual Studio Installer, or go toTools -> Get Tools and Featuresin Visual Studio. - Just to be sure, install the latest .NET SDK as well. At the time of writing, s&box uses .NET 10. You may need to download both the SDK and the Runtime.
Common Issues
- Missing IntelliSense/References: Open the solution file (
.slnx) located in your project folder. You can do this from theProject -> Open Solutionmenu in the s&box editor. - slnx file opens as text: Your Visual Studio installation is too old. Update to 2026 or later.
JetBrains Rider
- Make sure you have the latest version of JetBrains Rider installed.
- Install the latest .NET SDK as well. At the time of writing, s&box uses .NET 10. You may need to download both the SDK and the Runtime.
- Open the solution file (
.slnx) located in your project folder. You can do this from theProject -> Open Solutionmenu in the s&box editor.
Visual Studio Code
Even if you follow the steps below, Visual Studio Code might still not work perfectly with s&box development. For the best experience, consider using Visual Studio or JetBrains Rider.
- Make sure you have the latest version of Visual Studio Code installed.
- Install the latest .NET SDK as well. At the time of writing, s&box uses .NET 10. You may need to download both the SDK and the Runtime.
- Install the
C#andC# Dev Kitextensions from the extensions tab. - Open your s&box project folder in Visual Studio Code using
File -> Open Folder.... Do not open thecodefolder, you want to open the root project folder. - If the solution file (
.slnx) does not open automatically, open it manually from the dropdown in the bottom left corner of the window.
Common Issues
- Missing IntelliSense/References: Make sure you have the
C#andC# Dev Kitextensions installed. Make sure you have the latest .NET SDK installed. Open the solution properly as described above.