Compile to a stand-alone executable (.exe) in Visual Studio

前端 未结 7 1730
囚心锁ツ
囚心锁ツ 2020-11-30 04:36

how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users would not like to install a tiny Console application. I compiled

7条回答
  •  有刺的猬
    2020-11-30 05:06

    Anything using the managed environment (which includes anything written in C# and VB.NET) requires the .NET framework. You can simply redistribute your .EXE in that scenario, but they'll need to install the appropriate framework if they don't already have it.

提交回复
热议问题