blob: aaa6b7d328d2a0dce78a717d5fe700ffccb03ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// 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.
namespace WixToolset.Core.Bind
{
using System.Collections.Generic;
using WixToolset.Data;
using WixToolset.Data.Rows;
public class FileFacade
{
public FileFacade(FileRow file, WixFileRow wixFile, WixDeltaPatchFileRow deltaPatchFile)
{
this.File = file;
this.WixFile = wixFile;
this.DeltaPatchFile = deltaPatchFile;
}
public FileFacade(bool fromModule, FileRow file, WixFileRow wixFile)
{
this.FromModule = fromModule;
this.File = file;
this.WixFile = wixFile;
}
public bool FromModule { get; private set; }
public FileRow File { get; private set; }
public WixFileRow WixFile { get; private set; }
public WixDeltaPatchFileRow DeltaPatchFile { get; private set; }
/// <summary>
/// Gets the set of MsiAssemblyName rows created for this file.
/// </summary>
/// <value>RowCollection of MsiAssemblyName table.</value>
public List<Row> AssemblyNames { get; set; }
/// <summary>
/// Gets or sets the MsiFileHash row for this file.
/// </summary>
public Row Hash { get; set; }
}
}
|