-
Notifications
You must be signed in to change notification settings - Fork 3
/
clean.cmd
59 lines (50 loc) · 1.69 KB
/
clean.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@echo off
pushd %~dp0Src
rmdir /s /q IronText.Build\bin
rmdir /s /q IronText.Build\obj
rmdir /s /q Tools\IronText.MsBuild\bin
rmdir /s /q Tools\IronText.MsBuild\obj
rmdir /s /q Tools\IronText.MsBuild.Tests\bin
rmdir /s /q Tools\IronText.MsBuild.Tests\obj
rmdir /s /q IronText.Core\bin
rmdir /s /q IronText.Core\obj
rmdir /s /q IronText.Core.Tests\bin
rmdir /s /q IronText.Core.Tests\obj
rmdir /s /q IronText.Compiler\bin
rmdir /s /q IronText.Compiler\obj
rmdir /s /q Tools\MergeDerived\bin
rmdir /s /q Tools\MergeDerived\obj
rmdir /s /q Tools\ImportBnf\bin
rmdir /s /q Tools\ImportBnf\obj
rmdir /s /q Sandbox\IronText.Lib.Stem\bin
rmdir /s /q Sandbox\IronText.Lib.Stem\obj
rmdir /s /q Sandbox\IronText.Lib.Stem.Tests\bin
rmdir /s /q Sandbox\IronText.Lib.Stem.Tests\obj
rmdir /s /q Sandbox\CSharpParser\bin
rmdir /s /q Sandbox\CSharpParser\obj
rmdir /s /q Sandbox\CSharpParser.Tests\bin
rmdir /s /q Sandbox\CSharpParser.Tests\obj
popd
rmdir /s /q Samples\Calculator\bin
rmdir /s /q Samples\Calculator\obj
:: rmdir /s /q Samples\CSharpParser\bin
:: rmdir /s /q Samples\CSharpParser\obj
rmdir /s /q Samples\MyArchiver\bin
rmdir /s /q Samples\MyArchiver\obj
rmdir /s /q Samples\DynamicLinq\bin
rmdir /s /q Samples\DynamicLinq\obj
rmdir /s /q Samples\NestedComments\bin
rmdir /s /q Samples\NestedComments\obj
rmdir /s /q Samples\ImportBnf\bin
rmdir /s /q Samples\ImportBnf\obj
rmdir /s /q Samples\MyConfigParser\bin
rmdir /s /q Samples\MyConfigParser\obj
del /s /q *.user
del /s /q /aH *.suo
del /s /q TestResult.xml
del /s /q *.VisualState.xml
rmdir /s /q %~dp0deploy\lib
rmdir /s /q %~dp0deploy\tools
rmdir /s /q %~dp0deploy\build
for /d %%i in (%~dp0Samples\packages\IronText.*) do rmdir /s /q %%i
del /s /q %~dp0install