diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-24 12:28:27 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-27 11:14:21 -0500 |
commit | eb53852d7ae6838e54525eb57df1d8ce8a722f9b (patch) | |
tree | 7fa05bd6df1bce2e20d87c5fbacc1c658dc000aa /src/test/burn/WixTestTools/TestTool.cs | |
parent | 6ee12a64cb75097a238e60d4fd0ea542e8312214 (diff) | |
download | wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.tar.gz wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.tar.bz2 wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.zip |
Add longPathAware to Burn manifest to support long paths.
Fixes 3455
Diffstat (limited to 'src/test/burn/WixTestTools/TestTool.cs')
-rw-r--r-- | src/test/burn/WixTestTools/TestTool.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/burn/WixTestTools/TestTool.cs b/src/test/burn/WixTestTools/TestTool.cs index eb77c75b..79e7004c 100644 --- a/src/test/burn/WixTestTools/TestTool.cs +++ b/src/test/burn/WixTestTools/TestTool.cs | |||
@@ -229,7 +229,7 @@ namespace WixTestTools | |||
229 | returnValue.AppendLine("Tool run result:"); | 229 | returnValue.AppendLine("Tool run result:"); |
230 | returnValue.AppendLine("----------------"); | 230 | returnValue.AppendLine("----------------"); |
231 | returnValue.AppendLine("Command:"); | 231 | returnValue.AppendLine("Command:"); |
232 | returnValue.AppendLine($"\"{result.StartInfo.FileName}\" {result.StartInfo.Arguments}"); | 232 | returnValue.AppendLine($"\"{result.FileName}\" {result.Arguments}"); |
233 | returnValue.AppendLine(); | 233 | returnValue.AppendLine(); |
234 | returnValue.AppendLine("Standard Output:"); | 234 | returnValue.AppendLine("Standard Output:"); |
235 | foreach (var line in result.StandardOutput ?? new string[0]) | 235 | foreach (var line in result.StandardOutput ?? new string[0]) |