Skip to content

Commit 8223bbe

Browse files
authored
Update INSTALLATION.md (#2405)
1 parent a05b455 commit 8223bbe

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

docs/INSTALLATION.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,27 @@
22

33
## Installing .NET
44

5-
The C# track is built on top of the [.NET](https://dotnet.microsoft.com/learn/dotnet/what-is-dotnet) 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](https://dotnet.microsoft.com/download/dotnet/8.0). Note: the C# track requires SDK version 8.0 or greater.
5+
The C# track is built on top of the [.NET](https://dotnet.microsoft.com/learn/dotnet/what-is-dotnet) platform, which runs on Windows, Linux and macOS.
6+
To build .NET projects, you can use the .NET Command Line Interface (CLI).
7+
This CLI is part of the .NET SDK, which you can install by following the [installation instructions](https://dotnet.microsoft.com/download/dotnet/8.0).
8+
Note: the C# track requires SDK version 9.0 or greater.
69

7-
After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal:
10+
After completing the installation, you can verify if the CLI was installed successfully by running this command in a terminal:
811

912
```bash
1013
dotnet --version
1114
```
1215

13-
If the output is a version greater than or equal to `8.0.100`, the .NET SDK has been installed succesfully.
16+
If the output is a version greater than or equal to `9.0.100`, the .NET SDK has been installed successfully.
1417

1518
## Using an IDE
1619

17-
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:
20+
If you want a more full-featured editing experience, you probably want to to use an [IDE or integrated development environment)](https://en.wikipedia.org/wiki/Integrated_development_environment).
21+
These are the most popular IDEs that support building .NET projects:
1822

1923
- [Visual Studio 2022](https://www.visualstudio.com/downloads/)
2024
- [Visual Studio Code](https://code.visualstudio.com/download) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp)
2125
- [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/)
2226
- [Project Rider](https://www.jetbrains.com/rider/download/)
2327

24-
Note: as the .NET project format differs significantly from earlier versions, older IDE's (like Visual Studio 2015) are not supported.
28+
Note: as the .NET project format differs significantly from earlier versions, older IDEs (like Visual Studio 2015) are not supported.

0 commit comments

Comments
 (0)