diff options
Diffstat (limited to 'src/WixToolset.Core/VariableResolution.cs')
-rw-r--r-- | src/WixToolset.Core/VariableResolution.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/WixToolset.Core/VariableResolution.cs b/src/WixToolset.Core/VariableResolution.cs new file mode 100644 index 00000000..3b34e294 --- /dev/null +++ b/src/WixToolset.Core/VariableResolution.cs | |||
@@ -0,0 +1,29 @@ | |||
1 | // 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. | ||
2 | |||
3 | namespace WixToolset.Core | ||
4 | { | ||
5 | using WixToolset.Extensibility.Services; | ||
6 | |||
7 | internal class VariableResolution : IVariableResolution | ||
8 | { | ||
9 | /// <summary> | ||
10 | /// Indicates whether the variable should be delay resolved. | ||
11 | /// </summary> | ||
12 | public bool DelayedResolve { get; set; } | ||
13 | |||
14 | /// <summary> | ||
15 | /// Indicates whether the value is the default value of the variable. | ||
16 | /// </summary> | ||
17 | public bool IsDefault { get; set; } | ||
18 | |||
19 | /// <summary> | ||
20 | /// Indicates whether the value changed. | ||
21 | /// </summary> | ||
22 | public bool UpdatedValue { get; set; } | ||
23 | |||
24 | /// <summary> | ||
25 | /// Resolved value. | ||
26 | /// </summary> | ||
27 | public string Value { get; set; } | ||
28 | } | ||
29 | } \ No newline at end of file | ||