2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / IBuildManager.cs
blobe79c8628c49f799e9c87c6e995a15c62e599b0b8
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
14 using System.Collections;
16 // REVIEW: Should we make this public?
17 internal interface IBuildManager {
18 object CreateInstanceFromVirtualPath(string virtualPath, Type requiredBaseType);
19 ICollection GetReferencedAssemblies();