I am not sure if the subject description is correct but basically this is what I want to achieve:
I want to have a way to delete all binary files such as .exe, .dll to be deleted at a single click. Perhaps there are plugins available that will let me do the same, but just wondering if something like that exists already.
The reason I want to do this is to make sure that all such temporary created files, which aren't usua开发者_开发百科lly needed for versioning a project, are deleted prior to making any commit to the repository.
Under the Build menu, Click Clean Solution.
Or, right click on the solution and Click Clean Solution
Have a look at
What does "Clean Solution" under Build Menu in Visual Studio do ?
How to: Prepare and Manage Builds
well, may be you can do it the manual way . create a batch file called for example Clean.bat
and put in it:
del yoursolutionfolder *.pdb *.exe *.obj /s
and call it whenever you want to clean up the solution.
精彩评论