I'm using CSLA framework with dot net core 2.0.
When I do publish (dotnet publish -c Release -r ...
) using Release configuration additional folders (tr, sv, sr) to name few of them, contains Csla.Resources.dll and they are copied in output publish folder ( ~/bin/Release/netcoreapp2.0/centos.7-x64/publish).
How to exclude these folders (with the file) or delete them from publish folder, once when dotnet publish
finish executing?
Note
File "Csla.resources.dll" doesn't exist before deploy process start.
It will be generated when dotnet publish
started.