【发布时间】:2017-03-03 09:45:00
【问题描述】:
我们的一个 ASP.NET MVC 5 Web 应用程序具有以下 web.config 设置:
<system.web>
<compilation debug="true" targetFramework="4.6" />
<httpRuntime targetFramework="4.5" />
<!--... many other things -->
</system.web>
不清楚为什么是两个targetFramework设置,编译目标4.6然后尝试在4.5下运行似乎是错误的...
显然我错过了什么,但是什么?
【问题讨论】:
标签: asp.net asp.net-mvc