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/internal/WixBuildTools.TestSupport/ExternalExecutableResult.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/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs')
-rw-r--r-- | src/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs b/src/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs index 19b5183b..950ee4bd 100644 --- a/src/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs +++ b/src/internal/WixBuildTools.TestSupport/ExternalExecutableResult.cs | |||
@@ -12,6 +12,8 @@ namespace WixBuildTools.TestSupport | |||
12 | 12 | ||
13 | public string[] StandardOutput { get; set; } | 13 | public string[] StandardOutput { get; set; } |
14 | 14 | ||
15 | public ProcessStartInfo StartInfo { get; set; } | 15 | public string FileName { get; set; } |
16 | |||
17 | public string Arguments { get; set; } | ||
16 | } | 18 | } |
17 | } | 19 | } |