PromptPlusCommandDotNet 1.0.0.333

dotnet add package PromptPlusCommandDotNet --version 1.0.0.333
NuGet\Install-Package PromptPlusCommandDotNet -Version 1.0.0.333
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PromptPlusCommandDotNet" Version="1.0.0.333" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PromptPlusCommandDotNet --version 1.0.0.333
#r "nuget: PromptPlusCommandDotNet, 1.0.0.333"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PromptPlusCommandDotNet as a Cake Addin
#addin nuget:?package=PromptPlusCommandDotNet&version=1.0.0.333

// Install PromptPlusCommandDotNet as a Cake Tool
#tool nuget:?package=PromptPlusCommandDotNet&version=1.0.0.333

Welcome to PromptPlus

Interactive command-line toolkit for C# with powerful controls and commands. PromptPlus was developed in c# with the **netstandard2.1, .NET 5 AND .NET6 ** target frameworks.

All controls input/filter using GNU Readline Emacs keyboard shortcuts.

PromptPlus has separate pakage integrate command line parse CommandDotNet(4.3.0/5.0.1):

  • PromptPlus.CommandDotNet

Official pages :

Visit the PromptPlus official page for complete documentation
Visit the CommandDotNet official page for complete documentation

PromptPlus.CommandDotNet - Sample Usage

public class Program
{
    static int Main(string[] args)
    {
        CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US");
        CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-US");

        PromptPlus.ConsoleDefaultColor(ConsoleColor.White, ConsoleColor.Black);
        PromptPlus.Clear();

        return new AppRunner<Examples>()
            .UseDefaultMiddleware()
            .UsePrompter()
            .UseNameCasing(Case.KebabCase)
            .UsePromptPlusAnsiConsole()
            .UsePromptPlusArgumentPrompter()
            .UsePromptPlusWizard()
            .UsePromptPlusRepl(colorizeSessionInitMessage: (msg) => msg.Yellow().Underline())
            .Run(args);
    }
}
//for usage AppRunner see https://commanddotnet.bilal-fazlani.com/

PromptPlus Controls - Sample Usage

//ASCII text banners
PromptPlus.Banner("PromptPlus")
    .Run(ConsoleColor.Green);

//MaskEdit Generic
var mask = PromptPlus.MaskEdit(MaskedType.Generic, "Inventory Number")
    .Mask(@"\XYZ 9{3}-L{3}-C[ABC]N{1}[XYZ]-A{3}")
    .Run(_stopApp);

if (mask.IsAborted)
{
    return;
}
if (string.IsNullOrEmpty(mask.Result.Value))
{
    Console.WriteLine($"your input was empty!");
}
else
{
    Console.WriteLine($"your input was {mask.Result.ObjectValue}!");
}

//AnyKey
var key = PromptPlus.KeyPress()
        .Run(_stopApp);

if (key.IsAborted)
{
    return;
}
Console.WriteLine($"Hello, key pressed");

Supported platforms

  • Windows
    • Command Prompt, PowerShell, Windows Terminal
  • Linux (Ubuntu, etc)
    • Windows Terminal (WSL 2)
  • macOS
    • Terminal.app

License

This project is licensed under the MIT License

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0.333 274 2/26/2023
1.0.0.332 195 2/24/2023
1.0.0.331 210 2/23/2023
1.0.0.330 200 2/22/2023
1.0.0.322 203 2/16/2023
1.0.0.321 219 2/14/2023
1.0.0.320 262 1/20/2023
1.0.0.310 268 1/16/2023
1.0.0.300 329 1/28/2022