forked from wickyhu/simple-assembly-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prepare.bat
76 lines (51 loc) · 1.87 KB
/
prepare.bat
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@echo off
echo Cleaning ...
call deldir ILSpy\ICSharpCode.Decompiler\obj
call deldir ILSpy\ICSharpCode.Decompiler\bin
call deldir ILSpy\NRefactory\ICSharpCode.NRefactory\obj
call deldir ILSpy\NRefactory\ICSharpCode.NRefactory\bin
call deldir Mono.Cecil\obj
call deldir Mono.Cecil\bin
call deldir SAE.Deobf9RayHelper\obj
call deldir SAE.Deobf9RayHelper\bin
call deldir SAE.EditFile\obj
call deldir SAE.EditFile\bin
call deldir SAE.FileDisassembler\obj
call deldir SAE.FileDisassembler\bin
call deldir SAE.ILMerge\obj
call deldir SAE.ILMerge\bin
call deldir SAE.MethodSearcher\obj
call deldir SAE.MethodSearcher\bin
call deldir SAE.PluginSample\obj
call deldir SAE.PluginSample\bin
call deldir SAE.Reflector\obj
call deldir SAE.Reflector\bin
call deldir SimpleAssemblyExplorer.Core\obj
call deldir SimpleAssemblyExplorer.Core\bin
call deldir SimpleAssemblyExplorer.plugin\obj
call deldir SimpleAssemblyExplorer.plugin\bin
call deldir SimpleProfiler\Debug
call deldir SimpleProfiler\Release
call deldir SimpleProfiler\Win32
call deldir SimpleProfiler\x64
call delfile SimpleProfiler\SimpleProfiler.ncb
call deldir SimpleUtils\obj
call deldir SimpleUtils\bin
call deldir TestProject\obj
call deldir TestProject\bin
call delfile TestProject\Assembly\HWISD_nat.dll
call delfile TestProject\Temp\*.*
call deldir TestSample\obj
call deldir TestSample\bin
call delfile SimpleAssemblyExplorer.ncb
call deldir SimpleAssemblyExplorer\obj
call deldir SimpleAssemblyExplorer\bin\x86
call deldir SimpleAssemblyExplorer\bin\x64
call delfile SimpleAssemblyExplorer\bin\debug\*.*
call delfile SimpleAssemblyExplorer\bin\debug\Plugins\*.*
call deldummy SimpleAssemblyExplorer\bin\Release
echo.
echo Checking Version ...
support\AppVer SimpleAssemblyExplorer\bin\release\SimpleAssemblyExplorer.exe sae.autoupdate.xml
echo.
pause