0

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

包含中的<compilation>标签web.configtargetFramework="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>
4

1 回答 1

0

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

于 2018-01-06T01:02:25.330 回答