aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs b/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs
index 1ffe50e4..2b26d7b6 100644
--- a/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs
+++ b/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs
@@ -10,13 +10,13 @@ namespace WixToolset.Mba.Core
10 public enum VariableCommandLineType 10 public enum VariableCommandLineType
11 { 11 {
12 /// <summary> 12 /// <summary>
13 /// Similar to Windows Installer, all variable names specified on the command line are automatically converted to upper case.
14 /// </summary>
15 UpperCase,
16 /// <summary>
17 /// All variable names specified on the command line must match the case specified when building the bundle. 13 /// All variable names specified on the command line must match the case specified when building the bundle.
18 /// </summary> 14 /// </summary>
19 CaseSensitive, 15 CaseSensitive,
16 /// <summary>
17 /// Variable names specified on the command line do not have to match the case specified when building the bundle.
18 /// </summary>
19 CaseInsensitive,
20 } 20 }
21 21
22 /// <summary> 22 /// <summary>
@@ -34,4 +34,4 @@ namespace WixToolset.Mba.Core
34 /// </summary> 34 /// </summary>
35 IDictionary<string, IOverridableVariableInfo> Variables { get; } 35 IDictionary<string, IOverridableVariableInfo> Variables { get; }
36 } 36 }
37} \ No newline at end of file 37}