【发布时间】:2015-07-17 06:45:06
【问题描述】:
谁能详细解释一下 Asp.net5 应用程序的编译和执行是如何工作的。
我对 .net 环境完全陌生
几个问题 当您使用 VS 2015(按 F5)构建应用程序时,我知道涉及的步骤是
- 代码被转换为 CIL。 (它叫什么名字?它是 Rosyln 编译器吗? )
- 此 CIL 代码被解释为机器代码
现在当我使用 dnvm 运行应用程序时会发生什么,
1. how is it compiled ?
2. What does CoreClr do?
3. how is CoreClr different from Clr
4. What happens when we do dnu restore
5. what happens when we do dnx . exe
6. At what stage is the CIL generated , where is the CIL stored
7. At what stage the JIT is used?
谢谢
【问题讨论】:
标签: asp.net-core jit coreclr