【dotnet跨平台】你知道dnx run和dotnet run有什么区别吗?



【dotnet跨平台】你知道dnx run和dotnet run有什么区别吗?


dotnet run是基于dotnet-cli项目:http://github.com/dotnet/cli,而dnx run是https://github.com/aspnet/dnx项目,dotnet run已经取代dnx run。


dotnet run会编译出IL二进制文件和可执行文件放在磁盘上,而dnx run是直接在内存中编译和执行,不存储在磁盘上。


参考:

http://www.talkingdotnet.com/difference-between-dnx-run-and-dotnet-run/



你可能感兴趣的:(.net,run,run,dotNet,dnx)