summaryrefslogtreecommitdiff
path: root/src/ext/UI/wixext/UICompiler.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-07-05 10:33:58 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-07-05 11:46:35 -0500
commita3a3b2aca8978b9ff00d64a3be20ce6525ee78cd (patch)
treeb5fc823125ae9c9c3cee01bc09e5e076dcdd44ef /src/ext/UI/wixext/UICompiler.cs
parent1e21a5de35a9d12218065e999f172ea766ffd3df (diff)
downloadwix-a3a3b2aca8978b9ff00d64a3be20ce6525ee78cd.tar.gz
wix-a3a3b2aca8978b9ff00d64a3be20ce6525ee78cd.tar.bz2
wix-a3a3b2aca8978b9ff00d64a3be20ce6525ee78cd.zip
Add missing Binary simple reference for UI.wixext dll.
Diffstat (limited to '')
-rw-r--r--src/ext/UI/wixext/UICompiler.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ext/UI/wixext/UICompiler.cs b/src/ext/UI/wixext/UICompiler.cs
index 46b856c0..1d845237 100644
--- a/src/ext/UI/wixext/UICompiler.cs
+++ b/src/ext/UI/wixext/UICompiler.cs
@@ -90,6 +90,7 @@ namespace WixToolset.UI
90 // in the UI .wixlib. 90 // in the UI .wixlib.
91 var platform = this.Context.Platform == Platform.ARM64 ? "A64" : this.Context.Platform.ToString(); 91 var platform = this.Context.Platform == Platform.ARM64 ? "A64" : this.Context.Platform.ToString();
92 var source = $"WixUiCa_{platform}"; 92 var source = $"WixUiCa_{platform}";
93 this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.Binary, source);
93 94
94 section.AddSymbol(new CustomActionSymbol(sourceLineNumbers, new Identifier(AccessModifier.Global, "WixUIPrintEula")) 95 section.AddSymbol(new CustomActionSymbol(sourceLineNumbers, new Identifier(AccessModifier.Global, "WixUIPrintEula"))
95 { 96 {