TaskDialogLibrary 1.0.1

dotnet add package TaskDialogLibrary --version 1.0.1
NuGet\Install-Package TaskDialogLibrary -Version 1.0.1
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="TaskDialogLibrary" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TaskDialogLibrary --version 1.0.1
#r "nuget: TaskDialogLibrary, 1.0.1"
#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 TaskDialogLibrary as a Cake Addin
#addin nuget:?package=TaskDialogLibrary&version=1.0.1

// Install TaskDialogLibrary as a Cake Tool
#tool nuget:?package=TaskDialogLibrary&version=1.0.1

.NET Core 6 TaskDialog

When an application requires a message to be display or to ask a user questions the common method is to use a MessageBox.

A standard message box with its many overloads for Show method is fine for simply displaying and asking for input (without a input/textbox) while the TaskDialog provides more flexibilities. With these flexibilities comes more code which can be placed into a separate class in a project or better, place code into a separate class project. To use the class project, add a reference to a project or create a NuGet local package and install the package in any project.

Include are several methods to ask a question, display information and a dialog to ask a question with a time-out.

For full documentation see the following repository which has many more examples which were not placed here to keep this library simple.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows 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.1 942 8/28/2022
1.0.0 882 8/27/2022

Changed title in readme file