From 7a4fb681b8497b4e023b42d7d76eef606c371f36 Mon Sep 17 00:00:00 2001 From: NN <580536+NN---@users.noreply.github.com> Date: Sat, 1 Jul 2023 02:24:31 +0300 Subject: [PATCH] Remove Windows 7 incompatibility mention (#28627) * Remove Windows 7 incompatibility mention .NET 6.0.3 brings single file support for Windows 7 back. https://github.com/dotnet/runtime/pull/63533 * Update docs/core/deploying/single-file/overview.md Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> * Update docs/core/deploying/single-file/overview.md --------- Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com> Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/core/deploying/single-file/overview.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/core/deploying/single-file/overview.md b/docs/core/deploying/single-file/overview.md index 06332ea00e09d..734cf495a1543 100644 --- a/docs/core/deploying/single-file/overview.md +++ b/docs/core/deploying/single-file/overview.md @@ -13,6 +13,9 @@ Bundling all application-dependent files into a single binary provides an applic The size of the single file in a self-contained application is large since it includes the runtime and the framework libraries. In .NET 6, you can [publish trimmed](../trimming/trim-self-contained.md) to reduce the total size of trim-compatible applications. The single file deployment option can be combined with [ReadyToRun](../ready-to-run.md) and [Trim](../trimming/trim-self-contained.md) publish options. +> [IMPORTANT] +> To run a single file app on Windows 7, you must use .NET Runtime 6.0.3 or later. + ## Sample project file Here's a sample project file that specifies single file publishing: