gpt4 book ai didi

visual-studio - 由于缺少 NuGet Microsoft.NET.Sdk.Functions 包,VS2019 无法加载项目,但也无法添加此包

转载 作者:行者123 更新时间:2023-12-04 13:57:36 25 4
gpt4 key购买 nike

我的解决方案中的一个项目未在 VSE2019 中加载。它抛出这个错误:

C:\MyProgram\src\MyProgram.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 包含以下内容:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<AzureFunctionsVersion>v1</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.10.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.24" />
<PackageReference Include="WindowsAzure.ServiceBus" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.ServiceBus">
<HintPath>..\packages\WindowsAzure.ServiceBus.2.1.0.0\lib\net40-full\Microsoft.ServiceBus.dll</HintPath>
</Reference>
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>

以下是我迄今为止尝试过的以下内容,但仍然没有积极的结果:
  • 我已经注释掉了引用这个包的那一行,然后重新加载了解决方案(甚至重新启动了VS2019):
  • <!-- <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.24" /> -->
  • 我尝试安装缺少的 NuGet 包,但由于项目尚未加载 - 我无法将其安装到该项目中(因为在安装 NuGet 时,该项目在可用项目列表中根本不可用)。

  • 我不知道为什么这个项目对包裹变得如此“粘”?
    或者如何强制将缺少的 NuGet 安装到这个项目?

    最佳答案

    似乎再次重新安装最新的 .Net SDK (3.0.100),成功了。

    关于visual-studio - 由于缺少 NuGet Microsoft.NET.Sdk.Functions 包,VS2019 无法加载项目,但也无法添加此包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58666826/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com