File tree 2 files changed +6
-2
lines changed
packages/pdbs.pdbresym.vm
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd" >
3
3
<metadata >
4
4
<id >pdbs.pdbresym.vm</id >
5
- <version >0.0.0.20240417 </version >
5
+ <version >0.0.0.20240710 </version >
6
6
<authors >Stephen Eckels</authors >
7
7
<description >Download PDBs</description >
8
8
<dependencies >
Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ $ErrorActionPreference = 'Stop'
2
2
Import-Module vm.common - Force - DisableNameChecking
3
3
4
4
try {
5
- # Iterate through C:\Windows\System32 downloading all PDBs concurrently
6
5
$executablePath = Join-Path ${Env: RAW_TOOLS_DIR} PDBReSym\PDBReSym.exe - Resolve
6
+
7
7
VM- Write-Log " INFO" " Iterating through C:\Windows\System32 downloading PDBs to C:\symbols"
8
8
& $executablePath cachesyms
9
+
10
+ VM- Write-Log " INFO" " Iterating through C:\Windows\Microsoft.NET downloading .NET PDBs to C:\symbols"
11
+ & $executablePath cachesyms -- sysdir " C:\Windows\Microsoft.NET"
12
+
9
13
# The downloaded symbols are store into C:\symbols
10
14
VM- Assert-Path " C:\symbols"
11
15
You can’t perform that action at this time.
0 commit comments