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 --- src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs | 35 ------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs (limited to 'src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs') diff --git a/src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs b/src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs deleted file mode 100644 index 495b2f44..00000000 --- a/src/api/burn/WixToolset.Mba.Core/IMbaCommand.cs +++ /dev/null @@ -1,35 +0,0 @@ -// 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.Mba.Core -{ - using System.Collections.Generic; - - /// - /// Command information parsed from the command line. - /// - public interface IMbaCommand - { - /// - /// Gets the action to perform if a reboot is required. - /// - Restart Restart { get; } - - /// - /// The command line arguments not parsed into or . - /// - string[] UnknownCommandLineArgs { get; } - - /// - /// The variables that were parsed from the command line. - /// Key = variable name, Value = variable value. - /// - KeyValuePair[] Variables { get; } - - /// - /// Sets overridable variables from the command line. - /// - /// The overridable variable information from . - /// The engine. - void SetOverridableVariables(IOverridableVariables overridableVariables, IEngine engine); - } -} -- cgit v1.2.3-55-g6feb