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

时间:2017-09-26 17:04:54

标签: asp.net .net target-framework

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

web.config中的targetFramework="4.6.1"标记包含<?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>

项目属性下的Target框架也设置为4.6.1

但IISExpress实例显示版本2

enter image description here

data2 <- subset( data, ! Number %in% c( 2, 5, 8 ) )

1 个答案:

答案 0 :(得分:0)

我通过更新解决方案文件

中的目标框架解决了这个问题