mirror of
https://github.com/Jackett/Jackett
synced 2024-12-26 09:48:37 +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)
|
version: $(netCoreSdkVersion)
|
||||||
installationPath: $(Agent.ToolsDirectory)/dotnet
|
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
|
- task: DotNetCoreCLI@2
|
||||||
displayName: Build Test Project
|
displayName: Build Test Project
|
||||||
inputs:
|
inputs:
|
||||||
|
|
Loading…
Reference in a new issue