Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Rylek <trylek@microsoft.com>2017-03-14 21:06:09 +0300
committerTomas Rylek <trylek@microsoft.com>2017-03-14 21:06:09 +0300
commit7835076aec203474c110d5ba4427a476a1801004 (patch)
tree934bbaf7b52f84e0904e046bcbbfb105e4b44fd7 /src/System.Private.StackTraceGenerator
parent98c4f0f003616bb173c4dee955bbedf9d8fee730 (diff)
Add support for MSDIA140 to DIA-based CoreRT/.NETNative StackTraceGenerator on Windows
Include the CLSID of MSDIA140 in the lookup for IDiaSource to enable DIA-based symbolic exception stack traces on machines with new VS installation that only include msdia140. [tfs-changeset: 1650741]
Diffstat (limited to 'src/System.Private.StackTraceGenerator')
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs b/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
index e9aa1559c..0d06c7266 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
@@ -13,8 +13,8 @@ namespace Internal.StackGenerator.Dia
public static readonly IEnumerable<Guid> DiaSource_CLSIDs =
new Guid[]
{
+ new Guid("E6756135-1E65-4D17-8576-610761398C3C"), // msdia140.dll
new Guid("3BFCEA48-620F-4B6B-81F7-B9AF75454C7D"), // msdia120.dll
- new Guid("761D3BCD-1304-41D5-94E8-EAC54E4AC172"), // msdia110.dll
};
public static readonly Guid IID_IDiaDataSource = new Guid("79F1BB5F-B66E-48E5-B6A9-1545C323CA3D");