-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
33 lines (21 loc) · 991 Bytes
/
build.bat
File metadata and controls
33 lines (21 loc) · 991 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
@echo off
color 66
echo =======================================
echo = AtNet Cms .NET ! 核心程序集生成工具 =
echo =======================================
set dir=%~dp0
set megdir=%dir%\refrence.dll\
if exist "%megdir%merge.exe" (
echo 生成中,请稍等...
cd %dir%bin\
echo /keyfile:%dir%\Source_Code\AtNet.Cms.Core\atnet.cms.snk>nul
"%megdir%merge.exe" /closed /ndebug /targetplatform:v4 /target:dll /out:%dir%dist\atnet.cms.dll^
AtNet.Cms.Core.dll AtNet.Cms.BLL.dll AtNet.Cms.DAL.dll AtNet.Cms.Domain.Interface.dll^
AtNet.Cms.CacheService.dll AtNet.Cms.DataTransfer.dll AtNet.Cms.Domain.Implement.Content.dll^
AtNet.Cms.DB.dll AtNet.Cms.Cache.dll AtNet.Cms.Domain.Implement.Site.dll AtNet.Cms.Infrastructure.dll ^
AtNet.Cms.Service.dll AtNet.Cms.ServiceContract.dll^
AtNet.Cms.ServiceUtil.dll AtNet.Cms.ServiceRepository.dll AtNet.Cms.IDAL.dll^
AtNet.Cms.Sql.dll AtNet.Cms.Utility.dll StructureMap.dll AtNet.Cms.Web.dll
echo 完成!输出到:%dir%dist\atnet.cms.dll
)
pause