@joebigelow / wix / commits / aed25de2

Ensure `ProxyStubClassId` is written as a proper, embraced GUID.

Bob Arnson committed Sep 20, 2018 at 13:49 UTC aed25de217d676bef1559290457b54444714e194
1 file changed +1 -1
src/WixToolset.Core/Compiler.cs
+1 -1
@@ -1460,7 +1460,7 @@ namespace WixToolset.Core
1460 numMethods = this.Core.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, int.MaxValue);
1461 break;
1462 case "ProxyStubClassId":
1463 - proxyId = this.Core.GetAttributeValue(sourceLineNumbers, attrib);
1463 + proxyId = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib);
1464 break;
1465 case "ProxyStubClassId32":
1466 proxyId32 = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib, false);