diff options
Diffstat (limited to 'src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs')
-rw-r--r-- | src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs index b5331cbc..58a3d333 100644 --- a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs +++ b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs | |||
@@ -13,7 +13,7 @@ namespace WixToolsetTest.MSBuild | |||
13 | 13 | ||
14 | public class MsbuildHeatFixture | 14 | public class MsbuildHeatFixture |
15 | { | 15 | { |
16 | private static readonly string WixTargetsPath = Path.Combine(new Uri(typeof(MsbuildHeatFixture).Assembly.CodeBase).AbsolutePath, "..", "..", "publish", "WixToolset.MSBuild", "tools", "wix.targets"); | 16 | private static readonly string WixPropsPath = Path.Combine(new Uri(typeof(MsbuildHeatFixture).Assembly.CodeBase).AbsolutePath, "..", "..", "publish", "WixToolset.MSBuild", "build", "WixToolset.MSBuild.props"); |
17 | 17 | ||
18 | [Fact] | 18 | [Fact] |
19 | public void CanBuildHeatFilePackage() | 19 | public void CanBuildHeatFilePackage() |
@@ -30,7 +30,7 @@ namespace WixToolsetTest.MSBuild | |||
30 | 30 | ||
31 | var result = MsbuildRunner.Execute(projectPath, new[] | 31 | var result = MsbuildRunner.Execute(projectPath, new[] |
32 | { | 32 | { |
33 | $"-p:WixTargetsPath={WixTargetsPath}", | 33 | $"-p:WixMSBuildProps={WixPropsPath}", |
34 | }); | 34 | }); |
35 | result.AssertSuccess(); | 35 | result.AssertSuccess(); |
36 | 36 | ||
@@ -86,7 +86,7 @@ namespace WixToolsetTest.MSBuild | |||
86 | 86 | ||
87 | var result = MsbuildRunner.Execute(projectPath, new[] | 87 | var result = MsbuildRunner.Execute(projectPath, new[] |
88 | { | 88 | { |
89 | $"-p:WixTargetsPath={WixTargetsPath}", | 89 | $"-p:WixMSBuildProps={WixPropsPath}", |
90 | }); | 90 | }); |
91 | result.AssertSuccess(); | 91 | result.AssertSuccess(); |
92 | 92 | ||