From 15f113ddb17708f642fc7afb187d52c0aaf5582d Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 24 May 2016 11:41:29 -0700 Subject: [PATCH] Remove IControllerTypeProvider --- .../Controllers/IControllerTypeProvider.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/Microsoft.AspNetCore.Mvc.Core/Controllers/IControllerTypeProvider.cs diff --git a/src/Microsoft.AspNetCore.Mvc.Core/Controllers/IControllerTypeProvider.cs b/src/Microsoft.AspNetCore.Mvc.Core/Controllers/IControllerTypeProvider.cs deleted file mode 100644 index 7ccc8c2e75..0000000000 --- a/src/Microsoft.AspNetCore.Mvc.Core/Controllers/IControllerTypeProvider.cs +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System.Collections.Generic; -using System.Reflection; - -namespace Microsoft.AspNetCore.Mvc.Controllers -{ - /// - /// Provides methods for discovery of controller types. - /// - public interface IControllerTypeProvider - { - /// - /// Gets a of controller s. - /// - IEnumerable ControllerTypes { get; } - } -} \ No newline at end of file