diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 16:39:11 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 20:28:02 +1000 |
| commit | ddb4161e3d9d13703b0df2915e68b5b4ef47e71b (patch) | |
| tree | b2a6033b3875662f6dee47295b15ceb4463d23a9 /src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs | |
| parent | d0d447ad64afdd5956856c4c6b6599f69a522d6b (diff) | |
| download | wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.gz wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.bz2 wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.zip | |
Try to be more accurate in the tuples with nullable fields.
Diffstat (limited to 'src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs b/src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs index 72dac43a..1b4769b3 100644 --- a/src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs +++ b/src/WixToolset.Data/Tuples/UpgradedFilesOptionalDataTuple.cs | |||
| @@ -61,15 +61,15 @@ namespace WixToolset.Data.Tuples | |||
| 61 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.SymbolPaths, value); | 61 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.SymbolPaths, value); |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | public bool AllowIgnoreOnPatchError | 64 | public bool? AllowIgnoreOnPatchError |
| 65 | { | 65 | { |
| 66 | get => (bool)this.Fields[(int)UpgradedFilesOptionalDataTupleFields.AllowIgnoreOnPatchError]; | 66 | get => (bool?)this.Fields[(int)UpgradedFilesOptionalDataTupleFields.AllowIgnoreOnPatchError]; |
| 67 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.AllowIgnoreOnPatchError, value); | 67 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.AllowIgnoreOnPatchError, value); |
| 68 | } | 68 | } |
| 69 | 69 | ||
| 70 | public bool IncludeWholeFile | 70 | public bool? IncludeWholeFile |
| 71 | { | 71 | { |
| 72 | get => (bool)this.Fields[(int)UpgradedFilesOptionalDataTupleFields.IncludeWholeFile]; | 72 | get => (bool?)this.Fields[(int)UpgradedFilesOptionalDataTupleFields.IncludeWholeFile]; |
| 73 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.IncludeWholeFile, value); | 73 | set => this.Set((int)UpgradedFilesOptionalDataTupleFields.IncludeWholeFile, value); |
| 74 | } | 74 | } |
| 75 | } | 75 | } |
