From a20e48f2dbede7138f0e9450c771d12fe9dcb5d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 19:14:14 +0000 Subject: [PATCH 1/2] Initial plan From 9faf5dc6edfbc4f46214f2933d63b96f0775a583 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 19:17:02 +0000 Subject: [PATCH 2/2] Clarify .NET Framework 4.x versioning with 3.5 note Co-authored-by: adegeo <67293991+adegeo@users.noreply.github.com> --- docs/standard/choosing-core-framework-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/choosing-core-framework-server.md b/docs/standard/choosing-core-framework-server.md index 38303b7d17734..de3b62d188fcb 100644 --- a/docs/standard/choosing-core-framework-server.md +++ b/docs/standard/choosing-core-framework-server.md @@ -45,7 +45,7 @@ There are two supported [.NET implementations](glossary.md#implementation-of-net The .NET implementation supports side-by-side installations of different versions of the .NET runtime on the same machine. That capability allows multiple services on the same server, each on its own version of .NET. It also lowers risks and saves money in application upgrades and IT operations. - Side-by-side installation isn't possible with .NET Framework. It's a Windows component, and only one version can exist on a machine at a time: each version of .NET Framework replaces the previous version. If you install a new app that targets a later version of .NET Framework, you might break existing apps that run on the machine because the previous version was replaced. + Side-by-side installation isn't possible with .NET Framework 4.x. It's a Windows component, and only one version of .NET Framework 4.x can exist on a machine at a time (.NET Framework 3.5 is separate and optional): each version of .NET Framework 4.x replaces the previous version. If you install a new app that targets a later version of .NET Framework, you might break existing apps that run on the machine because the previous version was replaced. - **Is more secure.**