blob: 3b34e294a2f81884df69ba456260aa17e0ea2534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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.Core
{
using WixToolset.Extensibility.Services;
internal class VariableResolution : IVariableResolution
{
/// <summary>
/// Indicates whether the variable should be delay resolved.
/// </summary>
public bool DelayedResolve { get; set; }
/// <summary>
/// Indicates whether the value is the default value of the variable.
/// </summary>
public bool IsDefault { get; set; }
/// <summary>
/// Indicates whether the value changed.
/// </summary>
public bool UpdatedValue { get; set; }
/// <summary>
/// Resolved value.
/// </summary>
public string Value { get; set; }
}
}
|