diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-08 10:10:26 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-08 10:10:26 -0800 |
commit | c99ba1a05efffd7c43edd87380bc1442942de7a9 (patch) | |
tree | 257baf2ee69ea20a3675e0fa3eb8bef9aae725f2 /src/WixToolset.Core/CommandLine/CommandLineOption.cs | |
parent | 760e7ebaa490ea6e1a20c9e127de5024d44a3fea (diff) | |
download | wix-c99ba1a05efffd7c43edd87380bc1442942de7a9.tar.gz wix-c99ba1a05efffd7c43edd87380bc1442942de7a9.tar.bz2 wix-c99ba1a05efffd7c43edd87380bc1442942de7a9.zip |
Support and test preprocessor variables without "var." prefix
Diffstat (limited to 'src/WixToolset.Core/CommandLine/CommandLineOption.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/CommandLineOption.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/WixToolset.Core/CommandLine/CommandLineOption.cs b/src/WixToolset.Core/CommandLine/CommandLineOption.cs deleted file mode 100644 index 85a654bf..00000000 --- a/src/WixToolset.Core/CommandLine/CommandLineOption.cs +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | // 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. | ||
2 | |||
3 | namespace WixToolset | ||
4 | { | ||
5 | /// <summary> | ||
6 | /// A command line option. | ||
7 | /// </summary> | ||
8 | public struct CommandLineOption | ||
9 | { | ||
10 | public string Option; | ||
11 | public string Description; | ||
12 | public int AdditionalArguments; | ||
13 | |||
14 | /// <summary> | ||
15 | /// Instantiates a new BuilderCommandLineOption. | ||
16 | /// </summary> | ||
17 | /// <param name="option">The option name.</param> | ||
18 | /// <param name="description">The description of the option.</param> | ||
19 | /// <param name="additionalArguments">Count of additional arguments to require after this switch.</param> | ||
20 | public CommandLineOption(string option, string description, int additionalArguments) | ||
21 | { | ||
22 | this.Option = option; | ||
23 | this.Description = description; | ||
24 | this.AdditionalArguments = additionalArguments; | ||
25 | } | ||
26 | } | ||
27 | } | ||