// 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 { /// /// A command line option. /// public struct CommandLineOption { public string Option; public string Description; public int AdditionalArguments; /// /// Instantiates a new BuilderCommandLineOption. /// /// The option name. /// The description of the option. /// Count of additional arguments to require after this switch. public CommandLineOption(string option, string description, int additionalArguments) { this.Option = option; this.Description = description; this.AdditionalArguments = additionalArguments; } } }