From 2b3b7790cfdd0bdbde84802da989f45ea045c370 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Jul 2026 22:48:11 +0000 Subject: [PATCH 1/2] Note IncludeAllContentForSelfExtract is not recommended --- docs/core/deploying/single-file/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/deploying/single-file/overview.md b/docs/core/deploying/single-file/overview.md index f57ec1baad00a..9f8a036d615a3 100644 --- a/docs/core/deploying/single-file/overview.md +++ b/docs/core/deploying/single-file/overview.md @@ -160,7 +160,7 @@ Only managed DLLs are bundled with the app into a single executable. When the ap To embed those files for extraction and get one output file, set the property `IncludeNativeLibrariesForSelfExtract` to `true`. -Specifying `IncludeAllContentForSelfExtract` extracts all files, including the managed assemblies, before running the executable. This may be helpful for rare application compatibility problems. +Specifying `IncludeAllContentForSelfExtract` extracts all files, including the managed assemblies, before running the executable. This may be helpful for rare application compatibility problems. We don't recommend this option: it's a .NET Core 3.1 compatibility mode and may be removed in a future release. > [!IMPORTANT] > If extraction is used, the files are extracted to disk before the app starts: From 51f38243b99cfec66e0ccf5a15f2e5149fdcb58c Mon Sep 17 00:00:00 2001 From: Elinor Fung Date: Thu, 30 Jul 2026 10:20:13 -0700 Subject: [PATCH 2/2] Update docs/core/deploying/single-file/overview.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/core/deploying/single-file/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/deploying/single-file/overview.md b/docs/core/deploying/single-file/overview.md index 9f8a036d615a3..6128942b6c5f6 100644 --- a/docs/core/deploying/single-file/overview.md +++ b/docs/core/deploying/single-file/overview.md @@ -160,7 +160,7 @@ Only managed DLLs are bundled with the app into a single executable. When the ap To embed those files for extraction and get one output file, set the property `IncludeNativeLibrariesForSelfExtract` to `true`. -Specifying `IncludeAllContentForSelfExtract` extracts all files, including the managed assemblies, before running the executable. This may be helpful for rare application compatibility problems. We don't recommend this option: it's a .NET Core 3.1 compatibility mode and may be removed in a future release. +Specifying `IncludeAllContentForSelfExtract` extracts all files, including the managed assemblies, before running the executable. This may be helpful for rare application compatibility problems. This mode is not recommended: it's a .NET Core 3.1 compatibility mode and might be removed in a future release. > [!IMPORTANT] > If extraction is used, the files are extracted to disk before the app starts: