PreviousNext

Publishing A Single EXE File In .NET Core 3.0

by bill-s, 2019-06-26T07:29:53.168Z

Say I have a simple “Hello World” console application that I want to send to a friend to run. The friend doesn’t have .NET Core installed so I know I need to build a self contained application for him. Easy, I just run the following command in my project directory : dotnet publish -r win-x64 -c Release --self-contained

Read More