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