I'm using the Razor Engine (razorengine.codeplex.com) in a non-MVC environment. I compile templates that are stored in files and use @inherits
for intellisense support.
- RazorEngine Assembly
- Custom Assembly - references RazorEngine, contains
View<>
and setsView<>
as baseclass - Web application - references RazorEngine, Custom Assembly, contains .cshtml template files
All cshtml files have the following @inherits
directive:
@inherits View<SomeModel>
An error is thrown:
The type of namespace View isn't found, are you missing an assembly reference?
My web.config contains the following entry:
<add namespace="CustomAssembly.NamespaceContainingViewClass" />
I think this has something to do with the other entry <assemblies>
, where my CustomAssembly
isn't mentioned. Is this the case? Can I compile with my custom base class which is contained in another assembly?
p.s. I cannot retrieve a strong name for the assembly because my custom assembly references a 3d party assembly which isn't strongly named either...
Stacktrace:
at RazorEngine.Compilation.DirectCompilerServiceBase.CompileType(TypeContext context)
at RazorEngine.Templating.TemplateService.CreateTemplate(String template, Type modelType)
at RazorEngine.Templating.TemplateService.GetTemplate(String template, Type modelType, String name)
at RazorEngine.Templating.TemplateService.Compile(String template, Type modelType, String name)
at RazorEngine.Razor.Compile(String template, Type modelType, String name)
Razor.Compile
with arguments (one of which is the templatestring containing@inherits
). I've added the stacktrace to the question above. – Petitioner<assemblies>
entry needs to be provided also however this is not possible due to strong naming. I have no publickeytoken to provide... – Petitioner