diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixPatchIdTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixPatchIdTuple.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs b/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs index f589a9fc..303ccecd 100644 --- a/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs +++ b/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs | |||
@@ -43,25 +43,25 @@ namespace WixToolset.Data.Tuples | |||
43 | 43 | ||
44 | public string ProductCode | 44 | public string ProductCode |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ProductCode]?.Value; | 46 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ProductCode]; |
47 | set => this.Set((int)WixPatchIdTupleFields.ProductCode, value); | 47 | set => this.Set((int)WixPatchIdTupleFields.ProductCode, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public string ClientPatchId | 50 | public string ClientPatchId |
51 | { | 51 | { |
52 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ClientPatchId]?.Value; | 52 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ClientPatchId]; |
53 | set => this.Set((int)WixPatchIdTupleFields.ClientPatchId, value); | 53 | set => this.Set((int)WixPatchIdTupleFields.ClientPatchId, value); |
54 | } | 54 | } |
55 | 55 | ||
56 | public bool OptimizePatchSizeForLargeFiles | 56 | public bool OptimizePatchSizeForLargeFiles |
57 | { | 57 | { |
58 | get => (bool)this.Fields[(int)WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles]?.Value; | 58 | get => (bool)this.Fields[(int)WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles]; |
59 | set => this.Set((int)WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles, value); | 59 | set => this.Set((int)WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles, value); |
60 | } | 60 | } |
61 | 61 | ||
62 | public int ApiPatchingSymbolFlags | 62 | public int ApiPatchingSymbolFlags |
63 | { | 63 | { |
64 | get => (int)this.Fields[(int)WixPatchIdTupleFields.ApiPatchingSymbolFlags]?.Value; | 64 | get => (int)this.Fields[(int)WixPatchIdTupleFields.ApiPatchingSymbolFlags]; |
65 | set => this.Set((int)WixPatchIdTupleFields.ApiPatchingSymbolFlags, value); | 65 | set => this.Set((int)WixPatchIdTupleFields.ApiPatchingSymbolFlags, value); |
66 | } | 66 | } |
67 | } | 67 | } |