我有一个非常简单的项目,突然想要加载 .NET 版本 2
包含中的<compilation>
标签web.config
targetFramework="4.6.1"
项目属性下的Target框架也设置为4.6.1
但 IISExpress 实例显示版本 2
<?xml version="1.0"?>
<configuration>
<appSettings/>
<connectionStrings>
<add connectionString="xxx" name="x"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.6.1"/>
<authentication mode="Windows"/>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>
</configuration>