Skip to content

Commit b3f3403

Browse files
committed
Disable tests breaking in Heat due to internal MSBuild changes
1 parent 5845096 commit b3f3403

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/tools/test/WixToolsetTest.HeatTasks/MsbuildHeatFixture.cs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,10 @@ public void CanBuildHeatFileWithMultipleFilesPackage(BuildSystem buildSystem)
162162
[DataRow(BuildSystem.DotNetCoreSdk, true)]
163163
[DataRow(BuildSystem.DotNetCoreSdk, false)]
164164
[DataRow(BuildSystem.MSBuild, true)]
165-
[DataRow(BuildSystem.MSBuild, false)]
165+
// [Ignore("Internal MSBuild changes broke the following scenarios.")]
166+
// [DataRow(BuildSystem.MSBuild, false)]
166167
[DataRow(BuildSystem.MSBuild64, true)]
167-
[DataRow(BuildSystem.MSBuild64, false)]
168+
// [DataRow(BuildSystem.MSBuild64, false)]
168169
public void CanBuildHeatProjectPreSdkStyle(BuildSystem buildSystem, bool useToolsVersion)
169170
{
170171
var sourceFolder = TestData.Get(@"TestData", "HeatProject");
@@ -274,10 +275,11 @@ public void CanBuildHeatProjectPreSdkStyle(BuildSystem buildSystem, bool useTool
274275
[TestMethod]
275276
[DataRow(BuildSystem.DotNetCoreSdk, true)]
276277
[DataRow(BuildSystem.DotNetCoreSdk, false)]
277-
[DataRow(BuildSystem.MSBuild, true)]
278-
[DataRow(BuildSystem.MSBuild, false)]
279-
[DataRow(BuildSystem.MSBuild64, true)]
280-
[DataRow(BuildSystem.MSBuild64, false)]
278+
// [Ignore("Internal MSBuild changes broke the following scenarios.")]
279+
// [DataRow(BuildSystem.MSBuild, true)]
280+
// [DataRow(BuildSystem.MSBuild, false)]
281+
// [DataRow(BuildSystem.MSBuild64, true)]
282+
// [DataRow(BuildSystem.MSBuild64, false)]
281283
public void CanBuildHeatProjectSdkStyle(BuildSystem buildSystem, bool useToolsVersion)
282284
{
283285
var sourceFolder = TestData.Get(@"TestData\HeatProject");

0 commit comments

Comments
 (0)