我在解决方案中拥有的一个项目未在VSE2019中加载。它将引发此错误:C:MyProgramsrcMyProgram.Functions.csproj : error : The project file cannot be opened by the project system, because it is missing some critical imports or the referenced SDK cannot be found.
Detailed Information:
Unable to locate the .NET Core SDK. Check that it is installed and that the version specified in global.json (if any) matches the installed version.
该项目由另一个开发人员(不在这里)创建,并且.csproj包含以下内容:
net472
v1
..packagesWindowsAzure.ServiceBus.2.1.0.0lib
et40-fullMicrosoft.ServiceBus.dll
PreserveNewest
PreserveNewest
Never
到目前为止,我尝试了以下方法,但仍未取得积极结果:我已注释掉引用此程序包的行,然后重新加载了解决方案(甚至重新启动了VS2019):我尝试安装缺少的NuGet软件包,但是由于尚未加载该项目-我无法将其安装到该项目中(因为安装NuGet时,该项目在可用项目列表中根本不可用)。
我不确定为什么这个项目对软件包如此“讨厌”?或如何强制将缺少的NuGet安装到该项目?