From eb53852d7ae6838e54525eb57df1d8ce8a722f9b Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 24 Jun 2022 12:28:27 -0500 Subject: Add longPathAware to Burn manifest to support long paths. Fixes 3455 --- src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/internal/WixBuildTools.TestSupport/TestDataFolderFileSystem.cs') 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 RobocopyFolder(sourceDirectoryPath, this.BaseFolder); } - private static ExternalExecutableResult RobocopyFolder(string sourceFolderPath, string destinationFolderPath) + public static ExternalExecutableResult RobocopyFolder(string sourceFolderPath, string destinationFolderPath) { var args = $"\"{sourceFolderPath}\" \"{destinationFolderPath}\" /E /R:1 /W:1"; return RobocopyRunner.Execute(args); -- cgit v1.2.3-55-g6feb