I'm using RazorGenerator to Pre-compile my views. I also want to use Global Razor helpers(defined in cshtml files in App_Code directory). However the compilation throws up with the following error
The name 'KarbonHelper' does not exist in the current context
However the intellisense seems to detect the helper methods. I've incorporated Razor pre-compilation as per the following blog Razor Precompilation
Also I notice that the helper file KarbonHelper.cshtml is actually pre-compiled into a .cs file in the expected location
obj\CodeGen\App_Code\KoolHelper.cshtml.cs
Any ideas or suggestions are welcome