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