a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
381 B
C#
17 lines
381 B
C#
namespace System.Web.Mvc {
|
|
|
|
public static class ViewEngines {
|
|
|
|
private readonly static ViewEngineCollection _engines = new ViewEngineCollection {
|
|
new WebFormViewEngine(),
|
|
new RazorViewEngine(),
|
|
};
|
|
|
|
public static ViewEngineCollection Engines {
|
|
get {
|
|
return _engines;
|
|
}
|
|
}
|
|
}
|
|
}
|