Self-Contained .Net Core Application

Find Tips and tricks on how to better use the Zeus IDE. Feel free to post your own tips but please do not post bug reports, feature requests or questions here.
Post Reply
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Self-Contained .Net Core Application

Post by jussij »

To create a self-contained .Net Core executable for the Windows platform run the following command:

Code: Select all

dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained true
More details can be found here: https://learn.microsoft.com/en-us/dotne ... w?tabs=cli
Post Reply