From a1307cd4e76a89598c53cb68309358a7012db553 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 9 Sep 2022 16:03:29 -0500 Subject: Move `Bundle/@CommandLineVariables` into Bal.wixext. Implements 6858 --- src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs') 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 @@ -9,14 +9,14 @@ namespace WixToolset.Mba.Core /// public enum VariableCommandLineType { - /// - /// Similar to Windows Installer, all variable names specified on the command line are automatically converted to upper case. - /// - UpperCase, /// /// All variable names specified on the command line must match the case specified when building the bundle. /// CaseSensitive, + /// + /// Variable names specified on the command line do not have to match the case specified when building the bundle. + /// + CaseInsensitive, } /// @@ -34,4 +34,4 @@ namespace WixToolset.Mba.Core /// IDictionary Variables { get; } } -} \ No newline at end of file +} -- cgit v1.2.3-55-g6feb