Unlimitedinf.Tools 3.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
Suggested Alternatives

Unlimitedinf.Utilities

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

// Install Unlimitedinf.Tools as a Cake Tool
#tool nuget:?package=Unlimitedinf.Tools&version=3.7.0

A collection of tools I have found useful across more than one project. This nuget package will contain all the items (both C# and otherwise) that don't fit into any of my other packages.

See source README for full explanation.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Unlimitedinf.Tools:

Package Downloads
Unlimitedinf.Apis The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Client-side libraries to work with the apis made available on https://unlimitedinf-apis.azurewebsites.net/ There is one DLL available defining the contracts used to communicate with the server as well as an EXE in the tools folder that wraps it for commandline interactions. The EXE can also be used as a reference because it is well separated into client-side libraries and runnable infrastructure.

Unlimitedinf.Apis.Client The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A client for the apis. The exe can also be used as a consumable library.

Unlimitedinf.Apis.Contracts The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The C# contracts used by the APIs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.7.0 1,361 6/5/2018
3.6.3 1,238 3/27/2018
3.6.2 1,303 1/31/2018
3.6.1 1,249 1/24/2018
3.6.0 1,328 1/16/2018
3.5.2 1,304 12/29/2017
3.5.1 1,292 12/24/2017
3.5.0 1,303 12/8/2017
3.4.0 1,158 10/3/2017
3.3.0 1,127 10/2/2017
3.2.5 1,157 9/19/2017
3.2.4 1,185 9/1/2017
3.2.3 1,198 8/14/2017
3.2.2 1,373 8/10/2017
3.2.0 1,166 8/3/2017
3.1.0 1,185 7/3/2017
3.0.7 1,221 5/17/2017
3.0.6 1,251 4/12/2017
3.0.5 1,196 4/6/2017
3.0.4 1,225 3/22/2017
3.0.3 1,215 3/13/2017
3.0.2 1,229 3/13/2017
3.0.1 1,193 3/9/2017
2.1.0 1,233 2/28/2017
2.0.1 1,222 2/25/2017
2.0.0 1,260 2/24/2017
1.2.0 1,229 2/12/2017
1.1.13 1,239 2/10/2017
1.1.9 1,212 2/8/2017
1.1.8 1,268 1/2/2017
1.1.7 1,244 1/1/2017
1.1.6 1,213 12/31/2016
1.1.5 1,174 12/31/2016
1.1.3 1,238 11/28/2016
1.0.1 1,209 11/9/2016
1.0.0 1,599 11/9/2016
0.5.0 1,530 11/9/2016
0.4.0 1,411 11/8/2016
0.3.1 1,241 9/11/2016
0.3.0 1,237 9/11/2016
0.2.0 1,459 9/8/2016
0.1.0 1,442 9/1/2016

3.7.0
 - Added Log.GetILogger for net47 flavor to get an ILogger out of the Log class.

3.6.3
 - Added Log.VerLine to break up verbose printing and not impact non-verbose printing.

3.6.2
 - Enable Cog and Log to take an object and run it through the default JsonConvert.SerializeObject method from Netwonsoft.Json.

3.6.1
 - Add Cog for Colorized Log output.

3.6.0
 - Added Cards and CardHelpers

3.5.*
 - Convert to dotnet CLI. It looks like https://github.com/dotnet/corefx/issues/14529 will bring in the cache pieces missing, but the use of Image for blockhash presents a different problem.
 - Log needed a way to write an empty line.
 - Added Log.LikeATypewriter out of boredom.

3.4.0
 - Added basic math expression parsing.

3.3.0
 - Added net47 version.

3.2.*
 - Default log configuration method updated after mood swing.
 - Method added to log for default configuration.
 - Bugfix to Log.
 - Enhancements to Log.
 - Added Log to provide the custom logging that I tend to use across all my projects.
 - Added FileSystemCollection to enumerate files/directories with an enumerable that gracefully ignores exceptions thrown during usage.

3.0.*
 - Reuse the RNGCryptoServiceProvider in GenerateRandom for a security and performance increase.
 - Added in StringExtensions: ToBase64String, FromBase64String, Chop
 - Fixed a bug in TryParseRelativeDateTime that threw instead of returned false for above int.Max. Now will only throw for above long.MaxValue.
 - Added builds for net40, net45, net46, and latest.
 - Fixed a bug in String.TrypParseRelativeDateTime that could throw an ArgumentOutOfRangeException.
 - Added the String.GetHashCode* methods because they're easier to consume.
 - Added new String.GetHashCode extension.
 - Broke apart the original package based on dependencies.
 - Remove t4 templating artifacts because powershell is much easier to work with.
 - Other vaious tune-ups and changes all over.