From d726df7b367ebc3e2e658e103adf7c68d06c3b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:00:39 -0700 Subject: [PATCH 1/5] One sentence per line --- docs/INSTALLATION.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 65ceab6858..8a29467d83 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -2,7 +2,10 @@ ## Installing .NET -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. +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. After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: @@ -14,7 +17,8 @@ If the output is a version greater than or equal to `8.0.100`, the .NET SDK has ## 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 projects: +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: - [Visual Studio 2022](https://www.visualstudio.com/downloads/) - [Visual Studio Code](https://code.visualstudio.com/download) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) From 95f4ac3f81777ab94aaf1ee422afb66009a117a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:01:08 -0700 Subject: [PATCH 2/5] IDE's to IDEs --- docs/INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 8a29467d83..d51a2eeb8e 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -18,11 +18,11 @@ If the output is a version greater than or equal to `8.0.100`, the .NET SDK has ## 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 projects: +These are the most popular IDEs that support building .NET projects: - [Visual Studio 2022](https://www.visualstudio.com/downloads/) - [Visual Studio Code](https://code.visualstudio.com/download) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) - [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/) - [Project Rider](https://www.jetbrains.com/rider/download/) -Note: as the .NET project format differs significantly from earlier versions, older IDE's (like Visual Studio 2015) are not supported. +Note: as the .NET project format differs significantly from earlier versions, older IDEs (like Visual Studio 2015) are not supported. From e559f4e9293a6e1deadbb7678b85e734c5f727bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:02:30 -0700 Subject: [PATCH 3/5] Clarify IDE --- docs/INSTALLATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index d51a2eeb8e..0ed8e60aec 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -17,7 +17,7 @@ If the output is a version greater than or equal to `8.0.100`, the .NET SDK has ## Using an IDE -If you want a more full-featured editing experience, you probably want to to use an IDE. +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). These are the most popular IDEs that support building .NET projects: - [Visual Studio 2022](https://www.visualstudio.com/downloads/) From d4394f4de6a67d483009e2a82275222312dbd4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:04:08 -0700 Subject: [PATCH 4/5] Updated .NET 8 references --- docs/INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 0ed8e60aec..4e2f428ba5 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -5,7 +5,7 @@ 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. +Note: the C# track requires SDK version 9.0 or greater. After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: @@ -13,7 +13,7 @@ After completing the installation, you can verify if the CLI was installed succe dotnet --version ``` -If the output is a version greater than or equal to `8.0.100`, the .NET SDK has been installed succesfully. +If the output is a version greater than or equal to `9.0.100`, the .NET SDK has been installed succesfully. ## Using an IDE From 5a88d27a29aba338a6ac96f654a747f9cbbc10d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:04:53 -0700 Subject: [PATCH 5/5] Fix typos --- docs/INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 4e2f428ba5..6d4802271b 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -7,13 +7,13 @@ 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 9.0 or greater. -After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: +After completing the installation, you can verify if the CLI was installed successfully by running this command in a terminal: ```bash dotnet --version ``` -If the output is a version greater than or equal to `9.0.100`, the .NET SDK has been installed succesfully. +If the output is a version greater than or equal to `9.0.100`, the .NET SDK has been installed successfully. ## Using an IDE