diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2022-09-09 16:03:29 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2022-09-09 21:14:27 -0500 |
| commit | a1307cd4e76a89598c53cb68309358a7012db553 (patch) | |
| tree | f79cf181b49f0b754afcd4ec25487bf2b284d45e /src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs | |
| parent | f61479585d865372645cb18c982aa708dd975da3 (diff) | |
| download | wix-a1307cd4e76a89598c53cb68309358a7012db553.tar.gz wix-a1307cd4e76a89598c53cb68309358a7012db553.tar.bz2 wix-a1307cd4e76a89598c53cb68309358a7012db553.zip | |
Move `Bundle/@CommandLineVariables` into Bal.wixext.
Implements 6858
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs')
| -rw-r--r-- | src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs | 10 |
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 | } |
