Sha256: 6e145d35d96b3653ac77b3b9090bb2d7a9ce15384411a7766d012455566f5c78
Contents?: true
Size: 1.38 KB
Versions: 129
Compression:
Stored size: 1.38 KB
Contents
### Installing .NET Core The C# track is built on top of the [.NET Core](https://www.microsoft.com/net/core/platform) platform, which runs on Windows, Linux and macOS. To build .NET Core projects, you can use the .NET Core Command Line Interface (CLI). This CLI is part of the .NET Core SDK, which you can install by following the [installation instructions](https://www.microsoft.com/net/download/core). After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: ```bash dotnet --version ``` It the output is a version greater than or equal to `1.0.0`, the .NET Core SDK has been installed succesfully. ### Using an IDE 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 Core projects: * [Visual Studio 2017](https://www.visualstudio.com/downloads/) * [Visual Studio Code](https://code.visualstudio.com/download) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp) * [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/) (still in beta) * [Project Rider](https://www.jetbrains.com/rider/download/) (still in EAP) Note: as the .NET Core project format differs significantly from earlier versions, older IDE's (like Visual Studio 2015 and Xamarin Studio) are not supported.
Version data entries
129 entries across 129 versions & 1 rubygems