Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/standard/choosing-core-framework-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**

Expand Down
Loading