CommandLineFluent 2.0.0
See the version list below for details.
dotnet add package CommandLineFluent --version 2.0.0
NuGet\Install-Package CommandLineFluent -Version 2.0.0
<PackageReference Include="CommandLineFluent" Version="2.0.0" />
paket add CommandLineFluent --version 2.0.0
#r "nuget: CommandLineFluent, 2.0.0"
// Install CommandLineFluent as a Cake Addin #addin nuget:?package=CommandLineFluent&version=2.0.0 // Install CommandLineFluent as a Cake Tool #tool nuget:?package=CommandLineFluent&version=2.0.0
Big rework from version 1.7.3! Breaking changes abound! See the readme.md located at the github page for full details. To migrate, more detailed instructions are located in the readme.md located at the github page.
- Most classnames are the same. The most apparently change is that FluentParser and FluentParserBuilder are now CliParser and CliParserBuilder.
- The syntax to set up build a parser is pretty much the same too. The biggest difference is that instead of calling e.g. .AddOption<int>(shortname, longname), you call .AddOptionInt(shortname, longname, configAction). All arguments can have names too.
- And also, Validation has been removed. Instead, use a Converter, since practically, they cover both Conversion and Validation.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.6.0 | 952 | 11/15/2021 |
2.5.0 | 1,030 | 6/8/2021 |
2.4.1 | 391 | 5/23/2021 |
2.4.0 | 375 | 4/29/2021 |
2.3.3 | 387 | 11/26/2020 |
2.3.2 | 403 | 11/17/2020 |
2.3.1 | 440 | 11/9/2020 |
2.3.0 | 495 | 10/30/2020 |
2.2.1 | 437 | 9/24/2020 |
2.2.0 | 427 | 9/23/2020 |
2.1.1 | 467 | 9/11/2020 |
2.1.0 | 488 | 8/29/2020 |
2.0.2 | 477 | 8/23/2020 |
2.0.1 | 425 | 8/21/2020 |
2.0.0 | 440 | 8/19/2020 |
1.7.3 | 624 | 2/23/2020 |
1.7.2 | 507 | 12/3/2019 |
1.7.1 | 501 | 11/15/2019 |
1.7.0 | 491 | 11/14/2019 |
1.6.0 | 528 | 10/31/2019 |
1.5.0 | 505 | 10/24/2019 |
1.4.0 | 516 | 10/16/2019 |
1.3.0 | 528 | 10/15/2019 |
1.2.0 | 512 | 10/3/2019 |
1.1.0 | 518 | 9/17/2019 |
Big rework from version 1.7.3! Breaking changes abound!
To migrate, see the readme.md located at the github page.
Most classnames are the same. The most apparently change is that FluentParser and FluentParserBuilder are now CliParser and CliParserBuilder.
The syntax to set up build a parser is pretty much the same too. The biggest difference is that instead of calling e.g. .AddOption<int>(shortname, longname), you call .AddOptionInt(shortname, longname, configAction). All arguments can have names too.
And also, Validation has been removed. Instead, use a Converter, since practically, they cover both Conversion and Validation.
See the readme.md located at the github page for full details.