diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-06 15:49:09 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:37:14 -0700 |
commit | 3fb889ab7aa3cb0dfae23e0379e28552e919ad72 (patch) | |
tree | 573a4bc2677a3db1adcdf1a508b8a32ed4c796a8 /src/WixToolset.Core/CommandLine/VersionCommand.cs | |
parent | 703546818ada54faa0bac33441370291b8e4bf6b (diff) | |
download | wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.tar.gz wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.tar.bz2 wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.zip |
Integrate change to TryParseCommand and other code cleanup
Diffstat (limited to 'src/WixToolset.Core/CommandLine/VersionCommand.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/VersionCommand.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/WixToolset.Core/CommandLine/VersionCommand.cs b/src/WixToolset.Core/CommandLine/VersionCommand.cs index 1baee72d..50e90a93 100644 --- a/src/WixToolset.Core/CommandLine/VersionCommand.cs +++ b/src/WixToolset.Core/CommandLine/VersionCommand.cs | |||
@@ -1,4 +1,4 @@ | |||
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. | 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 | 2 | ||
3 | namespace WixToolset.Core.CommandLine | 3 | namespace WixToolset.Core.CommandLine |
4 | { | 4 | { |
@@ -20,9 +20,6 @@ namespace WixToolset.Core.CommandLine | |||
20 | return 0; | 20 | return 0; |
21 | } | 21 | } |
22 | 22 | ||
23 | public bool TryParseArgument(ICommandLineParser parseHelper, string argument) | 23 | public bool TryParseArgument(ICommandLineParser parseHelper, string argument) => true; // eat any arguments |
24 | { | ||
25 | return true; // eat any arguments | ||
26 | } | ||
27 | } | 24 | } |
28 | } | 25 | } |