Files
Umbraco-CMS/umbraco.MacroEngines.Juno/RazorCore/RazorUmbracoFactory.cs
agrath@gmail.com 603a12c5a0 Split umbraco.MacroEngines.Juno into two subfolders (namespaces remain the same)
RazorCore contains all the core razor engine implementation
RazorDynamicNode contains all the DynamicNode functionality and associated support files
2011-02-24 16:05:54 -13:00

10 lines
321 B
C#

using System.Web.WebPages.Razor;
namespace umbraco.MacroEngines {
public class RazorUmbracoFactory : WebRazorHostFactory {
public override WebPageRazorHost CreateHost(string virtualPath, string physicalPath) {
return new RazorUmbracoHost(virtualPath, physicalPath);
}
}
}