Learn how to install C# locally to solve Exercism's exercises on your own machine
The C# track is built on top of the .NET platform, which runs on Windows, Linux and macOS. To build .NET projects, you can use the .NET Command Line Interface (CLI). This CLI is part of the .NET SDK, which you can install by following the installation instructions. Note: the C# track requires SDK version 8.0 or greater.
After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal:
dotnet --version
If the output is a version greater than or equal to 8.0.100
, the .NET SDK has been installed succesfully.
If you want a more full-featured editing experience, you probably want to to use an IDE. These are the most popular IDE's that support building .NET projects:
Note: as the .NET project format differs significantly from earlier versions, older IDE's (like Visual Studio 2015) are not supported.