MvcCodeRouting 0.9.4

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

// Install MvcCodeRouting as a Cake Tool
#tool nuget:?package=MvcCodeRouting&version=0.9.4

MvcCodeRouting for ASP.NET MVC analyzes your controllers and actions and automatically creates the best possible routes for them.
        Organize your controllers and views using namespaces (no more areas) that can go as deep as you want.
        Includes support for hierarchical (a.k.a. RESTful) and also user-defined custom routes (using an attribute).
        It also supports embedded views (as assembly resources) that can be individually overriden by file views.
        MvcCodeRouting is a single unified solution that provides namespace-aware automatic route creation, URL generation and views location.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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.3.0 2,001 10/9/2014
1.2.0 961 1/7/2014
1.1.1 114 11/18/2013
1.1.0 506 3/28/2013
1.0.2 66 11/18/2012
1.0.1 52 10/14/2012
1.0.0 51 9/22/2012
0.9.8 63 6/10/2012
0.9.7 48 5/12/2012
0.9.6 46 4/10/2012
0.9.5 48 3/5/2012
0.9.4 48 1/9/2012
0.9.3 50 12/23/2011
0.9.2 51 11/15/2011
0.9.1 50 9/26/2011
0.9.0 54 5/28/2011
0.8.3 56 4/28/2011
0.8.2 60 3/17/2011
0.8.1.487 98 2/22/2011

- Added CodeRoutingSettings constructor that takes another CodeRoutingSettings instance to copy the settings from.
        - Added TokenName property to FromRouteAttribute.
        - CodeRoutingConstraint parameter name renamed to __routecontext.
        - Ambiguous route check now done on actions just created and not all registered actions. This allows you to override routes.
        - Added UseImplicitIdToken setting, useful for existing applications that only use a generic {controller}/{action}/{id} route.
        - Case-only constraint on action segment formatting removed, now SomeAction can be formatted as Some-Action, or some_action, etc.

        Breaking changes:
        - ~controller syntax now matches routes in the same baseRoute.