From a4558a9ba9607a1fa9376e49ebf1828e79e679e9 Mon Sep 17 00:00:00 2001 From: Mark Monteiro Date: Sat, 11 Apr 2020 10:14:31 -0400 Subject: [PATCH] Do not specify an explicit NuGet source in the CI build This was added to try to fix an issue with Azure, but does not appear to be necessary --- .ci/azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index c940cde80..9d9980779 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -39,7 +39,7 @@ jobs: displayName: "Build Server Submodule" inputs: command: build - arguments: '--configuration Release --source https://api.nuget.org/v3/index.json' + arguments: '--configuration Release' workingDirectory: '$(Build.SourcesDirectory)/src/jellyfin' - task: PowerShell@2