diff options
Diffstat (limited to 'src/WixToolset.Core/Bind/FileFacade.cs')
-rw-r--r-- | src/WixToolset.Core/Bind/FileFacade.cs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/WixToolset.Core/Bind/FileFacade.cs b/src/WixToolset.Core/Bind/FileFacade.cs index aaa6b7d3..ebca9cff 100644 --- a/src/WixToolset.Core/Bind/FileFacade.cs +++ b/src/WixToolset.Core/Bind/FileFacade.cs | |||
@@ -3,19 +3,18 @@ | |||
3 | namespace WixToolset.Core.Bind | 3 | namespace WixToolset.Core.Bind |
4 | { | 4 | { |
5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
6 | using WixToolset.Data; | 6 | using WixToolset.Data.Tuples; |
7 | using WixToolset.Data.Rows; | ||
8 | 7 | ||
9 | public class FileFacade | 8 | public class FileFacade |
10 | { | 9 | { |
11 | public FileFacade(FileRow file, WixFileRow wixFile, WixDeltaPatchFileRow deltaPatchFile) | 10 | public FileFacade(FileTuple file, WixFileTuple wixFile, WixDeltaPatchFileTuple deltaPatchFile) |
12 | { | 11 | { |
13 | this.File = file; | 12 | this.File = file; |
14 | this.WixFile = wixFile; | 13 | this.WixFile = wixFile; |
15 | this.DeltaPatchFile = deltaPatchFile; | 14 | this.DeltaPatchFile = deltaPatchFile; |
16 | } | 15 | } |
17 | 16 | ||
18 | public FileFacade(bool fromModule, FileRow file, WixFileRow wixFile) | 17 | public FileFacade(bool fromModule, FileTuple file, WixFileTuple wixFile) |
19 | { | 18 | { |
20 | this.FromModule = fromModule; | 19 | this.FromModule = fromModule; |
21 | this.File = file; | 20 | this.File = file; |
@@ -24,21 +23,21 @@ namespace WixToolset.Core.Bind | |||
24 | 23 | ||
25 | public bool FromModule { get; private set; } | 24 | public bool FromModule { get; private set; } |
26 | 25 | ||
27 | public FileRow File { get; private set; } | 26 | public FileTuple File { get; private set; } |
28 | 27 | ||
29 | public WixFileRow WixFile { get; private set; } | 28 | public WixFileTuple WixFile { get; private set; } |
30 | 29 | ||
31 | public WixDeltaPatchFileRow DeltaPatchFile { get; private set; } | 30 | public WixDeltaPatchFileTuple DeltaPatchFile { get; private set; } |
32 | 31 | ||
33 | /// <summary> | 32 | /// <summary> |
34 | /// Gets the set of MsiAssemblyName rows created for this file. | 33 | /// Gets the set of MsiAssemblyName rows created for this file. |
35 | /// </summary> | 34 | /// </summary> |
36 | /// <value>RowCollection of MsiAssemblyName table.</value> | 35 | /// <value>RowCollection of MsiAssemblyName table.</value> |
37 | public List<Row> AssemblyNames { get; set; } | 36 | public List<MsiAssemblyNameTuple> AssemblyNames { get; set; } |
38 | 37 | ||
39 | /// <summary> | 38 | /// <summary> |
40 | /// Gets or sets the MsiFileHash row for this file. | 39 | /// Gets or sets the MsiFileHash row for this file. |
41 | /// </summary> | 40 | /// </summary> |
42 | public Row Hash { get; set; } | 41 | public MsiFileHashTuple Hash { get; set; } |
43 | } | 42 | } |
44 | } | 43 | } |