質問

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

Thank you.

役に立ちましたか?

解決

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.

他のヒント

This pre-build event works too :

devenv ${ProjectFileName} /Clean
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top