mirror of
https://github.com/Jackett/Jackett
synced 2024-12-25 01:07:38 +00:00
core: fix azure pipeline (#8979)
This commit is contained in:
parent
a7d6cafbc6
commit
d296463aba
1 changed files with 9 additions and 0 deletions
|
@ -371,6 +371,15 @@ stages:
|
|||
version: $(netCoreSdkVersion)
|
||||
installationPath: $(Agent.ToolsDirectory)/dotnet
|
||||
|
||||
# this task is a workaround to fix a bug in Azure (not required under normal circumstances)
|
||||
# https://developercommunity.visualstudio.com/content/problem/983843/dotnet-build-task-does-not-use-nugetorg-for-one-pr.html
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: Restore Test Project
|
||||
inputs:
|
||||
command: restore
|
||||
projects: '**/*.Test*/*.csproj'
|
||||
includeNuGetOrg: true
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: Build Test Project
|
||||
inputs:
|
||||
|
|
Loading…
Reference in a new issue