forked from ixre/devfw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
57 lines (16 loc) · 694 Bytes
/
build.bat
File metadata and controls
57 lines (16 loc) · 694 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
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
@echo off
color 66
echo =======================================
echo = 代码合并工具 github.com/atnet/devfw =
echo =======================================
set dir=%~dp0
set megdir=%dir%\dll\
if exist "%megdir%merge.exe" (
echo 生成中,请稍等...
cd %dir%dist\dll\
echo /keyfile:%dir%ops.cms.snk>nul
"%megdir%merge.exe" /closed /log:%dir%dist\build_log.txt /ndebug /targetplatform:v4 /target:dll /out:%dir%dist\atnet.devfw.dll^
AtNet.DevFw.Core.dll AtNet.DevFw.PluginKernel.dll AtNet.DevFw.Data.dll AtNet.DevFw.Template.dll AtNet.DevFw.Web.dll AtNet.DevFw.Toolkit.Data.dll
echo 完成!输出到:%dir%dist\atnet.devfw.dll
)
pause