VS 2017 ASP.Net Core Web应用程序无法定位.Net Framework

时间:2018-08-07 14:41:12

标签: c# asp.net visual-studio asp.net-core visual-studio-2017

我似乎已经失去了创建针对.Net Framework的ASP.Net Core Web应用程序的能力。下拉菜单在以前启用的地方被禁用。

enter image description here

我已经安装了.Net 471、472 SDK和目标包,我的VS2017已更新为15.7.6。

我尝试卸载/重新安装.Net 4.7x SDK和目标包,但这没有帮助。

我能做些什么从头开始重新安装Visual Studio吗?

2 个答案:

答案 0 :(得分:3)

项目模板仅支持.NET Core。但是,一旦创建了项目,就可以编辑.csproj并更改:

<TargetFramework>netcoreapp2.1</TargetFramework>

收件人:

<TargetFramework>net472</TargetFramework>

保存,您很好。

答案 1 :(得分:1)

现在看来,有两个模板可以创建ASP.Net Core Web应用程序。

.Net核心下

enter image description here

在网络下

enter image description here

要获得选择以.Net Core或.Net Framework为目标的选项,必须使用Web下的模板。

enter image description here