main
cs 15 lines 496 Bytes
Raw
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.BootstrapperApplicationApi
4 {
5 /// <summary>
6 /// Overridable variable from the BA manifest.
7 /// </summary>
8 public interface IOverridableVariableInfo
9 {
10 /// <summary>
11 /// The Variable name.
12 /// </summary>
13 string Name { get; }
14 }
15 }