Basic .Net Assembly Build Script:
<?xml version="1.0" encoding="utf-8" ?><project xmlns="http://nant.sf.net/release/0.86-beta1/nant.xsd" name="Company.Portal.Domain" default="build"><property name="debug" value="false" /><property name="optimize" value="true"/><property name="bin_name" value="${project::get-name()}.dll" /><property name="nant.settings.currentframework" value="net-2.0"/><property name="output_bin" value="build\${bin_name} "/><property name="build_path" value="..\build\" /><property name="build_bin" value="${build_path}${bin_name}"/><target name="clean" description="Cleans the build folder which forces a rebuild."><delete dir="build" if="${directory::exists('build')}" /></target><target name="debug" description="Specifies assembly to be compiled with debug symbols."><property name="debug" value="true" overwrite="true" /><call target="build"/><copy file="build\${project::get-name()}.pdb" todir="${build_path}" overwrite="true" /></target><target name="build" description="Compiles assembly."><mkdir dir="build" if="${not directory::exists('build')}" /><csc target="library" output="${output_bin}" debug="${debug}" optimize="${optimize}" ><sources><include name="**\*.cs" /></sources><references><include name="..\lib\*.dll" /><include name="${build_path}*.dll"/><exclude name="${build_bin}"/></references><resources dynamicprefix="true" prefix="${project::get-name()}"><include name="**\*.hbm.xml" /></resources></csc><mkdir dir="${build_path}" if="${not directory::exists(build_path)}" /><copy file="${output_bin}" todir="${build_path}" overwrite="true" /><copy file="${output_bin}" todir="..\bin" overwrite="true" /></target></project>
Basic ASP.Net NAnt Script
<?xml version="1.0" encoding="utf-8" ?><project xmlns="http://nant.sf.net/release/0.86-beta1/nant.xsd" name="Company.Portal.Web" default="build"><property name="debug" value="false" /><property name="optimize" value="true"/><property name="bin_name" value="${project::get-name()}.dll" /><property name="output_bin" value="build\${bin_name} "/><property name="build_path" value="..\build\" /><property name="build_bin" value="${build_path}${bin_name}"/><property name="nant.settings.currentframework" value="net-2.0"/><property name="web_path" value="..\web\"/><property name="web_bin_path" value="${web_path}bin"/><target name="clean" description="Cleans the build folder which forces a rebuild."><delete dir="build" if="${directory::exists('build')}" /><delete dir="${web_path}" if="${directory::exists(web_path)}" failonerror="false" /></target><target name="debug" description="Specifies assembly to be compiled with debug symbols."><property name="debug" value="true" overwrite="true" /><call target="build"/><copy file="build\${project::get-name()}.pdb" todir="${build_path}" overwrite="true" /></target><target name="build" description="Compiles assembly."><mkdir dir="build" if="${not directory::exists('build')}" /><csc target="library" output="${output_bin}" debug="${debug}" optimize="${optimize}" ><sources><include name="**\*.cs" /><include name="**\*.resx" /></sources><references><include name="..\lib\*.dll" /><include name="${build_path}*.dll"/><exclude name="${build_bin}"/></references>
</csc><copy file="${output_bin}" todir="${build_path}" overwrite="true" /><copy file="${output_bin}" todir="..\bin" overwrite="true" /><!-- Setup Web Site --><mkdir dir="${build_path}" if="${not directory::exists(build_path)}" /><mkdir dir="${web_path}" if="${not directory::exists(web_path)}" /><mkdir dir="${web_bin_path}" if="${not directory::exists(web_bin_path)}" /><copy todir="${web_bin_path}" overwrite="true"><fileset basedir="${build_path}"><include name="*.dll"/></fileset></copy><copy todir="${web_bin_path}" overwrite="true"><fileset basedir="..\lib\"><include name="*.dll"/></fileset></copy><copy todir="${web_path}" overwrite="true"><fileset><include name="**.ascx"/><include name="**.aspx"/><include name="**.master"/><include name="**.config"/><include name="Config\**"/><include name="IMG\**"/><include name="App_Themes\**"/></fileset></copy></target></project>
Setup:
- Install NAnt (your bin dir will likely be C:\Program Files\nant-0.86\bin)
- Add NAnt bin directory to your path environmental variable so you can use nant from command-line interface anywhere
- Right-click "My Computer" then click "Properties"
- Click the "Advanced" tab then the "Environmental Variables" button
- Under the "System Variables" list find the item named "Path" then click "Edit"
- Add to the end of the "Variable value ";C:\Program Files\nant-0.86\bin"
- Click OK, OK, OK
- Now test it by clicking "Start" -> "Run"
- Type "cmd" then hit enter
- In the command prompt type "nant" then hit enter. If it outputs a few lines and says BUILD FAILED then your path variables are correct
- In your solution directory create a folder called "lib" and put your libraries (anything 3rd party or not included with the target CLR version)
- Create your NAnt script in the target project directory naming your NAnt script: "default.build"
- Navigate to this location through command prompt and run one of the following commands
- nant - will do a build
- nant clean - will clean the build
- nant clean build - will clean the build and rebuild (recommended)
- Optionally you can create a make file at the solution directory which simply executes nant for each of the projects in the solution. I call mine "make.cmd" and put it in your solution directory (one directory above your project directories assuming all project directories are siblings)
Sample Make File (make.cmd):
nant -buildfile:Company.Domain.Common\default.build %*nant -buildfile:Company.Portal.Web\default.build %*
Usage: "make clean build"
Now you have NAnt scripts so that you can setup continuous integration for your project using something like CruiseControl.Net .
4 comments:
GREAT write-up!!! Thanks for sharing what you have learned.
Question I had on NAnt was is that I already have a cmd file which cleans target(Solution), so I am trying to write nAnt so that I can automate it. I guess the problem I am having is how to i tell NAnt to execute my cmd file. (Trying to automate this, so each time, i dont have to keep on double clicking my cmd files in Build).
Any help would be appriciated.
Really nice article :)
Very informative.
You may also check Website Builder Script
Thank you for your valuable and useful information through the blog. I am appreciating with the way you shared the relevant, precious, and perfect information. Furthermore, I would like some sound knowledge of Website Designing Company in India . Here Trionfo IT Services Pvt. Ltd is a Delhi-NCR, INDIA based IT firm delivering high quality, cost effective, reliable result-oriented web and e-commerce solutions which also include training for all the services on time for a global clientele Services Reach our Website you will get complete information related Your Query.
Post a Comment