aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/UtilCompiler.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-06 21:24:04 -0400
committerBob Arnson <bob@firegiant.com>2020-09-06 22:06:29 -0400
commitd672d9e0eaee21f354cbeaa177ddf074edeb665d (patch)
treea68eeeebb09d8e2d7e8289df38791884d87a5591 /src/wixext/UtilCompiler.cs
parenta678473353eacdbed7a46edc958bc02b1fdb8fef (diff)
downloadwix-d672d9e0eaee21f354cbeaa177ddf074edeb665d.tar.gz
wix-d672d9e0eaee21f354cbeaa177ddf074edeb665d.tar.bz2
wix-d672d9e0eaee21f354cbeaa177ddf074edeb665d.zip
Replace BinaryKey with BinaryRef and FileKey with FileRef.
Diffstat (limited to 'src/wixext/UtilCompiler.cs')
-rw-r--r--src/wixext/UtilCompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/UtilCompiler.cs b/src/wixext/UtilCompiler.cs
index a454951e..8953cfcd 100644
--- a/src/wixext/UtilCompiler.cs
+++ b/src/wixext/UtilCompiler.cs
@@ -2318,7 +2318,7 @@ namespace WixToolset.Util
2318 { 2318 {
2319 switch (attrib.Name.LocalName) 2319 switch (attrib.Name.LocalName)
2320 { 2320 {
2321 case "BinaryKey": 2321 case "BinaryRef":
2322 binaryId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); 2322 binaryId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib);
2323 break; 2323 break;
2324 default: 2324 default:
@@ -2336,7 +2336,7 @@ namespace WixToolset.Util
2336 2336
2337 if (null == binaryId) 2337 if (null == binaryId)
2338 { 2338 {
2339 this.Messaging.Write(ErrorMessages.ExpectedAttribute(sourceLineNumbers, element.Name.LocalName, "BinaryKey")); 2339 this.Messaging.Write(ErrorMessages.ExpectedAttribute(sourceLineNumbers, element.Name.LocalName, "BinaryRef"));
2340 } 2340 }
2341 2341
2342 if (!this.Messaging.EncounteredError) 2342 if (!this.Messaging.EncounteredError)