We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e190e7 + e84bdc6 commit 5ae59c1Copy full SHA for 5ae59c1
tools/Get-SymbolFiles.ps1
@@ -64,7 +64,3 @@ $PDBs |% {
64
Write-Output $_.FullName
65
}
66
67
-
68
-if (!$Tests) {
69
- & $PSScriptRoot\Get-3rdPartySymbolFiles.ps1
70
-}
tools/artifacts/symbols.ps1
@@ -1,7 +1,10 @@
1
$BinPath = [System.IO.Path]::GetFullPath("$PSScriptRoot/../../bin")
2
+$3rdPartyPath = [System.IO.Path]::GetFullPath("$PSScriptRoot/../../obj/SymbolsPackages")
3
if (!(Test-Path $BinPath)) { return }
4
$symbolfiles = & "$PSScriptRoot/../Get-SymbolFiles.ps1" -Path $BinPath | Get-Unique
5
+$3rdPartyFiles = & "$PSScriptRoot/../Get-3rdPartySymbolFiles.ps1"
6
7
@{
8
"$BinPath" = $SymbolFiles;
9
+ "$3rdPartyPath" = $3rdPartyFiles;
10
0 commit comments