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
82
83
84
85
86
87
88
89
|
// 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
{
using WixToolset.Data.Symbols;
public static partial class SymbolDefinitions
{
public static readonly IntermediateSymbolDefinition PatchMetadata = new IntermediateSymbolDefinition(
SymbolDefinitionType.PatchMetadata,
new[]
{
new IntermediateFieldDefinition(nameof(PatchMetadataSymbolFields.Company), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(PatchMetadataSymbolFields.Property), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(PatchMetadataSymbolFields.Value), IntermediateFieldType.String),
},
typeof(PatchMetadataSymbol));
}
}
namespace WixToolset.Data.Symbols
{
using System;
public enum PatchMetadataSymbolFields
{
Company,
Property,
Value,
}
/// <summary>
/// Values for the OptimizeCA MsiPatchMetdata property, which indicates whether custom actions can be skipped when applying the patch.
/// </summary>
[Flags]
public enum OptimizeCAFlags
{
/// <summary>
/// No custom actions are skipped.
/// </summary>
None = 0,
/// <summary>
/// Skip property (type 51) and directory (type 35) assignment custom actions.
/// </summary>
SkipAssignment = 1,
/// <summary>
/// Skip immediate custom actions that are not property or directory assignment custom actions.
/// </summary>
SkipImmediate = 2,
/// <summary>
/// Skip custom actions that run within the script.
/// </summary>
SkipDeferred = 4
}
public class PatchMetadataSymbol : IntermediateSymbol
{
public PatchMetadataSymbol() : base(SymbolDefinitions.PatchMetadata, null, null)
{
}
public PatchMetadataSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.PatchMetadata, sourceLineNumber, id)
{
}
public IntermediateField this[PatchMetadataSymbolFields index] => this.Fields[(int)index];
public string Company
{
get => (string)this.Fields[(int)PatchMetadataSymbolFields.Company];
set => this.Set((int)PatchMetadataSymbolFields.Company, value);
}
public string Property
{
get => (string)this.Fields[(int)PatchMetadataSymbolFields.Property];
set => this.Set((int)PatchMetadataSymbolFields.Property, value);
}
public string Value
{
get => (string)this.Fields[(int)PatchMetadataSymbolFields.Value];
set => this.Set((int)PatchMetadataSymbolFields.Value, value);
}
}
}
|