mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-14 01:25:45 -05:00
-------------- ADD Added cleanup file for deployment. CHG Improved comments to context menu placement - could not remember why I did this in the first place. git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@124 9f600761-6f11-4665-b6dc-0185e9171623
21 lines
475 B
Batchfile
21 lines
475 B
Batchfile
del /s /ah /f *.suo
|
|
del /s /f *.user
|
|
del /s /f *.cache
|
|
del /s /f *.scc
|
|
del /s /f *.vssscc
|
|
del /s /f *.vspscc
|
|
del /s /f *.keep
|
|
del /s /ah /f vssver2.scc
|
|
|
|
rd /s /q bin obj ClientBin _Resharper.* _Upgrade*
|
|
|
|
del dirs.txt
|
|
dir /s /b /ad bin > dirs.txt
|
|
dir /s /b /ad obj >> dirs.txt
|
|
dir /s /b /ad ClientBin >> dirs.txt
|
|
dir /s /b /ad _Resharper.* >> dirs.txt
|
|
dir /s /b /ad _Upgrade* >> dirs.txt
|
|
|
|
for /f "delims=;" %%i in (dirs.txt) DO rd /s /q "%%i"
|
|
del dirs.txt
|