aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-28 10:48:32 -0700
committerRob Mensching <rob@firegiant.com>2019-10-28 10:53:59 -0700
commit16ebbac306cebd4c5044ed89086c920e1bf6fae4 (patch)
tree4acddc961ffb3627f48f2b19ab5b72474e3f234d /src/WixToolset.Core/Compiler.cs
parent6fcfebabb97b54508f70c4b9aa5303b698c972c5 (diff)
downloadwix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.tar.gz
wix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.tar.bz2
wix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.zip
Fix AppId tuple
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 974f3188..ae99b673 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -548,10 +548,9 @@ namespace WixToolset.Core
548 548
549 if (!this.Core.EncounteredError) 549 if (!this.Core.EncounteredError)
550 { 550 {
551 var id = new Identifier(AccessModifier.Public, appId); 551 var tuple = new AppIdTuple(sourceLineNumbers, new Identifier(AccessModifier.Public, appId))
552
553 var tuple = new AppIdTuple(sourceLineNumbers, id)
554 { 552 {
553 AppId = appId,
555 RemoteServerName = remoteServerName, 554 RemoteServerName = remoteServerName,
556 LocalService = localService, 555 LocalService = localService,
557 ServiceParameters = serviceParameters, 556 ServiceParameters = serviceParameters,