Question
How to stop the localized Microsoft.CodeAnalysis.*.resources.dll files from getting published by ASP.NET Core?
When I publish an ASP.NET Core 3.0 project, I get a few localized folders where the 4 assemblies shown are in each of these folders. I am not sure why these folders and files get included. None of my packages reference a CodeAnalysis
package.
I added <PreserveCompilationContext>false</PreserveCompilationContext>
in the csproj file but it didn't help. Is there a way to exclude them?