Rename builder extension types to have more specific names
This commit is contained in:
parent
fc2019c973
commit
4b18bfb494
|
|
@ -13,7 +13,7 @@ namespace Microsoft.AspNet.Builder
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extension methods for <see cref="IApplicationBuilder"/> to add MVC to the request execution pipeline.
|
/// Extension methods for <see cref="IApplicationBuilder"/> to add MVC to the request execution pipeline.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class BuilderExtensions
|
public static class MvcApplicationBuilderExtensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds MVC to the <see cref="IApplicationBuilder"/> request execution pipeline.
|
/// Adds MVC to the <see cref="IApplicationBuilder"/> request execution pipeline.
|
||||||
|
|
@ -8,7 +8,7 @@ using Microsoft.AspNet.Routing.Constraints;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Builder
|
namespace Microsoft.AspNet.Builder
|
||||||
{
|
{
|
||||||
public static class RouteBuilderExtensions
|
public static class WebApiCompatShimRouteBuilderExtensions
|
||||||
{
|
{
|
||||||
public static IRouteBuilder MapWebApiRoute(
|
public static IRouteBuilder MapWebApiRoute(
|
||||||
this IRouteBuilder routeCollectionBuilder,
|
this IRouteBuilder routeCollectionBuilder,
|
||||||
Loading…
Reference in New Issue