From 827b5427c5b2a57906515da8a43ccd22ce5231be Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 25 Jan 2020 00:58:08 -0800 Subject: [PATCH] Updated nugetConfigPath value --- build/aro/azure-devops/webapp-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/aro/azure-devops/webapp-build.yml b/build/aro/azure-devops/webapp-build.yml index 606603e04..f763092f3 100644 --- a/build/aro/azure-devops/webapp-build.yml +++ b/build/aro/azure-devops/webapp-build.yml @@ -11,14 +11,14 @@ jobs: command: restore projects: '**/$(ProjectName).csproj' feedsToUse: config - nugetConfigPath: NuGet.config + nugetConfigPath: src/NuGet.config - task: DotNetCoreCLI@2 displayName: 'dotnet build' inputs: projects: '**/$(ProjectName).csproj' arguments: '--configuration Release' feedsToUse: config - nugetConfigPath: NuGet.config + nugetConfigPath: src/NuGet.config - task: DotNetCoreCLI@2 displayName: 'dotnet publish' inputs: @@ -29,5 +29,5 @@ jobs: zipAfterPublish: false modifyOutputPath: false feedsToUse: config - nugetConfigPath: NuGet.config + nugetConfigPath: src/NuGet.config