From 74e57bee9f6d9029cbbb2977c18f02d8ec18c50c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 10 Jun 2020 08:11:09 -0700 Subject: Update MSBuild task to support async commands and push heat out of proc --- src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test/WixToolsetTest.MSBuild') diff --git a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs index f5f03be0..3b4457be 100644 --- a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs +++ b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs @@ -33,7 +33,7 @@ namespace WixToolsetTest.MSBuild var result = MsbuildUtilities.BuildProject(buildSystem, projectPath); result.AssertSuccess(); - var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem); + var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem, true); Assert.Single(heatCommandLines); var warnings = result.Output.Where(line => line.Contains(": warning")); @@ -89,7 +89,7 @@ namespace WixToolsetTest.MSBuild var result = MsbuildUtilities.BuildProject(buildSystem, projectPath); result.AssertSuccess(); - var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem); + var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem, true); Assert.Equal(2, heatCommandLines.Count()); var warnings = result.Output.Where(line => line.Contains(": warning")); -- cgit v1.2.3-55-g6feb