summaryrefslogtreecommitdiff
path: root/src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-06-24 12:28:27 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-06-27 11:14:21 -0500
commiteb53852d7ae6838e54525eb57df1d8ce8a722f9b (patch)
tree7fa05bd6df1bce2e20d87c5fbacc1c658dc000aa /src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs
parent6ee12a64cb75097a238e60d4fd0ea542e8312214 (diff)
downloadwix-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/TestDataFolderFileSystem.cs')
-rw-r--r--src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs b/src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs
index 8d670bf0..15b7631d 100644
--- a/src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs
+++ b/src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs
@@ -33,7 +33,7 @@ namespace WixBuildTools.TestSupport
33 RobocopyFolder(sourceDirectoryPath, this.BaseFolder); 33 RobocopyFolder(sourceDirectoryPath, this.BaseFolder);
34 } 34 }
35 35
36 private static ExternalExecutableResult RobocopyFolder(string sourceFolderPath, string destinationFolderPath) 36 public static ExternalExecutableResult RobocopyFolder(string sourceFolderPath, string destinationFolderPath)
37 { 37 {
38 var args = $"\"{sourceFolderPath}\" \"{destinationFolderPath}\" /E /R:1 /W:1"; 38 var args = $"\"{sourceFolderPath}\" \"{destinationFolderPath}\" /E /R:1 /W:1";
39 return RobocopyRunner.Execute(args); 39 return RobocopyRunner.Execute(args);