Asp.NET 网络应用程序坚持加载 .NET 2.0

Asp.NET web app insists on loading .NET 2.0

我有一个非常简单的项目,突然想加载 .NET 版本 2

web.config 中的 <compilation> 标签包括 targetFramework="4.6.1"

项目属性下的Target framework也设置为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>

我通过更新解决方案文件中的目标框架解决了这个问题