diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ProgIdTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ProgIdTuple.cs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/WixToolset.Data/Tuples/ProgIdTuple.cs b/src/WixToolset.Data/Tuples/ProgIdTuple.cs index 8a6df5cb..02f66a90 100644 --- a/src/WixToolset.Data/Tuples/ProgIdTuple.cs +++ b/src/WixToolset.Data/Tuples/ProgIdTuple.cs | |||
@@ -11,10 +11,10 @@ namespace WixToolset.Data | |||
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.ProgId), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.ProgId), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.ProgId_Parent), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.ParentProgIdRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.Class_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.ClassRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.Description), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.Description), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.Icon_), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.IconRef), IntermediateFieldType.String), |
18 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.IconIndex), IntermediateFieldType.Number), | 18 | new IntermediateFieldDefinition(nameof(ProgIdTupleFields.IconIndex), IntermediateFieldType.Number), |
19 | }, | 19 | }, |
20 | typeof(ProgIdTuple)); | 20 | typeof(ProgIdTuple)); |
@@ -26,10 +26,10 @@ namespace WixToolset.Data.Tuples | |||
26 | public enum ProgIdTupleFields | 26 | public enum ProgIdTupleFields |
27 | { | 27 | { |
28 | ProgId, | 28 | ProgId, |
29 | ProgId_Parent, | 29 | ParentProgIdRef, |
30 | Class_, | 30 | ClassRef, |
31 | Description, | 31 | Description, |
32 | Icon_, | 32 | IconRef, |
33 | IconIndex, | 33 | IconIndex, |
34 | } | 34 | } |
35 | 35 | ||
@@ -51,16 +51,16 @@ namespace WixToolset.Data.Tuples | |||
51 | set => this.Set((int)ProgIdTupleFields.ProgId, value); | 51 | set => this.Set((int)ProgIdTupleFields.ProgId, value); |
52 | } | 52 | } |
53 | 53 | ||
54 | public string ProgId_Parent | 54 | public string ParentProgIdRef |
55 | { | 55 | { |
56 | get => (string)this.Fields[(int)ProgIdTupleFields.ProgId_Parent]; | 56 | get => (string)this.Fields[(int)ProgIdTupleFields.ParentProgIdRef]; |
57 | set => this.Set((int)ProgIdTupleFields.ProgId_Parent, value); | 57 | set => this.Set((int)ProgIdTupleFields.ParentProgIdRef, value); |
58 | } | 58 | } |
59 | 59 | ||
60 | public string Class_ | 60 | public string ClassRef |
61 | { | 61 | { |
62 | get => (string)this.Fields[(int)ProgIdTupleFields.Class_]; | 62 | get => (string)this.Fields[(int)ProgIdTupleFields.ClassRef]; |
63 | set => this.Set((int)ProgIdTupleFields.Class_, value); | 63 | set => this.Set((int)ProgIdTupleFields.ClassRef, value); |
64 | } | 64 | } |
65 | 65 | ||
66 | public string Description | 66 | public string Description |
@@ -69,10 +69,10 @@ namespace WixToolset.Data.Tuples | |||
69 | set => this.Set((int)ProgIdTupleFields.Description, value); | 69 | set => this.Set((int)ProgIdTupleFields.Description, value); |
70 | } | 70 | } |
71 | 71 | ||
72 | public string Icon_ | 72 | public string IconRef |
73 | { | 73 | { |
74 | get => (string)this.Fields[(int)ProgIdTupleFields.Icon_]; | 74 | get => (string)this.Fields[(int)ProgIdTupleFields.IconRef]; |
75 | set => this.Set((int)ProgIdTupleFields.Icon_, value); | 75 | set => this.Set((int)ProgIdTupleFields.IconRef, value); |
76 | } | 76 | } |
77 | 77 | ||
78 | public int? IconIndex | 78 | public int? IconIndex |