RazorEngine icon indicating copy to clipboard operation
RazorEngine copied to clipboard

Open source templating engine based on Microsoft's Razor parsing engine

Results 114 RazorEngine issues
Sort by recently updated
recently updated
newest added

:wave: GitHub disabled TLS 1.0 and TLS 1.1 on February 22nd, which affected Paket and needs to be updated to 5.142 or later. You can read more about this on...

Hi, Is it possible to add redis cache support for the template caching?

up-for-grabs

I tried to format my email content with code below: `List bvtTicket = getBvtTicket(); ` ` Engine.Razor.RunCompile(rawhtml, "testTempKey", typeof(Ticket), bvtTicket); ` It works well in my unit test file, but...

I am encountering a recurring issues where RazorEngine is throwing an ArgumentExceptions during compile. Everything runs fine at first but after the web application runs for a few hours all...

need-info
bug

Hello, I am trying to use this product Highsoft.Web.Mvc.Charts with the RazorEngine, but I am getting this error. **This is the code:** `@(Html.Highsoft().Highcharts( new Highcharts { .... rest of code...

Normally this works: var mapp = new MemoryAppender(); BasicConfigurator.Configure(mapp); ILog logger = LogManager.GetLogger("moduleX"); using (log4net.LogicalThreadContext.Stacks["TestStack"].Push("context")) { logger.Warn("Something happened!"); mapp.GetEvents().Where(x => (string)x.Properties["TestStack"] == "context").ToList().Count.ShouldBe(1); } But as soon as I introduce...

I need to use Kendo Mvc components inside razors on a console app. It works fine without Kendo. ``` @using Kendo.Mvc.UI @using RazorEngine.Host.Console.Helpers ... @(Html.Kendo().Barcode().Name("mascarpone").Value("Mascarpone") .Encoding(BarcodeSymbology.Code128).Width(280).Height(100)) ``` When I try...

I want to have a model class like this: ``` class MyModel { public dynamic Inner { get; set; } } ``` but when i want to use it (e.g....

Inheritance security rules violated by type: 'System.Web.WebPages.Razor.WebPageRazorHost'. Derived types must either match the security accessibility of the base type or be less accessible. **Description**: An unhandled exception occurred during the...

Hello Are you going to support MVC 6.0 for both .NET 4.6 and .NET Core?

feature-request
up-for-grabs