I have a project with multiples folders in it, and I'm trying to exclude one of these folders with a pre-build event from the final build.
My architecture:
Project.Client
|General
| | classes to build
|Entities
| | classes to exclude from the build
| Helpers
| | classes to build
For now I found this command, but it's not really working...
cd $(ProjectDir)
rmdir Entities
Could you please point me to the right direction?