File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
eng/pipelines/common/templates/steps Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ steps:
2727
2828 #Set the Nuget.config file in the project to use extracted package
2929 $rootFolder = Get-location
30- [Xml] $nugetConfig = Get-Content -Path "src\ Nuget.config"
30+ [Xml] $nugetConfig = Get-Content -Path "Nuget.config"
3131 $Value = Resolve-Path ${{parameters.downloadedNugetPath }}
3232 $newAdd = $nugetConfig.CreateElement("add")
3333 $newAdd.SetAttribute("key","Package source")
3434 $newAdd.SetAttribute("value", "$Value\" )
3535 $nugetConfig.configuration.packageSources.AppendChild($newAdd)
36- $nugetConfig.Save("$rootFolder\src\ Nuget.config")
36+ $nugetConfig.Save("$rootFolder\Nuget.config")
3737 displayName : ' Update NuGet config file to read from Nuget folder'
3838
3939- task : MSBuild@1
You can’t perform that action at this time.
0 commit comments