diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-12-21 13:37:19 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-12-21 13:42:38 -0800 |
| commit | 5287c9ce70877b6b1e96d3253a395101fe30de8f (patch) | |
| tree | afd373b856aa2a2320d13666e20548378c84b3e3 /src/WixToolset.Extensibility/Services/BindVariableResolution.cs | |
| parent | 21be85310baadfb1a479ca5b8c4d8f27018ff8f8 (diff) | |
| download | wix-5287c9ce70877b6b1e96d3253a395101fe30de8f.tar.gz wix-5287c9ce70877b6b1e96d3253a395101fe30de8f.tar.bz2 wix-5287c9ce70877b6b1e96d3253a395101fe30de8f.zip | |
Introduce IResolveExtension and IFileSystemExtension with cleanup
Diffstat (limited to 'src/WixToolset.Extensibility/Services/BindVariableResolution.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Services/BindVariableResolution.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Services/BindVariableResolution.cs b/src/WixToolset.Extensibility/Services/BindVariableResolution.cs new file mode 100644 index 00000000..cdd1fa19 --- /dev/null +++ b/src/WixToolset.Extensibility/Services/BindVariableResolution.cs | |||
| @@ -0,0 +1,27 @@ | |||
| 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.Extensibility.Services | ||
| 4 | { | ||
| 5 | public class BindVariableResolution | ||
| 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 | ||
