aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Bind/TransferFilesCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Bind/TransferFilesCommand.cs')
-rw-r--r--src/WixToolset.Core/Bind/TransferFilesCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Bind/TransferFilesCommand.cs b/src/WixToolset.Core/Bind/TransferFilesCommand.cs
index d4e143c3..6230a4f5 100644
--- a/src/WixToolset.Core/Bind/TransferFilesCommand.cs
+++ b/src/WixToolset.Core/Bind/TransferFilesCommand.cs
@@ -13,7 +13,7 @@ namespace WixToolset.Core.Bind
13 13
14 internal class TransferFilesCommand 14 internal class TransferFilesCommand
15 { 15 {
16 public TransferFilesCommand(IMessaging messaging, IEnumerable<IFileSystemExtension> extensions, IEnumerable<FileTransfer> fileTransfers, bool suppressAclReset) 16 public TransferFilesCommand(IMessaging messaging, IEnumerable<ILayoutExtension> extensions, IEnumerable<FileTransfer> fileTransfers, bool suppressAclReset)
17 { 17 {
18 this.FileSystem = new FileSystem(extensions); 18 this.FileSystem = new FileSystem(extensions);
19 this.Messaging = messaging; 19 this.Messaging = messaging;
@@ -181,11 +181,11 @@ namespace WixToolset.Core.Bind
181 181
182 if (move) 182 if (move)
183 { 183 {
184 complete = this.FileSystem.MoveFile(source, destination, true); 184 complete = this.FileSystem.MoveFile(source, destination);
185 } 185 }
186 else 186 else
187 { 187 {
188 complete = this.FileSystem.CopyFile(source, destination, true); 188 complete = this.FileSystem.CopyFile(source, destination);
189 } 189 }
190 190
191 if (!complete) 191 if (!complete)