blob: e25f4a55dda16d0cb4138b6132ab116bfa5512da (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// 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.Data.Rows
{
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// Attributes for the PatchTargetCode table.
/// </summary>
[Flags]
public enum WixBundlePatchTargetCodeAttributes : int
{
None = 0,
/// <summary>
/// The transform targets a specific ProductCode.
/// </summary>
TargetsProductCode = 1,
/// <summary>
/// The transform targets a specific UpgradeCode.
/// </summary>
TargetsUpgradeCode = 2,
}
/// <summary>
/// Specialization of a row for the PatchTargetCode table.
/// </summary>
public class WixBundlePatchTargetCodeRow : Row
{
/// <summary>
/// Creates a PatchTargetCodeRow row that does not belong to a table.
/// </summary>
/// <param name="sourceLineNumbers">Original source lines for this row.</param>
/// <param name="tableDef">TableDefinition this PatchTargetCode row belongs to and should get its column definitions from.</param>
public WixBundlePatchTargetCodeRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDef) :
base(sourceLineNumbers, tableDef)
{
}
/// <summary>
/// Creates a PatchTargetCodeRow row that belongs to a table.
/// </summary>
/// <param name="sourceLineNumbers">Original source lines for this row.</param>
/// <param name="table">Table this PatchTargetCode row belongs to and should get its column definitions from.</param>
public WixBundlePatchTargetCodeRow(SourceLineNumber sourceLineNumbers, Table table) :
base(sourceLineNumbers, table)
{
}
public string MspPackageId
{
get { return (string)this.Fields[0].Data; }
set { this.Fields[0].Data = value; }
}
public string TargetCode
{
get { return (string)this.Fields[1].Data; }
set { this.Fields[1].Data = value; }
}
public WixBundlePatchTargetCodeAttributes Attributes
{
get { return (WixBundlePatchTargetCodeAttributes)this.Fields[2].Data; }
set { this.Fields[2].Data = (int)value; }
}
public bool TargetsProductCode
{
get { return 0 != (WixBundlePatchTargetCodeAttributes.TargetsProductCode & this.Attributes); }
}
public bool TargetsUpgradeCode
{
get { return 0 != (WixBundlePatchTargetCodeAttributes.TargetsUpgradeCode & this.Attributes); }
}
}
}
|