From 7f38773531140f1b670e03e61ddf4ce09b1e8701 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Tue, 5 Jan 2016 11:49:44 -0800 Subject: [PATCH] React to breaking change in routing --- src/Microsoft.AspNet.Mvc.Core/Routing/AttributeRoute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Routing/AttributeRoute.cs b/src/Microsoft.AspNet.Mvc.Core/Routing/AttributeRoute.cs index 500cd5c470..ae48e99f6a 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Routing/AttributeRoute.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Routing/AttributeRoute.cs @@ -141,7 +141,7 @@ namespace Microsoft.AspNet.Mvc.Routing RouteTemplate = TemplateParser.Parse(routeInfo.RouteTemplate), TemplateMatcher = new TemplateMatcher( routeInfo.ParsedTemplate, - new Dictionary(StringComparer.OrdinalIgnoreCase) + new RouteValueDictionary(StringComparer.OrdinalIgnoreCase) { { TreeRouter.RouteGroupKey, routeInfo.RouteGroup } }),