RazorEngine
RazorEngine copied to clipboard
Open source templating engine based on Microsoft's Razor parsing engine
We have some legacy code where I need to apply the 'not so safe patch' to handle the problem with isolated context specified [here](https://github.com/Antaris/RazorEngine/issues/585). Unfortunately, I am unable to build...
This issue is to inform everyone that `IsolatedRazorEngineService`, which uses CAS internally, should not be considered 'secure' anymore for various reasons: - [CAS was obsoleted quite a while now](https://docs.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/5.0/code-access-security-apis-obsolete) -...
There's a bug in the renamed file handler: ```csharp void watcher_Renamed(object sender, RenamedEventArgs e) { watcher_Changed(sender, new FileSystemEventArgs(WatcherChangeTypes.Deleted, e.OldFullPath, e.OldName)); watcher_Changed(sender, new FileSystemEventArgs(WatcherChangeTypes.Created, e.FullPath, e.Name)); } ``` The second parameter...
Do you plan to add .NETStandard 2.0 support?
Exception 'Dynamic operations can only be performed in homogenous AppDomain' when I'm trying to use example with layouts. I use RazorEngine 3.10.0. I didn't find a solution for my case,...
I want to fetch list of model keys which are mentioned in the razor file. So how can I fetch the list of keys? My project is based on the...
Hey guys please i have a little question i am using RazorEngine.NetCore in .Net Core 3.1 and when i run Engine.Razor.Compile(key); i get the following error ```Could not load type...
Specifically, I want to use the latest version of the VB compiler so that I can use interpolated strings, as in: $"/sso/guid/{Model.Guid}/{othervariable}")) But by default, RazorEngine throws a compiler error...
Is it possible to configure the location of the temporary files / compiled assemblies? It would be useful to be able to do this for apps that already manage their...
Hi, We are facing a security issue of RazorEngine. Although we can isolate the generated assembly, we still need load those assemblies from file system. Our environment ask that all...