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