// Copyright (c) Microsoft Open Technologies, Inc. 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.AspNet.Mvc { /// /// Specifies the contract for discovering assemblies that may contain Mvc specific types such as controllers, /// view components and precompiled views. /// public interface IAssemblyProvider { /// /// Gets the sequence of candidate ies that the application /// uses for discovery of Mvc specific types. /// IEnumerable CandidateAssemblies { get; } } }