diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/Tuples/EnvironmentTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs index a6a10ac5..98c51f4d 100644 --- a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs +++ b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs | |||
@@ -84,13 +84,13 @@ namespace WixToolset.Data.Tuples | |||
84 | public EnvironmentActionType? Action | 84 | public EnvironmentActionType? Action |
85 | { | 85 | { |
86 | get => (EnvironmentActionType?)this.Fields[(int)EnvironmentTupleFields.Action].AsNullableNumber(); | 86 | get => (EnvironmentActionType?)this.Fields[(int)EnvironmentTupleFields.Action].AsNullableNumber(); |
87 | set => this.Set((int)EnvironmentTupleFields.Action, (int)value); | 87 | set => this.Set((int)EnvironmentTupleFields.Action, (int?)value); |
88 | } | 88 | } |
89 | 89 | ||
90 | public EnvironmentPartType? Part | 90 | public EnvironmentPartType? Part |
91 | { | 91 | { |
92 | get => (EnvironmentPartType?)this.Fields[(int)EnvironmentTupleFields.Part].AsNullableNumber(); | 92 | get => (EnvironmentPartType?)this.Fields[(int)EnvironmentTupleFields.Part].AsNullableNumber(); |
93 | set => this.Set((int)EnvironmentTupleFields.Part, (int)value); | 93 | set => this.Set((int)EnvironmentTupleFields.Part, (int?)value); |
94 | } | 94 | } |
95 | 95 | ||
96 | public bool Permanent | 96 | public bool Permanent |