aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IBinderFileManager.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-18 15:21:45 -0700
committerRob Mensching <rob@firegiant.com>2017-10-18 15:21:45 -0700
commit7efd412cda00b369bc331c9bedd8db971d98fee7 (patch)
tree20403b9a5372db2407200cefab1eed0bdcc19879 /src/WixToolset.Extensibility/IBinderFileManager.cs
parent475dd063933b8a23d8e47021e9b105a20699bbac (diff)
downloadwix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.gz
wix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.bz2
wix-7efd412cda00b369bc331c9bedd8db971d98fee7.zip
Incorporate refactoring of WixToolset.Core assemblies
Diffstat (limited to 'src/WixToolset.Extensibility/IBinderFileManager.cs')
-rw-r--r--src/WixToolset.Extensibility/IBinderFileManager.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/WixToolset.Extensibility/IBinderFileManager.cs b/src/WixToolset.Extensibility/IBinderFileManager.cs
deleted file mode 100644
index 3a2b1d40..00000000
--- a/src/WixToolset.Extensibility/IBinderFileManager.cs
+++ /dev/null
@@ -1,29 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Extensibility
4{
5 using System.Collections.Generic;
6 using WixToolset.Data;
7 using WixToolset.Data.Rows;
8
9 public interface IBinderFileManager
10 {
11 IBinderFileManagerCore Core { set; }
12
13 ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<BindFileWithPath> files);
14
15 string ResolveFile(string source, string type, SourceLineNumber sourceLineNumbers, BindStage bindStage);
16
17 string ResolveRelatedFile(string source, string relatedSource, string type, SourceLineNumber sourceLineNumbers, BindStage bindStage);
18
19 string ResolveMedia(MediaRow mediaRow, string mediaLayoutDirectory, string layoutDirectory);
20
21 string ResolveUrl(string url, string fallbackUrl, string packageId, string payloadId, string fileName);
22
23 bool? CompareFiles(string targetFile, string updatedFile);
24
25 bool CopyFile(string source, string destination, bool overwrite);
26
27 bool MoveFile(string source, string destination, bool overwrite);
28 }
29}