Question

Is there any way to force Clean action as a Post / Pre build event for single project in Visual Studio?

Thank you.

Was it helpful?

Solution

Yes,

  1. right-click on your project in Solution Explorer and click Properties
  2. go to Build events, then Pre-Build Events
  3. put

    del /F /Q $(TargetDir)*.*

    in command line section.

OTHER TIPS

This pre-build event works too :

devenv ${ProjectFileName} /Clean
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top