aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2018-09-20 13:49:08 -0400
committerBob Arnson <bob@firegiant.com>2018-09-20 14:07:36 -0400
commitaed25de217d676bef1559290457b54444714e194 (patch)
treeff9fcae303ba3708fb21ee606012e1749377b775 /src/WixToolset.Core
parentcd1709996876ac1d6ff5750cd573b9be78313a9e (diff)
downloadwix-aed25de217d676bef1559290457b54444714e194.tar.gz
wix-aed25de217d676bef1559290457b54444714e194.tar.bz2
wix-aed25de217d676bef1559290457b54444714e194.zip
Ensure `ProxyStubClassId` is written as a proper, embraced GUID.
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r--src/WixToolset.Core/Compiler.cs2
1 files changed, 1 insertions, 1 deletions
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
1460 numMethods = this.Core.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, int.MaxValue); 1460 numMethods = this.Core.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, int.MaxValue);
1461 break; 1461 break;
1462 case "ProxyStubClassId": 1462 case "ProxyStubClassId":
1463 proxyId = this.Core.GetAttributeValue(sourceLineNumbers, attrib); 1463 proxyId = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib);
1464 break; 1464 break;
1465 case "ProxyStubClassId32": 1465 case "ProxyStubClassId32":
1466 proxyId32 = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib, false); 1466 proxyId32 = this.Core.GetAttributeGuidValue(sourceLineNumbers, attrib, false);