Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目,我想了解这个项目,即它是在 Asp.net MVC3 中还是在 Asp.net MVC4 中构建的?我怎样才能找到它的构建过程,即在 MVC3 或 MVC4 中制作的?
检查项目引用(或 bin 文件夹),查找"System.Web.Mvc"并打开其属性。然后看"Version"楼盘。如果4.0.0.0是 MVC 4,如果是3.0.0.0当然是 MVC 3。
"System.Web.Mvc"
"Version"
4.0.0.0
3.0.0.0
您可以通过代码获取:
typeof(YourControlller).Assembly.GetName().Version