Reputation: 35318
According to Microsoft, as of .NET Core 2.2 I can publish an app as a "framework-dependent executable" (FDE). It works from the command-line using the dotnet
command:
dotnet publish -c Release -r win-x64 --self-contained false
However, I'd like to do it using the GUI tool in Visual Studio (2017), where I can configure and store a profile:
How can I do this?
Upvotes: 2
Views: 426
Reputation: 35318
You have to set a Target Runtime
. The UI is a little confusing and doesn't use the phrase framework-dependent executable
.
Upvotes: 2