MVCCaching.Kentico 13.0.0

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

// Install MVCCaching.Kentico as a Cake Tool
#tool nuget:?package=MVCCaching.Kentico&version=13.0.0

MVC Caching

MVC Caching for Kentico MVC 13 (.Net Framework, NOT .net core!), extending the DancingGoat Caching Implementation to allow for easy Caching both of Repository calls, database calls, and Output Caching. Sets up and leverages Kentico's cache dependencies.

Installation for Kentico MVC Site (Quick)

  1. Install the MVCCaching.Kentico NuGet Package to your MVC Site
  2. Add this to your Global.asax.cs's Application_Start
       #region "AutoFac Cache and other dependency injections"

            // Register AutoFac Items
            var autofacBuilder = new ContainerBuilder();

            // Register Dependencies for Cache, pass in any assemblies you wish to hook up
            DependencyResolverConfig.Register(autofacBuilder, new Assembly[] { typeof(ApplicationConfig).Assembly });

            // Set Autofac Dependency resolver to the builder
            DependencyResolver.SetResolver(new AutofacDependencyResolver(autofacBuilder.Build()));

            #endregion
  1. Optionally create an override the GetVaryByCustomString method to your Application (see the sample Globa.asax.cs GetVaryByCustomString method).

Usage

  1. See Documentation.md for full documentation
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 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
13.0.0 7,386 11/13/2020
12.29.5 913 7/9/2020
12.29.4 2,485 5/29/2020
12.29.3 753 4/9/2020
12.29.2 559 3/30/2020
12.29.1 950 3/9/2020
12.29.0 892 9/24/2019
12.0.29 593 9/24/2019
1.0.0 650 9/24/2019

Upgraded to Xperience 13.