26 lines
778 B
C#
26 lines
778 B
C#
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.WebPages;
|
|
using RazorGenerator.Mvc;
|
|
|
|
[assembly: WebActivator.PostApplicationStartMethod(typeof(Disco.Web.App_Start.RazorGeneratorMvcStart), "Start")]
|
|
|
|
namespace Disco.Web.App_Start {
|
|
public static class RazorGeneratorMvcStart {
|
|
public static void Start() {
|
|
var engine = new PrecompiledMvcEngine(typeof(RazorGeneratorMvcStart).Assembly) {
|
|
#if DEBUG
|
|
UsePhysicalViewsIfNewer = true
|
|
#else
|
|
UsePhysicalViewsIfNewer = false
|
|
#endif
|
|
};
|
|
|
|
ViewEngines.Engines.Insert(0, engine);
|
|
|
|
// StartPage lookups are done by WebPages.
|
|
VirtualPathFactoryManager.RegisterVirtualPathFactory(engine);
|
|
}
|
|
}
|
|
}
|