forked from rockyjvec/EasyAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
23 lines (23 loc) · 720 Bytes
/
build.bat
File metadata and controls
23 lines (23 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cd modules/EasyAPI
CALL build.bat
cd ../../
copy /b ^
modules\EasyAPI\EasyAPI.cs +^
modules\EasyUtils\EasyUtils.cs +^
modules\EasyLCD\EasyLCD.cs ^
EasyAPI.lib.cs
echo.> EasyAPI.min.cs
echo.>> EasyAPI.min.cs
echo /*** Ignore minified library code below ***/ >> EasyAPI.min.cs
CSharpMinifier\CSharpMinify --locals --members --types --spaces --regions --comments --namespaces --to-string-methods --enum-to-int --line-length 100000 --skip-compile EasyAPI.lib.cs >> EasyAPI.min.cs
copy /b ^
modules\BootstrapEasyAPI\BootstrapEasyAPI.cs +^
EasyAPI.min.cs ^
EasyAPI.cs
copy /b ^
modules\BootstrapEasyAPI\BootstrapEasyAPI.cs +^
EasyAPI.lib.cs ^
EasyAPI.debug.cs
del EasyAPI.lib.cs
del EasyAPI.min.cs
pause