Skip to content

Commit 8d0e0bc

Browse files
authored
Merge pull request #386 from sboldyreva/dotnet
Update dotnet page: versions and phrasing
2 parents 4a84735 + 7043256 commit 8d0e0bc

File tree

2 files changed

+27
-22
lines changed

2 files changed

+27
-22
lines changed

docs/.vuepress/components/ELSRTechnology.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const runtimes = [
8080
},
8181
{
8282
name: ".NET",
83-
versions: "6",
83+
versions: "6 | 8 | 10",
8484
link: "./dotnet/",
8585
icon: "/images/csharp.webp",
8686
},

docs/els-for-runtimes/dotnet/README.md

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# .NET 6
1+
# .NET
22

3-
Endless Lifecycle Support (ELS) for .NET 6 from TuxCare provides security fixes for .NET 6 that has reached its end of life. This allows you to continue running .NET 6 applications without vulnerability concerns, even after official support has ended.
3+
Endless Lifecycle Support (ELS) for .NET from TuxCare provides security fixes for .NET that has reached its end of life. This allows you to continue running .NET applications without vulnerability concerns, even after official support has ended.
44

55
## Supported Windows Versions
66

@@ -11,36 +11,41 @@ Endless Lifecycle Support (ELS) for .NET 6 from TuxCare provides security fixes
1111
| **Windows Server** | 23H2, 2022, 2019, 2016, 2012-R2, 2012 | x64, x86 |
1212
| **Windows Server Core** | 2022, 2019, 2016, 2012-R2, 2012 | x64, x86 |
1313

14-
## Supported .NET 6 Versions
14+
## Supported .NET Versions
1515

16-
**SDK 6.0.x**
17-
The .NET SDK (Software Development Kit) is the recommended option if you plan to develop, build, test, or publish .NET 6 applications. It includes:
16+
* .NET 6.0.x, 8.0.x, 10.0.x
17+
18+
#### SDK
19+
20+
The .NET SDK (Software Development Kit) is the recommended option if you plan to develop, build, test, or publish .NET applications. It includes:
1821

1922
* The .NET Runtime, which is required to run .NET apps.
2023
* The ASP.NET Core Runtime, so you can develop and host ASP.NET Core web applications out of the box.
21-
* The .NET CLI and build tools for compiling and managing your .NET 6 projects.
24+
* The .NET CLI and build tools for compiling and managing your .NET projects.
2225

2326
With the SDK, you won't need to install separate runtimes for ASP.NET Core or the Desktop environment - everything is bundled together to streamline development and deployment.
2427

25-
**ASP.NET Core Runtime 6.0.x**
26-
The ASP.NET Core Runtime contains the components needed to run ASP.NET Core web applications on .NET 6. It includes libraries and features for building dynamic web pages, RESTful APIs, and real-time communication with SignalR.
28+
#### ASP.NET Core Runtime
29+
The ASP.NET Core Runtime contains the components needed to run ASP.NET Core web applications on .NET. It includes libraries and features for building dynamic web pages, RESTful APIs, and real-time communication with SignalR.
2730

2831
*Note:* If you install the full .NET SDK, you already get the ASP.NET Core Runtime.
2932

30-
**.NET Desktop Runtime 6.0.x**
33+
#### .NET Desktop Runtime
34+
3135
The .NET Desktop Runtime allows you to run Windows desktop applications built with Windows Forms or WPF (Windows Presentation Foundation). It focuses on providing a smooth experience for traditional graphical apps on Windows platforms.
3236

33-
**.NET Runtime 6.0.x**
37+
#### .NET Runtime
38+
3439
The .NET Runtime is the base runtime required to run console or server-based .NET applications. It's more lightweight than the SDK, since it does not include compilers, build tools, or additional libraries for web or desktop development.
3540

36-
TuxCare applies security patches to .NET 6 for the above OS versions, ensuring continued stability and security even beyond the official end-of-life date.
41+
TuxCare applies security patches to .NET for the above OS versions, ensuring continued stability and security even beyond the official end-of-life date.
3742

3843
## Installation via the .NET Installer
3944

4045
### Prerequisites & System Requirements
4146

