Change Visual Studio Clean Solution option

As a post-build event for some of my projects, I have documentation copied from directories, such as bin \ Project \ Debug, to the central doc \ directory in the root directory of my solution. When I make a "Clean Solution", I know that bin \ and obj \ files are deleted, but I would like another event to happen to remove cruft from my own doc \ directory. Is there a way by which I can connect to the Clean Solution event to run my own post-clean code? Perhaps a macro? I am using Visual Studio 2008 Team System.

+3
source share
2 answers

See this blog post (and the one it refers to) for being after http://blogs.msdn.com/msbuild/archive/2005/11/23/496396.aspx

+3
source

Source: https://habr.com/ru/post/1728188/


All Articles