From 4ab067fb37594ee41f39cbd9be6ef276325ece2f Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Wed, 5 Sep 2018 09:27:46 +1200 Subject: [PATCH] Temporarily remove obsolete attribute to unblock build (#775) --- .../DefaultInlineConstraintResolver.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs b/src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs index 1ed1f8e1ab..ad4570a89c 100644 --- a/src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs +++ b/src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs @@ -24,7 +24,8 @@ namespace Microsoft.AspNetCore.Routing /// /// Accessor for containing the constraints of interest. /// - [Obsolete("This constructor is obsolete. Use DefaultInlineConstraintResolver.ctor(IOptions, IServiceProvider) instead.")] + // TODO: Temporarily remove obsolete attribute to unblock build + //[Obsolete("This constructor is obsolete. Use DefaultInlineConstraintResolver.ctor(IOptions, IServiceProvider) instead.")] public DefaultInlineConstraintResolver(IOptions routeOptions) { _inlineConstraintMap = routeOptions.Value.ConstraintMap;