Jannik
Jannik
It seems to be the same issue. I am also using the player. I tried it without the nuget and with the latest source code directly, didn't help. This is...
I disabled the Live Player as described in the stackoverflow question. Its working, so thats a workaround for now.
> Until we add the api, there is a way to do this, but it does require quite a bit of boiler plate code. You need to have a custom...
The less mistakes a developer can make, the better. Everything you need to do or think about manually, people WILL make mistakes. Thank you, looking forward to it!
Should be fixed with backtransfers, right @andrei-marinica?
Still not working :( Need a fix for this.
> > > Did you implemented the changes above? > > Basically you only need to change (line#242) : > `compilation.Emit(assemblyStream, pdbStreamHelper, options: opts)` > to > `compilation.Emit(assemblyStream)` > >...
See my previous comment. :) > I am on RazorLight now. It has other downsides, but it atleast fixed my problem for the moment.
Having the same issue. I have to comment out the inherits-line when releasing my razor-views and comment it in again to design the views. A workaround for me would be...
Temporary workaround (apply before compiling): ```cs var regex = new Regex("^(\\s*@inherits.*)$", RegexOptions.Multiline); parsableTemplate = regex.Replace(parsableTemplate, string.Empty); ```