Generating .NET Core Console App .exe in Visual Studio 2017

主宰稳场 提交于 2020-01-02 10:29:34

问题


(I am using Visual Studio 2017)

I started a small console application (I created a .NET Core application), then I wanted to build the .exe file. But all I get is .dll files and there isn't any .exe file.

Can you help me please ? what do I change in Visual Studios settings, to have an .exe file in my correct directory for my console application?


回答1:


In fact .NET Core by default generates only dll files that can be run with dotnet:

dotnet myapp.dll

If you want to publish the app as a self-contained exe, you have to right-click the project in Solution Explorer, select Publish and then choose the self-contained option and either win-x86 or win-x64. This will generate a platform specific, architecture specific exe.

Check out this blogpost that goes into more detail about this process.



来源:https://stackoverflow.com/questions/50472009/generating-net-core-console-app-exe-in-visual-studio-2017

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!