42-
* Operating System compatibility - please, check the [supported versions](#supported-windows-versions) section above.
43-
* For system requirements, please refer to the [official .NET documentation](https://learn.microsoft.com/en-us/dotnet/fundamentals/).
47+
* Check the [supported versions](#supported-windows-versions) section above for operating system compatibility.
48+
* Refer to the [official .NET documentation](https://learn.microsoft.com/en-us/dotnet/fundamentals/) for system requirements.
4449
* Administrator rights for installation
4550
* Check if you have .NET already installed on your system:
4651
* Open *Command Prompt* (type `cmd` in the search bar) or *PowerShell* (type `powershell` in the search bar) and run the following command:
@@ -54,20 +59,20 @@ TuxCare applies security patches to .NET 6 for the above OS versions, ensuring c
5459
</CodeWithCopy>
5560
5661
* If .NET is already installed, the command will return the version number. If it’s not installed, you’ll see an error message.
57-
* It’s recommended that you first install the latest version of .NET before uninstalling the old one. This ensures a smooth transition without breaking the dependencies.
62+
* Install the latest version of .NET before uninstalling the old one to ensure a smooth transition without breaking the dependencies.
5863
5964
### Installation Steps
6065
6166
* Obtain the required license to get access to the service.
6267
* Contact [sales@tuxcare.com](mailto:sales@tuxcare.com) to receive the necessary steps for generating your unique access link (tokenized URL). Anonymous access is restricted.
6368
* Follow the provided instructions to create your secure download link.
64-
* Use this link to access and download .NET 6 files.
69+
* Use this link to access and download .NET files.
6570
* Choose the appropriate runtime:
6671
* **.NET SDK** - Includes everything needed for development, including the runtime and build tools.
6772
* **.NET Runtime** - Runs .NET applications but does not include development tools.
6873
* **.NET Runtime Desktop** - Required for running desktop applications built with .NET.
6974
* **ASP.NET Core Runtime** - Needed for running web applications and services built with ASP.NET Core.
70-
For more information please refer to the [official .NET documentation](https://learn.microsoft.com/en-us/dotnet/fundamentals/).
75+
For more information, refer to the [official .NET documentation](https://learn.microsoft.com/en-us/dotnet/fundamentals/).
7176
* Download the corresponding installer based on your system type (x64 or x86). Downloading the latest version is recommended.
7277
* .NET SDK - Installed via an .exe installer.
7378
* .NET Runtime, .NET Runtime Desktop, and ASP.NET Core Runtime – Installed via .msi files.
@@ -109,7 +114,7 @@ If you’re new to .NET, we recommend visiting the [official .NET documentation]
109114

110115
### Create and Run a Test Project
111116

112-
For a quick start, you can follow this example to create and run a simple console application:
117+
For a quick start, follow this example to create and run a simple console application:
113118

114119
* Open *Command Prompt* (type `cmd` in the search bar) or *PowerShell* (type `powershell` in the search bar).
115120
* Run the following command to create a new console application:
@@ -185,7 +190,7 @@ The following commands are useful for managing and troubleshooting .NET installa
185190
C:\Program Files\dotnet\dotnet.exe
186191
```
187192

188-
* `dontet --info` displays information about the installed .NET SDKs, runtimes and your OS. It also verifies the .NET is correctly set up.
193+
* `dotnet --info` displays information about the installed .NET SDKs, runtimes and your OS. It also verifies the .NET is correctly set up.
189194

190195
<CodeWithCopy>
191196

@@ -232,7 +237,7 @@ The following commands are useful for managing and troubleshooting .NET installa
232237
https://aka.ms/dotnet/runtimes-sdk-info
233238
```
234239

235-
* `dotnet –list-sdks` command lists all the .NET SDKs installed on your system. It’s recommended to uninstall the old .NET version after you install a new one.
240+
* `dotnet –list-sdks` command lists all the .NET SDKs installed on your system. Uninstall the old .NET version after you install a new one.
236241

237242
<CodeWithCopy>
238243

@@ -266,7 +271,7 @@ dotnet nuget add source \
266271

267272
Replace `$USERNAME` and `$PASSWORD` with the credentials provided by [sales@tuxcare.com](mailto:sales@tuxcare.com).
268273

269-
## Uninstall ELS for .NET 6
274+
## Uninstall ELS for .NET
270275

271276
### Uninstall via Windows Settings
272277

@@ -307,7 +312,7 @@ After uninstalling .NET some files may remain in the following locations:
307312
* `C:\Program Files\dotnet\`
308313
* `C:\Users\<user>\.dotnet\`
309314

310-
Consider deleting the folders manually to fully remove .NET.
315+
Delete the folders manually to fully remove .NET.
311316

312317
## Frequent Issues
313318

0 commit comments

Comments
 (0)