我有一个非常简单的项目,突然想要加载.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
data2 <- subset( data, ! Number %in% c( 2, 5, 8 ) )
答案 0 :(得分:0)
我通过更新解决方案文件
中的目标框架解决了这个问题