diff options
author | Bob Arnson <bob@joyofsetup.com> | 2019-10-16 15:40:26 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2019-10-22 13:34:57 -0400 |
commit | c9546f882bde36d5b525f82280a1e09f81c08845 (patch) | |
tree | f3582029b8ec76775a2ec4e61c6c1e57db4f1d20 /src/wixext/Tuples | |
parent | fbc081741b9923868ebf4aeb98f1e678f5fb6d97 (diff) | |
download | wix-c9546f882bde36d5b525f82280a1e09f81c08845.tar.gz wix-c9546f882bde36d5b525f82280a1e09f81c08845.tar.bz2 wix-c9546f882bde36d5b525f82280a1e09f81c08845.zip |
Bring extension up to date.
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r-- | src/wixext/Tuples/FileShareTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/FileShareTuple.cs b/src/wixext/Tuples/FileShareTuple.cs index 043f24bd..5a31b6fa 100644 --- a/src/wixext/Tuples/FileShareTuple.cs +++ b/src/wixext/Tuples/FileShareTuple.cs | |||
@@ -86,9 +86,9 @@ namespace WixToolset.Util.Tuples | |||
86 | set => this.Set((int)FileShareTupleFields.User_, value); | 86 | set => this.Set((int)FileShareTupleFields.User_, value); |
87 | } | 87 | } |
88 | 88 | ||
89 | public int Permissions | 89 | public int? Permissions |
90 | { | 90 | { |
91 | get => this.Fields[(int)FileShareTupleFields.Permissions].AsNumber(); | 91 | get => this.Fields[(int)FileShareTupleFields.Permissions].AsNullableNumber(); |
92 | set => this.Set((int)FileShareTupleFields.Permissions, value); | 92 | set => this.Set((int)FileShareTupleFields.Permissions, value); |
93 | } | 93 | } |
94 | } | 94 | } |