forked from sones/sones
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcleanSolution.bat
More file actions
24 lines (24 loc) · 827 Bytes
/
cleanSolution.bat
File metadata and controls
24 lines (24 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
echo Backing up ITestPlugins
md .temp
copy .\Library\External\LuceneDotNet\*.dll .\.temp\*.safe
echo Cleaning Solution...
cd Applications
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\GraphDB
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\GraphDS
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\GraphFS
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\GraphQL
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\Library
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..\Plugins
del /S /Q *.pidb *.dll *.exe *.mdb *.pdb *.FilesWrittenAbsolute.txt
cd ..
echo Restoring ITestPlugins
copy .\.temp\*.safe .\Library\External\LuceneDotNet\*.dll
del .\.temp\*.safe
rd .temp