diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IBinderFileManager.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IBinderFileManager.cs | 29 |
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 | |||
3 | namespace 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 | } | ||