我按照通过Pipelines Schema Docs设置池的文档进行操作
,并将其设置为这样pool: Default。这应该指示管道使用默认池:
但是,我不断收到此错误:
找不到名为“默认”的池。该池不存在或尚未获得使用授权。有关授权详细信息,请参阅https://aka.ms/yamlauthz。
据我所知,它应该得到授权。
我也尝试过:
pool:
name: Default
Run Code Online (Sandbox Code Playgroud)
完整的 azure-pipelines.yml
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://learn.microsoft.com/azure/devops/pipelines/languages/dotnet-core
name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
trigger:
batch: true
branches:
include:
- master
- develop
pool: Default
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)' …Run Code Online (Sandbox Code Playgroud)