Version Information on ASP.NET Server Error Page

前端 未结 1 716
旧时难觅i
旧时难觅i 2020-12-07 03:34

I have a ASP.NET MVC5 Web Application configured to run on .NET Framework version 4.5.1. However, I notice that when I get an application runtime exception of some sort, the

相关标签:
1条回答
  • 2020-12-07 04:13

    That is not the actual .NET framework version. It is the version of the CLR.

    From .NET 4 up to 4.5.2 it is version 4. Between 2.0 and 3.5 it was version 2.0.

    That is also the reason that in your application pool configuration you can only choose .NET 2 or 4.

    See MSDN: .NET Framework Versions and Dependencies on this matter.

    0 讨论(0)
提交回复
热议问题