Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Commit

Permalink
add Windows 10 SDK locations for pdbstr.exe
Browse files Browse the repository at this point in the history
fix #95
  • Loading branch information
Cameron Taggart committed Aug 2, 2015
1 parent e5bcd0a commit 5ade0e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### 1.1.0 _ under development
* [#95](https://github.com/ctaggart/SourceLink/issues/95) add Windows 10 SDK pdbstr.exe location

### 1.0.0 _ 2015-07
* created [SourceLink-Proxy](https://github.com/ctaggart/SourceLink-Proxy) to allow source indexing to private GitHub repositories
Expand Down
8 changes: 5 additions & 3 deletions SourceLink/Pdbstr.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ open System.IO
type Pdbstr() =
static member tryFind() =
[
// Chocolatey, `cinst sourcelink` adds pdbstr too, default is C:\ProgramData\chocolatey\bin\pdbstr.exe
Path.combine (Environment.GetFolderPath Environment.SpecialFolder.CommonApplicationData) @"chocolatey\bin\pdbstr.exe"
@"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\srcsrv\pdbstr.exe" // 6.3.9600.16384
// Chocolatey, `choco install sourcelink` adds pdbstr too, default is C:\ProgramData\chocolatey\bin\pdbstr.exe
Path.combine (Environment.GetFolderPath Environment.SpecialFolder.CommonApplicationData) @"chocolatey\bin\pdbstr.exe" // x86 6.3.9600.17298, Windows 8.1 Update 1
@"C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\srcsrv\pdbstr.exe" // 10.0.10240.16384
@"C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\srcsrv\pdbstr.exe" // 10.0.10240.16384
@"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\srcsrv\pdbstr.exe" // 6.3.9600.16384, Windows 8.1
@"C:\Program Files\Microsoft Team Foundation Server 12.0\Tools\pdbstr.exe" // 6.3.9600.16384
@"C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\srcsrv\pdbstr.exe" // 6.2.9200.16384
@"C:\Program Files\Microsoft Team Foundation Server 11.0\Tools\pdbstr.exe" // 6.2.9200.16384
Expand Down

0 comments on commit 5ade0e9

Please sign in to comment.