Updated nugetConfigPath value

This commit is contained in:
Tim McCarthy 2020-01-25 00:58:08 -08:00
parent 120b7dd682
commit 827b5427c5

View File

@ -11,14 +11,14 @@ jobs:
command: restore command: restore
projects: '**/$(ProjectName).csproj' projects: '**/$(ProjectName).csproj'
feedsToUse: config feedsToUse: config
nugetConfigPath: NuGet.config nugetConfigPath: src/NuGet.config
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet build' displayName: 'dotnet build'
inputs: inputs:
projects: '**/$(ProjectName).csproj' projects: '**/$(ProjectName).csproj'
arguments: '--configuration Release' arguments: '--configuration Release'
feedsToUse: config feedsToUse: config
nugetConfigPath: NuGet.config nugetConfigPath: src/NuGet.config
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet publish' displayName: 'dotnet publish'
inputs: inputs:
@ -29,5 +29,5 @@ jobs:
zipAfterPublish: false zipAfterPublish: false
modifyOutputPath: false modifyOutputPath: false
feedsToUse: config feedsToUse: config
nugetConfigPath: NuGet.config nugetConfigPath: src/NuGet.config