From aed25de217d676bef1559290457b54444714e194 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Thu, 20 Sep 2018 13:49:08 -0400 Subject: Ensure `ProxyStubClassId` is written as a proper, embraced GUID. --- src/WixToolset.Core/Compiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Core') diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index bbe21b1c..7d09be6d 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs @@ -1460,7 +1460,7 @@ namespace WixToolset.Core numMethods = this.Core.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, int.MaxValue); break; case "ProxyStubClassId": - proxyId = this.Core.GetAttributeValue(sourceLineNumbers, attrib); + proxyId = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib); break; case "ProxyStubClassId32": proxyId32 = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib, false); -- cgit v1.2.3-55-g6feb