-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean.bat
More file actions
32 lines (21 loc) · 703 Bytes
/
clean.bat
File metadata and controls
32 lines (21 loc) · 703 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
25
26
27
28
29
30
31
del .\AssemblyLongName\bin\*.* /S/Q
del .\AssemblyLongName\obj\*.* /S/Q
del .\AssemblySample\bin\*.* /S/Q
del .\AssemblySample\obj\*.* /S/Q
del .\AssemblyInterface\bin\*.* /S/Q
del .\AssemblyInterface\obj\*.* /S/Q
del .\ChargementReflexion\Bin\*.* /S/Q
del .\ChargementReflexion\obj\*.* /S/Q
del .\ChargementInstance\Bin\*.* /S/Q
del .\ChargementInstance\obj\*.* /S/Q
rd .\AssemblySample\bin /S/Q
rd .\AssemblySample\obj /S/Q
rd .\AssemblyLongName\bin /S/Q
rd .\AssemblyLongName\obj /S/Q
rd .\AssemblyInterface\bin /S/Q
rd .\AssemblyInterface\obj /S/Q
rd .\ChargementReflexion\Bin /S/Q
rd .\ChargementReflexion\obj /S/Q
rd .\ChargementInstance\Bin /S/Q
rd .\ChargementInstance\obj /S/Q
pause