comparison MetroWpf/clean-with-scc.bat @ 15:060f02cd4591

Initial commit, pre airport work
author stevenh7776 stevenhollidge@hotmail.com
date Mon, 12 Mar 2012 23:05:21 +0800
parents
children
comparison
equal deleted inserted replaced
14:741981715d94 15:060f02cd4591
1 del /s /ah /f *.suo
2 del /s /f *.user
3 del /s /f *.cache
4 del /s /f *.scc
5 del /s /f *.vssscc
6 del /s /f *.vspscc
7 del /s /f *.keep
8 del /s /ah /f vssver2.scc
9 del /s /ah StyleCop.Cache
10 del /s /ah .hgignore
11
12 rd /s /q bin obj ClientBin _Resharper.* _Upgrade* TestResults .svn .hg
13
14 del dirs.txt
15 dir /s /b /ad bin > dirs.txt
16 dir /s /b /ad obj >> dirs.txt
17 dir /s /b /ad ClientBin >> dirs.txt
18 dir /s /b /ad _Resharper.* >> dirs.txt
19 dir /s /b /ad _Upgrade* >> dirs.txt
20 dir /s /b /ad TestResults >> dirs.txt
21 dir /s /b /ad .svn >> dirs.txt
22 dir /s /b /ad .hg >> dirs.txt
23
24 for /f "delims=;" %%i in (dirs.txt) DO rd /s /q "%%i"
25 del dirs.txt