分享
 
 
 

自动化每日构建(三)用NAnt来完成.NET工程的每日构建

王朝delphi·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

过去写的文章,不过是英文的。后面有附带的 project.build 文件,你可以用项目的名称替换调******,并且加上代码更新,单元测试等具体内容,就可以做每日构建了。

Start a new .NET project by using Nant

This document has 5 sections:

Brief

System requirement

Directories and files

The Build file

Run Nant

Brief Start a new .NET project by using Nant, so we can make Daily Building. All have to do list below:

1.Install .NET SDK1.0 and new version Nant, and make Nant works.

2.Copy Directories and files from nproject(n for .NET) template library.

3.Make project files stay in the right directory.

4.Edit the project.Build file. Let it fit the project.

5.Run Nant.

System requirement .NET SDK1.0 or higher

Nant 0.84 or higher

Directories and files You can make directories yourself, or copy from template. But make sure the directory tree like this:

Every directory is made for a certain kind of files. Directory names and what kind of files should be put in list below:

Directory Files should be put in Build building files

Data project’s data files

Doc project‘s documents for installation and deploying

Lib libraries project depending on

Res resources project using

Install resources for installation

Src project’ source files

Config project’s configuration files

Database project’s database files

cs project’s c# source code files

Docs project’s documents for manager, developer, tester

Scripts project’s script files

Sql project’s script files for database

Now put the .NET files into the \src\cs directory.

The Build file The build file is \build\project.build. In the template we already have a default build file. Because every project has different name and configuration, so we must edit the build file to suit project. We must edit the project name and path in the build file.

Run Nant After doing that, now start a command-line prompt, change path to .\build, and type nant. We can see a function list like this:

Now Nant runs. We can EDIT the build file to add new features: unit testing, packing, deploying, etc, as you like.

project.build 文件内容:

<?xml version="1.0" ?>

<project default="usage" basedir=".">

<echo message="Using '${nant.settings.currentframework}' framework on '${nant.platform.name}' platform."/>

<!-- =================================================================== -->

<!-- Initialization target -->

<!-- =================================================================== -->

<target name="init">

<!-- You have to fill the ***** space with your project label. -->

<property name="Name" value="*****"/>

<property name="name" value="*****"/>

<property name="version" value="1.0" overwrite="false" />

<echo message="------------------ ${Name}${version} Build ------------------"/>

<property name="s.home" value=".."/>

<property name="s.src" value="${s.home}/src"/>

<property name="s.srccs" value="${s.home}/src/cs"/>

<property name="s.gohome" value="../"/>

<property name="s.lib" value="${s.home}/lib"/>

<property name="s.res" value="${s.home}/res"/>

<property name="s.build" value="${s.home}/build"/>

<property name="s.run" value="${s.home}/run"/>

<property name="s.build.assemble" value="${s.build}/assemble"/>

<property name="s.build.bin" value="${s.build.assemble}/bin"/>

<property name="s.build.debug" value="${s.build.bin}/debug"/>

<property name="s.build.gensrc" value="${s.build.assemble}/gen-src"/>

<property name="s.build.apidocs" value="${s.build}/apidocs"/>

<property name="s.build.lib" value="${s.home}/res"/>

<property name="s.build.release" value="${s.build}/release"/>

<property name="s.build.web" value="${s.build}/web"/>

<property name="s.build.dist" value="${s.build}/dist"/>

<property name="s.main" value="com"/>

<tstamp>

<format property="TODAY" pattern="d-MM-yy"/>

</tstamp>

</target>

<!-- =================================================================== -->

<!-- Help on usage -->

<!-- =================================================================== -->

<target name="usage">

<echo message=""/>

<echo message=""/>

<echo message="***** Build file"/>

<echo message="-------------------------------------------------------------"/>

<echo message=""/>

<echo message=" available targets are:"/>

<echo message=""/>

<echo message=" package --> generates the *****.zip file (default)"/>

<echo message=" compile --> compiles the source code"/>

<echo message=" test --> unit test"/>

<echo message=" release --> build the installation package"/>

<echo message=" deploy --> deploy the application"/>

<echo message=" clean --> cleans up the directory"/>

<echo message=""/>

<echo message=" See the comments inside the *.build file for more details."/>

<echo message="-------------------------------------------------------------"/>

<echo message=""/>

<echo message=""/>

</target>

<!-- =================================================================== -->

<!-- Compiles the source directory -->

<!-- =================================================================== -->

<target name="compile" depends="init">

<mkdir dir="${s.build.bin}"/>

<echo message=""/>

<echo message="Compiling application main source..."/>

<echo message="${s.srccs}/${name}/*.cs"/>

<!-- You may change the compile tasks here. -->

<!-- first compile way: using solution task -->

<solution configuration="release" solutionfile="${s.srccs}/${name}/${name}.sln"

outputdir="${s.build.bin}" />

<!-- second compile way: using csc task for c# file -->

<!--

<csc target="exe" warnaserror="true" debug="${debug}"

output="${s.build.bin}/${name}.exe" >

<sources failonempty="true">

<includes name="${s.srccs}/${name}/*.cs" />

</sources>

</csc>

-->

</target>

<!-- =================================================================== -->

<!-- Creates the zip package -->

<!-- =================================================================== -->

<target name="package" depends="compile">

<!-- You may change the package tasks here. -->

</target>

<!-- =================================================================== -->

<!-- Creates the deploy -->

<!-- =================================================================== -->

<target name="test" depends="compile">

<!-- You may fill the tasks here. -->

</target>

<!-- =================================================================== -->

<!-- Creates the deploy -->

<!-- =================================================================== -->

<target name="deploy" depends="">

<!-- You may fill the tasks here. -->

</target>

<!-- =================================================================== -->

<!-- Build the installation packge -->

<!-- =================================================================== -->

<target name="release" depends="clean">

<!-- You may fill the tasks here. -->

</target>

<!-- =================================================================== -->

<!-- Clean targets -->

<!-- =================================================================== -->

<target name="clean" depends="init">

<delete dir="${s.build.assemble}"/>

<delete dir="${s.build.release}"/>

<!-- You may fill the tasks here. -->

</target>

</project>

<!-- End of file -->

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有