blob: 85a654bff82464faa1b164987ed3eedb55f71a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 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
{
/// <summary>
/// A command line option.
/// </summary>
public struct CommandLineOption
{
public string Option;
public string Description;
public int AdditionalArguments;
/// <summary>
/// Instantiates a new BuilderCommandLineOption.
/// </summary>
/// <param name="option">The option name.</param>
/// <param name="description">The description of the option.</param>
/// <param name="additionalArguments">Count of additional arguments to require after this switch.</param>
public CommandLineOption(string option, string description, int additionalArguments)
{
this.Option = option;
this.Description = description;
this.AdditionalArguments = additionalArguments;
}
}
}
|