Skip to content

Commit 5ae59c1

Browse files
committed
Merge branch 'main' into microbuild
2 parents 9e190e7 + e84bdc6 commit 5ae59c1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tools/Get-SymbolFiles.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,3 @@ $PDBs |% {
6464
Write-Output $_.FullName
6565
}
6666
}
67-
68-
if (!$Tests) {
69-
& $PSScriptRoot\Get-3rdPartySymbolFiles.ps1
70-
}

tools/artifacts/symbols.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
$BinPath = [System.IO.Path]::GetFullPath("$PSScriptRoot/../../bin")
2+
$3rdPartyPath = [System.IO.Path]::GetFullPath("$PSScriptRoot/../../obj/SymbolsPackages")
23
if (!(Test-Path $BinPath)) { return }
34
$symbolfiles = & "$PSScriptRoot/../Get-SymbolFiles.ps1" -Path $BinPath | Get-Unique
5+
$3rdPartyFiles = & "$PSScriptRoot/../Get-3rdPartySymbolFiles.ps1"
46

57
@{
68
"$BinPath" = $SymbolFiles;
9+
"$3rdPartyPath" = $3rdPartyFiles;
710
}

0 commit comments

Comments
 (0)