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.
1 parent 5cc3d59 commit e84bdc6Copy full SHA for e84bdc6
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