From 04c4154948efa49dec11496da3ce8db14a62fe84 Mon Sep 17 00:00:00 2001 From: Aleksey Deyneko Date: Thu, 30 Jan 2025 10:21:40 +0100 Subject: [PATCH] Add els-for-dotnet product --- docs/.vuepress/config-client/sidebar.ts | 1 + docs/els-for-languages/README.md | 3 +- .../els-for-dotnet/README.md | 35 +++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100755 docs/els-for-languages/els-for-dotnet/README.md diff --git a/docs/.vuepress/config-client/sidebar.ts b/docs/.vuepress/config-client/sidebar.ts index d071d4e25..90e5d7621 100644 --- a/docs/.vuepress/config-client/sidebar.ts +++ b/docs/.vuepress/config-client/sidebar.ts @@ -41,6 +41,7 @@ export default { "/els-for-languages/els-for-php/", "/els-for-languages/els-for-python/", "/els-for-languages/els-for-java/", + "/els-for-languages/els-for-dotnet/", ] }, ], diff --git a/docs/els-for-languages/README.md b/docs/els-for-languages/README.md index 1e58b43f7..9b842623a 100644 --- a/docs/els-for-languages/README.md +++ b/docs/els-for-languages/README.md @@ -2,4 +2,5 @@ * [ELS for PHP](./els-for-php/) * [ELS for Python](./els-for-python/) -* [ELS for Spring Framework and Spring Boot](./els-for-java/) \ No newline at end of file +* [ELS for Spring Framework and Spring Boot](./els-for-java/) +* [ELS for .NET](./els-for-dotnet/) \ No newline at end of file diff --git a/docs/els-for-languages/els-for-dotnet/README.md b/docs/els-for-languages/els-for-dotnet/README.md new file mode 100755 index 000000000..af289aabc --- /dev/null +++ b/docs/els-for-languages/els-for-dotnet/README.md @@ -0,0 +1,35 @@ +# Endless Lifecycle Support for .NET 6 + +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. + +### Supported Windows Versions + +| OS | Version | Architectures | +| :---------------------: | :------------------------------------------------------------------------------------------------------: | :-----------: | +| **Nano Server** | 2019, 2022 | x64 | +| **Windows** | 11 (24H2 (IoT), 24H2 (E), 24H2, 23H2, 22H2 (E)), 10 (22H2 (E), 21H2 (E), 21H2 (IoT), 1809 (E), 1607 (E)) | x64, x86 | +| **Windows Server** | 23H2, 2022, 2019, 2016, 2012-R2, 2012 | x64, x86 | +| **Windows Server Core** | 2022, 2019, 2016, 2012-R2, 2012 | x64, x86 | + +## Supported .NET 6 Versions + +> **SDK 6.0.428** +> The .NET SDK (Software Development Kit) is the recommended option if you plan to develop, build, test, or publish .NET 6 applications. It includes: +> - The .NET Runtime, which is required to run .NET apps. +> - The ASP.NET Core Runtime, so you can develop and host ASP.NET Core web applications out of the box. +> - The .NET CLI and build tools for compiling and managing your .NET 6 projects. +> +> 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. + +> **ASP.NET Core Runtime 6.0.36** +> 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. +> +> *Note:* If you install the full .NET SDK, you already get the ASP.NET Core Runtime. + +> **.NET Desktop Runtime 6.0.36** +> 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. + +> **.NET Runtime 6.0.36** +> 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. + +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. \ No newline at end of file