gpt4 book ai didi

Azure-Pipeline Build 结果为 : The current . NET SDK 不支持定位 .NET Core 3.1

转载 作者:行者123 更新时间:2023-12-02 22:58:11 31 4
gpt4 key购买 nike

我有一个包含 .NET Framework 应用程序的 Visual Studio 2019 解决方案,以及用于构建和部署 Web 应用程序的 Azure Pipeline。

我最近在我的解决方案中添加了一个 Azure Functions 项目。 (.net核心)解决方案中的两个项目不互相引用。

在我的本地计算机上 - 解决方案构建没有问题,并且我可以运行这两个应用程序。

但是,当 Azure Pipeline 进程尝试构建解决方案时失败,并出现以下错误:

Error NETSDK1045: The current .NET SDK does not support targeting .NETCore 3.1. Either target .NET Core 2.1 or lower, or use a version ofthe .NET SDK that supports .NET Core 3.1.

我实际上希望这个 Azure Pipeline 忽略新的 .net core 项目,并继续构建然后部署我的 Web 应用程序。

如何让 Azure 以与本地计算机相同的方式构建我的项目?

最佳答案

管道似乎正在尝试使用错误的 .NET Core SDK 来编译面向 .NET Core 3.1 的项目。

您可以尝试添加任务Use .NET Core在恢复和构建任务之前,确保管道中使用 .NET Core 3.1 版本。见下文:

- task: UseDotNet@2
inputs:
version: 3.1.302

- task: DotNetCoreCLI@2
inputs:
command: restore
projects: '**/*.csproj'
- task: DotNetCoreCLI@2
inputs:
command: build
projects: '**/*.csproj'

如果您使用 Visual Studio 构建任务来构建项目,则需要在安装了 Visual Studio 2019 的代理 windows-latest 上运行管道。或者您可能仍然会遇到此错误“当前 .NET SDK 不支持定位 .NET Core 3.1”

如果您想忽略新的.net core项目。您可以设置 build task 的项目属性构建一个特定的项目。见下文:

- task: DotNetCoreCLI@2
inputs:
command: restore
projects: '**/oldProject.csproj'
- task: DotNetCoreCLI@2
inputs:
command: build
projects: '**/oldProject.csproj'

用于构建单个项目的 Visual Studio 构建任务

- task: VSBuild@1
condition: always()
inputs:
solution: '**/oldProject.csproj'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:build'

关于Azure-Pipeline Build 结果为 : The current . NET SDK 不支持定位 .NET Core 3.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63564848/

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