diff options
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs')
-rw-r--r-- | src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs b/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs new file mode 100644 index 00000000..3944913b --- /dev/null +++ b/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs | |||
@@ -0,0 +1,17 @@ | |||
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.Mba.Core | ||
4 | { | ||
5 | using System.Collections.Generic; | ||
6 | |||
7 | /// <summary> | ||
8 | /// Overridable variable information from the BA manifest. | ||
9 | /// </summary> | ||
10 | public interface IOverridableVariables | ||
11 | { | ||
12 | /// <summary> | ||
13 | /// Variable Dictionary of variable name to <see cref="IOverridableVariableInfo"/>. | ||
14 | /// </summary> | ||
15 | IDictionary<string, IOverridableVariableInfo> Variables { get; } | ||
16 | } | ||
17 | } \ No newline at end of file | ||