diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-28 10:48:32 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-28 10:53:59 -0700 |
commit | 16ebbac306cebd4c5044ed89086c920e1bf6fae4 (patch) | |
tree | 4acddc961ffb3627f48f2b19ab5b72474e3f234d /src | |
parent | 6fcfebabb97b54508f70c4b9aa5303b698c972c5 (diff) | |
download | wix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.tar.gz wix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.tar.bz2 wix-16ebbac306cebd4c5044ed89086c920e1bf6fae4.zip |
Fix AppId tuple
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 5 | ||||
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 2 |
2 files changed, 3 insertions, 4 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, |
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index fa14f06c..7f06eea6 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |||
@@ -9,7 +9,7 @@ namespace WixToolsetTest.CoreIntegration | |||
9 | 9 | ||
10 | public class MsiQueryFixture | 10 | public class MsiQueryFixture |
11 | { | 11 | { |
12 | [Fact(Skip = "Test demonstrates failure")] | 12 | [Fact] |
13 | public void PopulatesAppIdTableWhenAdvertised() | 13 | public void PopulatesAppIdTableWhenAdvertised() |
14 | { | 14 | { |
15 | var folder = TestData.Get(@"TestData"); | 15 | var folder = TestData.Get(@"TestData"); |