Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 538cd9c

Browse files
committed
Move less-commonly used types out of .Rendering
1 parent 046cb97 commit 538cd9c

File tree

224 files changed

+341
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+341
-186
lines changed

src/Microsoft.AspNet.Mvc.Core/CreatedAtActionResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
using System;
55
using System.Collections.Generic;
66
using Microsoft.AspNet.Http;
7-
using Microsoft.AspNet.Mvc.Actions;
87
using Microsoft.AspNet.Mvc.Core;
8+
using Microsoft.AspNet.Mvc.Routing;
99
using Microsoft.Framework.DependencyInjection;
1010
using Microsoft.Framework.Internal;
1111
using Microsoft.Net.Http.Headers;

src/Microsoft.AspNet.Mvc.Core/CreatedAtRouteResult.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using Microsoft.AspNet.Http;
77
using Microsoft.AspNet.Mvc.Actions;
88
using Microsoft.AspNet.Mvc.Core;
9+
using Microsoft.AspNet.Mvc.Routing;
910
using Microsoft.Framework.DependencyInjection;
1011
using Microsoft.Framework.Internal;
1112
using Microsoft.Net.Http.Headers;

src/Microsoft.AspNet.Mvc.Core/IUrlHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4+
using Microsoft.AspNet.Mvc.Routing;
45
using Microsoft.Framework.Internal;
56

67
namespace Microsoft.AspNet.Mvc

src/Microsoft.AspNet.Mvc.Core/MvcCoreMvcOptionsSetup.cs renamed to src/Microsoft.AspNet.Mvc.Core/Internal/MvcCoreMvcOptionsSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.AspNet.Mvc.ModelBinding.Validation;
1010
using Microsoft.Framework.OptionsModel;
1111

12-
namespace Microsoft.AspNet.Mvc
12+
namespace Microsoft.AspNet.Mvc.Internal
1313
{
1414
/// <summary>
1515
/// Sets up default options for <see cref="MvcOptions"/>.

src/Microsoft.AspNet.Mvc.Core/MvcCoreRouteOptionsSetup.cs renamed to src/Microsoft.AspNet.Mvc.Core/Internal/MvcCoreRouteOptionsSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.AspNet.Routing;
66
using Microsoft.Framework.OptionsModel;
77

8-
namespace Microsoft.AspNet.Mvc
8+
namespace Microsoft.AspNet.Mvc.Internal
99
{
1010
/// <summary>
1111
/// Sets up MVC default options for <see cref="RouteOptions"/>.

src/Microsoft.AspNet.Mvc.Core/RedirectResult.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
using System;
55
using Microsoft.AspNet.Mvc.Core;
6+
using Microsoft.AspNet.Mvc.Routing;
7+
using Microsoft.AspNet.Mvc.ViewFeatures;
68
using Microsoft.Framework.DependencyInjection;
79
using Microsoft.Framework.Internal;
810

src/Microsoft.AspNet.Mvc.Core/RedirectToActionResult.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
using System.Collections.Generic;
66
using Microsoft.AspNet.Mvc.Actions;
77
using Microsoft.AspNet.Mvc.Core;
8+
using Microsoft.AspNet.Mvc.Routing;
9+
using Microsoft.AspNet.Mvc.ViewFeatures;
810
using Microsoft.Framework.DependencyInjection;
911
using Microsoft.Framework.Internal;
1012

src/Microsoft.AspNet.Mvc.Core/RedirectToRouteResult.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.AspNet.Mvc.Actions;
76
using Microsoft.AspNet.Mvc.Core;
7+
using Microsoft.AspNet.Mvc.Routing;
8+
using Microsoft.AspNet.Mvc.ViewFeatures;
89
using Microsoft.Framework.DependencyInjection;
910
using Microsoft.Framework.Internal;
1011

src/Microsoft.AspNet.Mvc.Core/UrlActionContext.cs renamed to src/Microsoft.AspNet.Mvc.Core/Routing/UrlActionContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.AspNet.Mvc
4+
namespace Microsoft.AspNet.Mvc.Routing
55
{
66
/// <summary>
77
/// Context object to be used for the URLs that <see cref="IUrlHelper.Action(UrlActionContext)"/> generates.

src/Microsoft.AspNet.Mvc.Core/UrlHelper.cs renamed to src/Microsoft.AspNet.Mvc.Core/Routing/UrlHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.AspNet.Routing;
1010
using Microsoft.Framework.Internal;
1111

12-
namespace Microsoft.AspNet.Mvc
12+
namespace Microsoft.AspNet.Mvc.Routing
1313
{
1414
/// <summary>
1515
/// An implementation of <see cref="IUrlHelper"/> that contains methods to

0 commit comments

Comments
 (0)