diff options
author | Rob Mensching <rob@firegiant.com> | 2022-01-10 14:23:58 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-01-10 17:08:43 -0800 |
commit | 7a14f6225c0b9cceef0cebaad9287f52aee93ba9 (patch) | |
tree | 9db135f11372b0c621bb00136d8873ffeaf286c5 /src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs | |
parent | c0e933d1cec2515e1c43aa1f3b3c4bde9a17e449 (diff) | |
download | wix-7a14f6225c0b9cceef0cebaad9287f52aee93ba9.tar.gz wix-7a14f6225c0b9cceef0cebaad9287f52aee93ba9.tar.bz2 wix-7a14f6225c0b9cceef0cebaad9287f52aee93ba9.zip |
Some code clean up
Diffstat (limited to 'src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs')
-rw-r--r-- | src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs b/src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs index 5610987e..fb61122d 100644 --- a/src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs +++ b/src/internal/WixBuildTools.TestSupport/MsbuildRunnerResult.cs | |||
@@ -13,7 +13,7 @@ namespace WixBuildTools.TestSupport | |||
13 | 13 | ||
14 | public void AssertSuccess() | 14 | public void AssertSuccess() |
15 | { | 15 | { |
16 | Assert.True(0 == this.ExitCode, $"MSBuild failed unexpectedly. Output:\r\n{String.Join("\r\n", this.Output)}"); | 16 | Assert.True(0 == this.ExitCode, $"MSBuild failed unexpectedly. Output:{Environment.NewLine}{String.Join(Environment.NewLine, this.Output)}"); |
17 | } | 17 | } |
18 | } | 18 | } |
19 | } | 19 | } |