aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/VariableResolution.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-03-01 11:05:02 -0800
committerRob Mensching <rob@robmensching.com>2019-03-01 11:08:36 -0800
commite9fea339e473e6dcc32e34e995429b41cabb6c22 (patch)
treecad7210c4adcfa8f11b460eaadb1178c52d28e32 /src/WixToolset.Extensibility/Services/VariableResolution.cs
parent543ce1ac2e203ac0dc8fa3227bb2c40c12e6e17e (diff)
downloadwix-e9fea339e473e6dcc32e34e995429b41cabb6c22.tar.gz
wix-e9fea339e473e6dcc32e34e995429b41cabb6c22.tar.bz2
wix-e9fea339e473e6dcc32e34e995429b41cabb6c22.zip
Expose only abstracts and enums from WixToolset.Extensibility
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