DynamicRouting.Kentico 12.29.19

Additional Details

Wrong assembly version was published in it

There is a newer version of this package available.
See the version list below for details.
dotnet add package DynamicRouting.Kentico --version 12.29.19
NuGet\Install-Package DynamicRouting.Kentico -Version 12.29.19
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="DynamicRouting.Kentico" Version="12.29.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DynamicRouting.Kentico --version 12.29.19
#r "nuget: DynamicRouting.Kentico, 12.29.19"
#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 DynamicRouting.Kentico as a Cake Addin
#addin nuget:?package=DynamicRouting.Kentico&version=12.29.19

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

DynamicRouting - Kentico Admin ("Mother")

Dynamic Routing for Kentico is a two part system that allows you to automatically handle page requests and route them to certain actions based on the Page Type of the current page. This is done through the automatic generation of Url Slugs that help Kentico identify which Page you are requesting (based on the Url), and Assembly Attribute tags to route that page appropriately.

While the main module consistant of a Kentico "Mother" Nuget package (DynamicRouting.Kentico) and an MVC Nuget Package (DynamicRouting.Kentico.MVC), there is a stand alone MVC package, housed on a separate branch that you can use if you want the Dynamic Routing Attributes without the Automatic Url Slug Generation.

Installation

Installing on the Admin ("Mother")

  1. Install the NuGet Package DynamicRouting.Kentico on your Kentico Admin instance, and run the site.
  2. Go to Modules within Kentico's Interface, edit Dynamic Routing, and go to Sites and add the module to the current site.
  3. If you wish, create Roles and assign the Permissions "Read", "Modify" or "Manage Url Slug" appropriately (Manage Url Slug is needed for users to customize Url Slugs on pages), and assign the Url Slugs UI element under CMS - Adminstration - Content Management - Pages - Edit - Properties - Url Slugs
  4. Configure Settings in Settings - URLs and SEO - Dynamic Routing if needed
  5. Lastly, go to Dynamic Routing UI element → Quick Operations, and click Rebuild Site to generate your Url Slugs for the first time.

Installing on the MVC Site

  1. Install the NuGet Package DynamicRouting.Kentico.MVC on your MVC Site, and run the site.
  2. Configure your RouteConfig.cs (see Project Site for full code)
route = routes.MapRoute(
            name: "DynamicRouting",
            url: "{*url}",
            defaults: new { defaultcontroller = "HttpErrors", defaultaction = "Index" },
            constraints: new { PageFound = new DynamicRouteConstraint() }
        );
        route.RouteHandler = new DynamicRouteHandler();
  1. Add DynamicRouting assembly tags as needed
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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

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
12.29.20 472 2/19/2021
12.29.19 342 2/19/2021
12.29.18 3,627 9/24/2020
12.29.17 611 9/4/2020
12.29.16 2,300 6/15/2020
12.29.15 436 6/12/2020
12.29.11 857 3/30/2020
12.29.9 2,053 2/7/2020
12.29.7 1,392 1/5/2020
12.29.6 1,367 12/18/2019
12.29.5 524 12/3/2019
12.29.4 443 11/29/2019
12.29.3 1,131 11/18/2019
12.29.2 465 11/12/2019
12.29.0 497 11/11/2019
12.0.1 493 11/1/2019
12.0.0 560 10/29/2019

Added Security (Read permissioN) to Quick Operations, fixed Culture bug.