views:

30

answers:

1

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

Thank you.

+1  A: 

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.

MBZ
Hm, nice. In my case this would be $(IntDir) actually, but thanks a lot
HardCoder1986