DotNetAppStarterKit.Core 2.0.0

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

// Install DotNetAppStarterKit.Core as a Cake Tool
#tool nuget:?package=DotNetAppStarterKit.Core&version=2.0.0

Gets you up and going with a DotNet app quicker by providing interfaces for commonly used components such as logging, caching and security.

Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  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.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on DotNetAppStarterKit.Core:

Package Downloads
DotNetAppStarterKit.Web

Gets you up and going with a DotNet app quicker by providing web implementations on the DotNetAppStarterKit.Core interfaces for commonly used components such as logging, caching and security.

DotNetAppStarterKit.Mapping

Gets you up and going with a DotNet app quicker by providing interfaces for commonly used mapping techniques.

DotNetAppStarterKit.Testing.NUnitNSubstituteAutofixture

Gets you up and going with a DotNet app quicker by providing common classes to help with writing automated tests.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 3,648 8/13/2015
1.0.8 2,073 7/24/2015
1.0.7 2,864 11/30/2013
1.0.6 2,975 3/18/2013
1.0.5 2,859 3/12/2013
1.0.4 2,183 2/19/2013
1.0.3 2,706 2/12/2013
1.0.2 2,142 2/12/2013
1.0.1 3,163 1/27/2013
1.0.0 2,182 1/27/2013

* Upgrades to .NET 4.5.1
     * BREAKING CHANGE: Async has been split into it's own interfaces in commands and queries.
     To not break anything just implement IQuery, ICachedQuery and IAsyncQuery or ICommand and IAsyncCommand.
     However a better approach is to have them split, a query or command should either be async or not - choose one instead of implementing both.