Skip to content

Commit ab92079

Browse files
authored
Merge pull request #83 from AArnott/avoidDotnetMyget
Download pdb2pdb from pkgs.dev.azure.com instead of dotnet.myget.org
2 parents 80928a3 + 20e2260 commit ab92079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-pipelines/Convert-PDB.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
if (-not (Test-Path $pdb2pdbpath)) {
2525
if (-not (Test-Path $baseDir)) { New-Item -Type Directory -Path $baseDir | Out-Null }
2626
$baseDir = (Resolve-Path $baseDir).Path # Normalize it
27-
& (& $PSScriptRoot\Get-NuGetTool.ps1) install pdb2pdb -version $version -PackageSaveMode nuspec -OutputDirectory $baseDir -Source https://dotnet.myget.org/F/symreader-converter/api/v3/index.json | Out-Null
27+
& (& $PSScriptRoot\Get-NuGetTool.ps1) install pdb2pdb -version $version -PackageSaveMode nuspec -OutputDirectory $baseDir -Source https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget/v3/index.json | Out-Null
2828
}
2929

3030
$args = $DllPath,'/out',$OutputPath,'/nowarn','0021'

0 commit comments

Comments
 (0)