diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/PublishComponentTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/PublishComponentTuple.cs b/src/WixToolset.Data/Tuples/PublishComponentTuple.cs index d17da1bb..b3cd766e 100644 --- a/src/WixToolset.Data/Tuples/PublishComponentTuple.cs +++ b/src/WixToolset.Data/Tuples/PublishComponentTuple.cs | |||
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples | |||
45 | 45 | ||
46 | public string ComponentId | 46 | public string ComponentId |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)PublishComponentTupleFields.ComponentId]?.Value; | 48 | get => (string)this.Fields[(int)PublishComponentTupleFields.ComponentId]; |
49 | set => this.Set((int)PublishComponentTupleFields.ComponentId, value); | 49 | set => this.Set((int)PublishComponentTupleFields.ComponentId, value); |
50 | } | 50 | } |
51 | 51 | ||
52 | public string Qualifier | 52 | public string Qualifier |
53 | { | 53 | { |
54 | get => (string)this.Fields[(int)PublishComponentTupleFields.Qualifier]?.Value; | 54 | get => (string)this.Fields[(int)PublishComponentTupleFields.Qualifier]; |
55 | set => this.Set((int)PublishComponentTupleFields.Qualifier, value); | 55 | set => this.Set((int)PublishComponentTupleFields.Qualifier, value); |
56 | } | 56 | } |
57 | 57 | ||
58 | public string Component_ | 58 | public string Component_ |
59 | { | 59 | { |
60 | get => (string)this.Fields[(int)PublishComponentTupleFields.Component_]?.Value; | 60 | get => (string)this.Fields[(int)PublishComponentTupleFields.Component_]; |
61 | set => this.Set((int)PublishComponentTupleFields.Component_, value); | 61 | set => this.Set((int)PublishComponentTupleFields.Component_, value); |
62 | } | 62 | } |
63 | 63 | ||
64 | public string AppData | 64 | public string AppData |
65 | { | 65 | { |
66 | get => (string)this.Fields[(int)PublishComponentTupleFields.AppData]?.Value; | 66 | get => (string)this.Fields[(int)PublishComponentTupleFields.AppData]; |
67 | set => this.Set((int)PublishComponentTupleFields.AppData, value); | 67 | set => this.Set((int)PublishComponentTupleFields.AppData, value); |
68 | } | 68 | } |
69 | 69 | ||
70 | public string Feature_ | 70 | public string Feature_ |
71 | { | 71 | { |
72 | get => (string)this.Fields[(int)PublishComponentTupleFields.Feature_]?.Value; | 72 | get => (string)this.Fields[(int)PublishComponentTupleFields.Feature_]; |
73 | set => this.Set((int)PublishComponentTupleFields.Feature_, value); | 73 | set => this.Set((int)PublishComponentTupleFields.Feature_, value); |
74 | } | 74 | } |
75 | } | 75 | } |