ConsoLovers.ConsoleToolkit.Core
5.2.2
See the version list below for details.
dotnet add package ConsoLovers.ConsoleToolkit.Core --version 5.2.2
NuGet\Install-Package ConsoLovers.ConsoleToolkit.Core -Version 5.2.2
<PackageReference Include="ConsoLovers.ConsoleToolkit.Core" Version="5.2.2" />
paket add ConsoLovers.ConsoleToolkit.Core --version 5.2.2
#r "nuget: ConsoLovers.ConsoleToolkit.Core, 5.2.2"
// Install ConsoLovers.ConsoleToolkit.Core as a Cake Addin
#addin nuget:?package=ConsoLovers.ConsoleToolkit.Core&version=5.2.2
// Install ConsoLovers.ConsoleToolkit.Core as a Cake Tool
#tool nuget:?package=ConsoLovers.ConsoleToolkit.Core&version=5.2.2
Collection of tools for developing console applications.
This package contains the basic funtionality like application handling and command line argument parsing/mapping like the 4.* version of the ConsoLovers.ConsoleToolkit did, but usable for .NetStandard 2.0
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.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 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. 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. |
-
.NETFramework 4.7.2
-
.NETStandard 2.0
-
net6.0
NuGet packages (3)
Showing the top 3 NuGet packages that depend on ConsoLovers.ConsoleToolkit.Core:
Package | Downloads |
---|---|
ConsoLovers.ConsoleToolkit
Toolbox for advanced console applications. The toolbox contains a console menu, a command line argument engine and some other useful console helpers. |
|
ConsoLovers.Toolkit.Ipc.ServerExtension
Simple grpc based inter process communication library using unix domain sockets. |
|
ConsoLovers.Toolkit.ProcessMonitoring.ServerExtension
Simple grpc based inter process communication library using unix domain sockets. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.2.3 | 134 | 6/28/2023 |
5.2.2 | 105 | 5/12/2023 |
5.2.1 | 298 | 12/8/2022 |
5.2.0 | 532 | 12/8/2022 |
5.1.1 | 274 | 11/28/2022 |
5.1.0 | 1,078 | 10/13/2022 |
5.0.0 | 480 | 9/28/2022 |
5.0.0-rc22 | 398 | 9/19/2022 |
4.0.0 | 357 | 8/17/2022 |
4.0.0-rc2 | 112 | 7/30/2022 |
4.0.0-rc1 | 96 | 7/29/2022 |
3.0.0 | 428 | 5/19/2022 |
2.0.0 | 509 | 5/17/2022 |
2.0.0-rc.1 | 105 | 5/17/2022 |
2.0.0-beta3 | 119 | 5/17/2022 |
2.0.0-beta2 | 646 | 12/18/2018 |
2.0.0-beta1 | 505 | 12/16/2018 |
2.0.0-alpha | 507 | 12/15/2018 |
1.0.4 | 950 | 12/12/2018 |
1.0.3 | 1,499 | 9/25/2018 |
1.0.2 | 1,062 | 4/15/2018 |
1.0.1 | 981 | 4/15/2018 |
1.0.0 | 2,536 | 4/11/2018 |
1.0.0-beta1 | 790 | 4/9/2018 |
1.0.0-alpha3 | 763 | 4/9/2018 |
1.0.0-alpha2 | 761 | 4/9/2018 |
5.2.2
- Fixed crash on Console.Clear when output is redirected
5.2.1
- Fixed unicode char set for fixed section
5.2.0
- Added fixed sections
5.1.1
- Workaround for .Net6 change of Environment.CommandLine changes
- Added Clone method to ICommandLineArguments
5.0.0
- Added shut down handling infrastructure
- Improved validation implementation
- Introduced middleware execution pipeline for better customization of userdefined applications
- Introduced IApplicationLogic that is executed by default for applications called without arguments
- Introduced IArgumentReflector that caches all the type information used determined during the run
- Introduced ILocalizationService to be able to replace localization mechanism
- Now using Microsoft.Extensions.DependencyInjection.Abstractions for dependency injection abstraction
to support other dependency injection containers
4.0.0
- Support for internal and private argument classes and properties
- Support nested commands to support more complex applications
- Support for async application and commands
- Added InputBox from console toolkit
3.0.0
- Assembly got a strong name, this normaly should not brake compatibility, but who knows :-)
2.0.0
- Support for .Net6
- Rewrite of command line argument parsing (now from string and not only string[])
- Rewrite of indexed arguments handling.
- Added support for sharing arguments between commands and the application
- Removed IndexedArgument attribute (moved index to ArgumentAttribute)