From 5287c9ce70877b6b1e96d3253a395101fe30de8f Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 21 Dec 2017 13:37:19 -0800 Subject: Introduce IResolveExtension and IFileSystemExtension with cleanup --- .../Services/BindVariableResolution.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/WixToolset.Extensibility/Services/BindVariableResolution.cs (limited to 'src/WixToolset.Extensibility/Services/BindVariableResolution.cs') diff --git a/src/WixToolset.Extensibility/Services/BindVariableResolution.cs b/src/WixToolset.Extensibility/Services/BindVariableResolution.cs new file mode 100644 index 00000000..cdd1fa19 --- /dev/null +++ b/src/WixToolset.Extensibility/Services/BindVariableResolution.cs @@ -0,0 +1,27 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Extensibility.Services +{ + public class BindVariableResolution + { + /// + /// Indicates whether the variable should be delay resolved. + /// + public bool DelayedResolve { get; set; } + + /// + /// Indicates whether the value is the default value of the variable. + /// + public bool IsDefault { get; set; } + + /// + /// Indicates whether the value changed. + /// + public bool UpdatedValue { get; set; } + + /// + /// Resolved value. + /// + public string Value { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb