diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-23 15:37:56 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 16:02:37 -0700 |
| commit | 354f6d5b79404544cb7c0e11a0d9212b4780ce09 (patch) | |
| tree | 1082ce6dd66604f7da315d6a15c85ac3f56b745a /src/WixToolset.Core/Bind | |
| parent | 3051bf2fc300df125115c9538a0bfc8256bfde6a (diff) | |
| download | wix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.tar.gz wix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.tar.bz2 wix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.zip | |
Integrate latest Data changes for FileTuple and AssemblyTuple
Diffstat (limited to 'src/WixToolset.Core/Bind')
| -rw-r--r-- | src/WixToolset.Core/Bind/FileFacade.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/WixToolset.Core/Bind/FileFacade.cs b/src/WixToolset.Core/Bind/FileFacade.cs index 825c2c7a..d631a3b5 100644 --- a/src/WixToolset.Core/Bind/FileFacade.cs +++ b/src/WixToolset.Core/Bind/FileFacade.cs | |||
| @@ -7,27 +7,27 @@ namespace WixToolset.Core.Bind | |||
| 7 | 7 | ||
| 8 | public class FileFacade | 8 | public class FileFacade |
| 9 | { | 9 | { |
| 10 | public FileFacade(FileTuple file, WixFileTuple wixFile, WixDeltaPatchFileTuple deltaPatchFile) | 10 | public FileFacade(FileTuple file, AssemblyTuple assembly) |
| 11 | { | 11 | { |
| 12 | this.File = file; | 12 | this.File = file; |
| 13 | this.WixFile = wixFile; | 13 | this.Assembly = assembly; |
| 14 | this.DeltaPatchFile = deltaPatchFile; | ||
| 15 | } | 14 | } |
| 16 | 15 | ||
| 17 | public FileFacade(bool fromModule, FileTuple file, WixFileTuple wixFile) | 16 | public FileFacade(bool fromModule, FileTuple file) |
| 18 | { | 17 | { |
| 19 | this.FromModule = fromModule; | 18 | this.FromModule = fromModule; |
| 20 | this.File = file; | 19 | this.File = file; |
| 21 | this.WixFile = wixFile; | ||
| 22 | } | 20 | } |
| 23 | 21 | ||
| 24 | public bool FromModule { get; } | 22 | public bool FromModule { get; } |
| 25 | 23 | ||
| 26 | public FileTuple File { get; } | 24 | public FileTuple File { get; } |
| 27 | 25 | ||
| 28 | public WixFileTuple WixFile { get; } | 26 | public AssemblyTuple Assembly { get; } |
| 29 | 27 | ||
| 30 | public WixDeltaPatchFileTuple DeltaPatchFile { get; } | 28 | public int DiskId => this.File.DiskId ?? 0; |
| 29 | |||
| 30 | public bool Uncompressed => (this.File.Attributes & FileTupleAttributes.Uncompressed) == FileTupleAttributes.Uncompressed; | ||
| 31 | 31 | ||
| 32 | /// <summary> | 32 | /// <summary> |
| 33 | /// Gets the set of MsiAssemblyName rows created for this file. | 33 | /// Gets the set of MsiAssemblyName rows created for this file. |
