From 528b13ce4ccd3a585c6f4caea0ce6ff0962b7310 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 30 Dec 2017 17:05:37 -0800 Subject: Rename IBindVariableResolver to IVariableResolve and merge ILocalizer plus improve IResolveContext --- .../Services/VariableResolution.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/WixToolset.Extensibility/Services/VariableResolution.cs (limited to 'src/WixToolset.Extensibility/Services/VariableResolution.cs') diff --git a/src/WixToolset.Extensibility/Services/VariableResolution.cs b/src/WixToolset.Extensibility/Services/VariableResolution.cs new file mode 100644 index 00000000..2974e84f --- /dev/null +++ b/src/WixToolset.Extensibility/Services/VariableResolution.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 VariableResolution + { + /// + /// 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