With previous MVC/ASP.NET when deployed code the resx files were deployed non-compiled and was able to modify the key,values and changes were reflected. With ASP.NET Core 2+ I noticed resx get compiled into dll.
I edited .csproj with
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\*" CopyToPublishDirectory="Always" />
</ItemGroup>
After editing the .csproj and redeploy, the Resource folder and resx files are there, but when I edit on the server in notepad the edits are not reflecting. Seems like it is still required to be compiled.
Any way to set so that the resx files can be updated without compiling? or is there a different approach in asp.net core 2?
