RazorCore contains all the core razor engine implementation RazorDynamicNode contains all the DynamicNode functionality and associated support files
10 lines
321 B
C#
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);
|
|
}
|
|
}
|
|
}
|