Search code examples
c++visual-studiobuild-events

C++ - Custom build events


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

Thank you.


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.