diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs b/src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs index d34c0d2a..f8752067 100644 --- a/src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs +++ b/src/WixToolset.Data/Tuples/WixBundlePatchTargetCodeTuple.cs | |||
| @@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples | |||
| 41 | 41 | ||
| 42 | public string PackageId | 42 | public string PackageId |
| 43 | { | 43 | { |
| 44 | get => (string)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.PackageId]?.Value; | 44 | get => (string)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.PackageId]; |
| 45 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.PackageId, value); | 45 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.PackageId, value); |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | public string TargetCode | 48 | public string TargetCode |
| 49 | { | 49 | { |
| 50 | get => (string)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.TargetCode]?.Value; | 50 | get => (string)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.TargetCode]; |
| 51 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.TargetCode, value); | 51 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.TargetCode, value); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | public int Attributes | 54 | public int Attributes |
| 55 | { | 55 | { |
| 56 | get => (int)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.Attributes]?.Value; | 56 | get => (int)this.Fields[(int)WixBundlePatchTargetCodeTupleFields.Attributes]; |
| 57 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.Attributes, value); | 57 | set => this.Set((int)WixBundlePatchTargetCodeTupleFields.Attributes, value); |
| 58 | } | 58 | } |
| 59 | } | 59 | } |
