Mercurial > silverbladetech
comparison clean.bat @ 5:877d70fb8176
Added batch files to clean solution
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Mon, 20 Feb 2012 23:07:37 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
4:57f20ba55884 | 5:877d70fb8176 |
---|---|
1 del /s /ah /f *.suo | |
2 del /s /f *.user | |
3 del /s /f *.cache | |
4 del /s /f *.keep | |
5 del /s /ah StyleCop.Cache | |
6 | |
7 rd /s /q bin obj ClientBin _Resharper.* _Upgrade* TestResults | |
8 | |
9 del dirs.txt | |
10 dir /s /b /ad bin > dirs.txt | |
11 dir /s /b /ad obj >> dirs.txt | |
12 dir /s /b /ad ClientBin >> dirs.txt | |
13 dir /s /b /ad _Resharper.* >> dirs.txt | |
14 dir /s /b /ad _Upgrade* >> dirs.txt | |
15 dir /s /b /ad TestResults >> dirs.txt | |
16 | |
17 for /f "delims=;" %%i in (dirs.txt) DO rd /s /q "%%i" | |
18 del dirs.txt |