AK.Commons 1.0.3

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

// Install AK.Commons as a Cake Tool
#tool nuget:?package=AK.Commons&version=1.0.3

This is a general purpose commons library that I've built mostly for my own use within applications that I build (but obviously you are welcome to use it should you choose). The goal is to have an easy-to-use and uniform yet modular and pluggable facility to handle common cross-cutting concerns in my applications, thereby freeing me up to focus on the actual application concerns and hopefully making it easier and faster to build them.
     In general, the library consists of interfaces or SPIs along with ways to access them (using MEF). One can then build implementations for these interfaces (i.e. providers) and hook them up to an application through configuration. What this does for me is provide a uniform way to access these services in all my applications while allowing me to switch or extend providers as I see fit.
     For more detailed information and documentation, please visit the GitHub page for this repository at https://aashishkoirala.github.io/commons. You can find more of my stuff by visiting my page at https://aashishkoirala.github.io/.
     The package is free to download and use. The source code is open and provided under the GPL license.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  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.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 213 12/30/2014
1.0.2 117 12/19/2014
1.0.1 97 12/16/2014
1.0.0 186 12/5/2014
0.1.3 138 11/22/2013
0.1.2 82 8/28/2013
0.1.1 108 7/31/2013

Added property to DomainDrivenUtility for better testability.