Skip to content

Commit 5c4edf6

Browse files
author
pr-autocomplete[bot]
authored
Merge pull request #84 from AArnott/avoidDotnetMyget
Update source and pkg id for pdb2pdb tool
2 parents ab92079 + 1e98c8f commit 5c4edf6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-pipelines/Convert-PDB.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
[string]$OutputPath
1919
)
2020

21-
$version = '1.1.0-beta1-64128-01'
21+
$version = '1.1.0-beta2-20115-01'
2222
$baseDir = "$PSScriptRoot\..\obj\tools"
23-
$pdb2pdbpath = "$baseDir\pdb2pdb.$version\tools\Pdb2Pdb.exe"
23+
$pdb2pdbpath = "$baseDir\Microsoft.DiaSymReader.Pdb2Pdb.$version\tools\Pdb2Pdb.exe"
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://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget/v3/index.json | Out-Null
27+
& (& $PSScriptRoot\Get-NuGetTool.ps1) install Microsoft.DiaSymReader.Pdb2Pdb -version $version -PackageSaveMode nuspec -OutputDirectory $baseDir -Source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json | Out-Null
2828
}
2929

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

0 commit comments

Comments
 (0)