From 3d2d46f62fc01e2653d0251ad9703090574e7c41 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 6 Mar 2024 14:48:10 -0800 Subject: Better .nupkg names --- .../IOverridableVariables.cs | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/api/burn/WixToolset.BootstrapperApplicationApi/IOverridableVariables.cs (limited to 'src/api/burn/WixToolset.BootstrapperApplicationApi/IOverridableVariables.cs') diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/IOverridableVariables.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/IOverridableVariables.cs new file mode 100644 index 00000000..2cf7b8d9 --- /dev/null +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/IOverridableVariables.cs @@ -0,0 +1,37 @@ +// 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. + +namespace WixToolset.BootstrapperApplicationApi +{ + using System.Collections.Generic; + + /// + /// The case sensitivity of variables from the command line. + /// + public enum VariableCommandLineType + { + /// + /// 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, + } + + /// + /// Overridable variable information from the BA manifest. + /// + public interface IOverridableVariables + { + /// + /// The of the bundle. + /// + VariableCommandLineType CommandLineType { get; } + + /// + /// Variable Dictionary of variable name to . + /// + IDictionary Variables { get; } + } +} -- cgit v1.2.3-55-g6feb