diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs b/src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs index 968fc2cd..98c5ac5e 100644 --- a/src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleExclusionTuple.cs | |||
| @@ -47,37 +47,37 @@ namespace WixToolset.Data.Tuples | |||
| 47 | 47 | ||
| 48 | public string ModuleID | 48 | public string ModuleID |
| 49 | { | 49 | { |
| 50 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ModuleID]?.Value; | 50 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ModuleID]; |
| 51 | set => this.Set((int)ModuleExclusionTupleFields.ModuleID, value); | 51 | set => this.Set((int)ModuleExclusionTupleFields.ModuleID, value); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | public int ModuleLanguage | 54 | public int ModuleLanguage |
| 55 | { | 55 | { |
| 56 | get => (int)this.Fields[(int)ModuleExclusionTupleFields.ModuleLanguage]?.Value; | 56 | get => (int)this.Fields[(int)ModuleExclusionTupleFields.ModuleLanguage]; |
| 57 | set => this.Set((int)ModuleExclusionTupleFields.ModuleLanguage, value); | 57 | set => this.Set((int)ModuleExclusionTupleFields.ModuleLanguage, value); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | public string ExcludedID | 60 | public string ExcludedID |
| 61 | { | 61 | { |
| 62 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedID]?.Value; | 62 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedID]; |
| 63 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedID, value); | 63 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedID, value); |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | public int ExcludedLanguage | 66 | public int ExcludedLanguage |
| 67 | { | 67 | { |
| 68 | get => (int)this.Fields[(int)ModuleExclusionTupleFields.ExcludedLanguage]?.Value; | 68 | get => (int)this.Fields[(int)ModuleExclusionTupleFields.ExcludedLanguage]; |
| 69 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedLanguage, value); | 69 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedLanguage, value); |
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | public string ExcludedMinVersion | 72 | public string ExcludedMinVersion |
| 73 | { | 73 | { |
| 74 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedMinVersion]?.Value; | 74 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedMinVersion]; |
| 75 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedMinVersion, value); | 75 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedMinVersion, value); |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | public string ExcludedMaxVersion | 78 | public string ExcludedMaxVersion |
| 79 | { | 79 | { |
| 80 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedMaxVersion]?.Value; | 80 | get => (string)this.Fields[(int)ModuleExclusionTupleFields.ExcludedMaxVersion]; |
| 81 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedMaxVersion, value); | 81 | set => this.Set((int)ModuleExclusionTupleFields.ExcludedMaxVersion, value); |
| 82 | } | 82 | } |
| 83 | } | 83 | } |
