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