Skip to content
Merged
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/core/deploying/single-file/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. 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:
Expand Down
Loading