CBTools 1.5.0

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

// Install CBTools as a Cake Tool
#tool nuget:?package=CBTools&version=1.5.0

A collection of Extensions and helpful classes/functions. Subject to change/growth.
Eg.
* IsEven for all number types
* Shuffle for arrays and IEnumerable (recursive shuffle, so may fail on very large lists)
* IsLower, IsNumeric, ToUpper, ToLower etc for char type
* FirstWord, LastWord, Capitalize, etc for string,
* Recursive file finder based on the path of a parent directory
* Read number from Console. Keep prompting until correct
* Write colored lines etc to console.
* Read while not flag (eg '#') for flag controlled while loop
* simple methods for building HTML strings eg. P("Hello world", ("id","hello")) will build <p id="hello">Hello world</p>, supports class and style. This is pretty simple, I just needed something basic, so it's not very fancy and never will be.

And many more.

Product 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. 
.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 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. 
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.5.0 896 2/13/2019
1.4.12 729 1/22/2019
1.4.11 694 1/22/2019
1.4.9 685 1/22/2019
1.4.8 737 1/17/2019
1.4.7 774 1/7/2019
1.4.6 743 12/17/2018
1.4.5 689 12/17/2018
1.4.4 705 12/14/2018
1.4.3 721 12/10/2018
1.4.2 717 12/5/2018
1.4.1 744 11/14/2018
1.3.1 757 10/31/2018
1.2.5 798 10/17/2018
1.2.4 788 10/16/2018
1.2.2 827 10/10/2018
1.2.1 793 10/7/2018
1.2.0 833 10/3/2018
1.1.4 810 10/2/2018
1.1.3 800 10/1/2018
1.1.2 789 9/27/2018
1.1.1 807 9/26/2018
1.1.0 791 9/26/2018
1.0.1 808 9/25/2018
1.0.0 851 9/25/2018

HTML string extensions improved to allow more attributes. This is a breaking change for most HTML string builders, but will allow for far greater flexibility.