I want to edit Razor view during runtime as publish Views or Razor Page .cshtml to Publish folder,
in Asp.net core 2.1 with
<PropertyGroup>
<PreserveCompilationContext>true</PreserveCompilationContext>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
</PropertyGroup>
I could to publish Views and edit it during runtime, but with Asp.net core 3.0 this feature not works for me.
Do you know how publish Views during publish? (I do not want to pack Views in dll file I want RAW .cshtml file.)