diff options
author | Rob Mensching <rob@firegiant.com> | 2022-01-02 07:53:41 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-01-02 23:48:48 -0800 |
commit | 009d7ccfdb03e25c23cae95b165fb9f1ad608579 (patch) | |
tree | 9fbc669684fb459165b17d043cd113944a12884e | |
parent | cd2a9d19ba7d74ef73d899861d41e3b3bf42aad9 (diff) | |
download | wix-009d7ccfdb03e25c23cae95b165fb9f1ad608579.tar.gz wix-009d7ccfdb03e25c23cae95b165fb9f1ad608579.tar.bz2 wix-009d7ccfdb03e25c23cae95b165fb9f1ad608579.zip |
Create a binlog to aid debugging MSBuild tests
-rw-r--r-- | src/wix/test/WixToolsetTest.Sdk/MsbuildFixture.cs | 1 | ||||
-rw-r--r-- | src/wix/test/WixToolsetTest.Sdk/MsbuildUtilities.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/wix/test/WixToolsetTest.Sdk/MsbuildFixture.cs b/src/wix/test/WixToolsetTest.Sdk/MsbuildFixture.cs index df1a74da..b3d25406 100644 --- a/src/wix/test/WixToolsetTest.Sdk/MsbuildFixture.cs +++ b/src/wix/test/WixToolsetTest.Sdk/MsbuildFixture.cs | |||
@@ -397,6 +397,7 @@ namespace WixToolsetTest.Sdk | |||
397 | var allowedFiles = new HashSet<string> | 397 | var allowedFiles = new HashSet<string> |
398 | { | 398 | { |
399 | "MsiPackage.wixproj", | 399 | "MsiPackage.wixproj", |
400 | "MsiPackage.binlog", | ||
400 | "Package.en-us.wxl", | 401 | "Package.en-us.wxl", |
401 | "Package.wxs", | 402 | "Package.wxs", |
402 | "PackageComponents.wxs", | 403 | "PackageComponents.wxs", |
diff --git a/src/wix/test/WixToolsetTest.Sdk/MsbuildUtilities.cs b/src/wix/test/WixToolsetTest.Sdk/MsbuildUtilities.cs index 2e07af3a..28e0c219 100644 --- a/src/wix/test/WixToolsetTest.Sdk/MsbuildUtilities.cs +++ b/src/wix/test/WixToolsetTest.Sdk/MsbuildUtilities.cs | |||
@@ -30,6 +30,7 @@ namespace WixToolsetTest.Sdk | |||
30 | // Node reuse means that child msbuild processes can stay around after the build completes. | 30 | // Node reuse means that child msbuild processes can stay around after the build completes. |
31 | // Under that scenario, the root msbuild does not reliably close its streams which causes us to hang. | 31 | // Under that scenario, the root msbuild does not reliably close its streams which causes us to hang. |
32 | "-nr:false", | 32 | "-nr:false", |
33 | $"-bl:{Path.ChangeExtension(projectPath, ".binlog")}" | ||
33 | }; | 34 | }; |
34 | 35 | ||
35 | if (outOfProc.HasValue) | 36 | if (outOfProc.HasValue) |