Sha256: 75024f3409d8ed80ccbe76359369181099d8e274bd90f4f4c0f298ee94cbc6d9
Contents?: true
Size: 1.46 KB
Versions: 156
Compression:
Stored size: 1.46 KB
Contents
### Installing .NET Core The F# 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). Note: the F# track requires SDK version 2.0 or greater. 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 `2.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/) (version 15.3.1 and higher) * [Visual Studio Code](https://code.visualstudio.com/download) with the [Ionide-fsharp extension](https://marketplace.visualstudio.com/items?itemName=Ionide.Ionide-fsharp) * [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/) (still in beta) * [Project Rider](https://www.jetbrains.com/rider/download/) 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
156 entries across 156 versions & 1 rubygems