Create a standalone exe without the need to install .NET framework

前端 未结 7 1553
没有蜡笔的小新
没有蜡笔的小新 2020-12-31 00:41

I\'m a student and at the moment i\'m doing an internship at a company. This internship is about analysing a project. For this project I have made a demo to show to the Mark

7条回答
  •  没有蜡笔的小新
    2020-12-31 01:07

    C# now supports this with .NET Native.

    Instead of compiling to intermediate language, it will compile to native code and run with statically linked .NET libraries. Therefore, there will be no .Net Runtime requirements for end-users.

    https://msdn.microsoft.com/en-us/vstudio/dn642499.aspx

    https://msdn.microsoft.com/en-us/library/dn584397(v=vs.110).aspx

    Only works for Windows 10

提交回复
热议问题