From 34c1ceb7d1639a3a769ba214dc024b1921af2057 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 3 Apr 2020 12:02:16 +1000 Subject: Update dependencies. --- src/wixext/Tuples/SecureObjectsTuple.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/wixext/Tuples') diff --git a/src/wixext/Tuples/SecureObjectsTuple.cs b/src/wixext/Tuples/SecureObjectsTuple.cs index 920fe7b3..dd658be1 100644 --- a/src/wixext/Tuples/SecureObjectsTuple.cs +++ b/src/wixext/Tuples/SecureObjectsTuple.cs @@ -11,6 +11,7 @@ namespace WixToolset.Util UtilTupleDefinitionType.SecureObjects.ToString(), new[] { + new IntermediateFieldDefinition(nameof(SecureObjectsTupleFields.SecureObject), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(SecureObjectsTupleFields.Table), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(SecureObjectsTupleFields.Domain), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(SecureObjectsTupleFields.User), IntermediateFieldType.String), @@ -27,6 +28,7 @@ namespace WixToolset.Util.Tuples public enum SecureObjectsTupleFields { + SecureObject, Table, Domain, User, @@ -46,6 +48,12 @@ namespace WixToolset.Util.Tuples public IntermediateField this[SecureObjectsTupleFields index] => this.Fields[(int)index]; + public string SecureObject + { + get => this.Fields[(int)SecureObjectsTupleFields.SecureObject].AsString(); + set => this.Set((int)SecureObjectsTupleFields.SecureObject, value); + } + public string Table { get => this.Fields[(int)SecureObjectsTupleFields.Table].AsString(); -- cgit v1.2.3-55-g6feb