Click here to Skip to main content
Licence 
First Posted 17 Oct 2004
Views 104,202
Bookmarked 56 times

NAnt : Little Pretty Automatic

By | 17 Oct 2004 | Article
Some little utility tasks for NAnt

Introduction

Do you automate your build process? I didn't, until found that one of my ASP.NET projects required too much handwork on every release: build, copy production files, update config, etc.

Ever heard of makefiles? Me too. Endless text files stuffed with ciphered spells, dashes and dots that do all magic for your build process. Forget about this — now we have NAnt.

Born in Java world and brought to .NET, NAnt let us build our programs with easy using simple human-readable XML build scripts.

Warming Up

After spending several days on learning NAnt's documentation, I got the following build script for my project:

<?xml version="1.0"?>
<project name="MyProject" default="production" basedir="..">

    <description>MyProject NANT build script</description>

    <target name="build" 
    description="Compile MyProject using Release configuration">
 <solution solutionfile="MyProject.sln" configuration="Release">
     <webmap>
  <map url="http://localhost/MyProject/Web.csproj" 
  path="Web\Web.csproj" />
  <map url="http://localhost/AchService/AchService.csproj" 
  path="AchService\AchService.csproj" />
     </webmap>
     <excludeprojects>
  <includes name="Tests\Tests.csproj"/>
     </excludeprojects>
 </solution>
    </target>

    <target name="produce" description="Copy production files">
 <!-- Copy build results to Production folder -->
 <delete dir="Build\Production" failonerror="false" />
 <copy todir="Build\Production">
     <fileset basedir="Web">
  <includes name="**.aspx" />
  <includes name="**.ascx" />
  <includes name="**.config" />
  <includes name="**.gif" />
  <includes name="**.jpg" />
  <includes name="**.mdb" />
     </fileset>
 </copy>
 <!-- Reset attributes to Normal -->
 <attrib normal="true">
     <fileset basedir="Build\Production">
  <includes name="**" />
     </fileset>
 </attrib>
 <!-- Update connection string settings -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectConfiguration/add
      [@key='ConnectionString']/@value"
     value="Provider=Microsoft.Jet.OLEDB.4.0;
      Data Source=D:\inetpub\wwwroot\Dev.MyProject.com\db\MyProject.mdb; 
      User ID=Admin; Password=" />
 <!-- Update path to e-mail templates -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectMailerConfiguration/add
     [@key='TemplatesFolder']/@value"
     value="D:\inetpub\wwwroot\Dev.MyProject.com\EmailTemplates" />
 <!-- Update path to reports templates -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectConfiguration/add
     [@key='ReportsTemplatesFolder']/@value"
     value="D:\inetpub\wwwroot\Dev.MyProject.com\
      landlord\Reports\Templates" />
    </target>

    <target name="production" depends="build, produce" 
     description="Build MyProject and copy production files">
 <!-- Target just refers to corresponding tasks -->
    </target>

</project>

The script builds the project, copies it to production folder and changes some key values in *.config files.

I was happy enough, but the project was growing and UI design was changing. I noticed that my script doesn't perform as expected. The problem was in the 'copy' part of the script. Take a look: to build the project, it's enough to specify solution file and map web projects to local path — the rest NAnt does itself. But when I copy cooked files, I have to specify each possible type in copy routine.

 ...
 <solution solutionfile="MyProject.sln" configuration="Release">
     <webmap>
  <map url="http://localhost/MyProject/Web.csproj" 
   path="Web\Web.csproj" />
  <map url="http://localhost/AchService/AchService.csproj"
   path="AchService\AchService.csproj" />
     </webmap>
     <excludeprojects>
  <includes name="Tests\Tests.csproj"/>
     </excludeprojects>
 </solution>
 ...
 <copy todir="Build\Production">
     <fileset basedir="Web">
  <includes name="**.aspx" />
  <includes name="**.ascx" />
  <includes name="**.config" />
  <includes name="**.gif" />
  <includes name="**.jpg" />
  <includes name="**.mdb" />
     </fileset>
 </copy>
 ...

Guess what happens when my designer adds some Flash animation to the UI?

Do It Yourself

Fortunately, NAnt was designed with extensibility in mind. And the solution is simple — develop your own task for the problem you faced.

NAnt's task is simply a descendant of NAnt.Core.Task class with overridden ExecuteTask method. The only trick is to name your assembly properly: the name should look like YourAssemblyNameTasks.dll. The assembly should be placed to %nant%\bin folder. The rest will be done by NAnt using .NET reflection magic. I developed extensions for various software in the past, but seems task development for the NAnt was the easiest.

Effortless Copy

After spending couple of days on spare time coding, I got the task that makes 'production' copy of any ASP.NET project. Now my script looks like this:

<?xml version="1.0"?>
<project name="MyProject" default="production" basedir="..">

    <description>MyProject NANT build script</description>

    <target name="build" 
    description="Compile MyProject using Release configuration">
 <solution solutionfile="MyProject.sln" configuration="Release">
     <webmap>
  <map url="http://localhost/MyProject/Web.csproj" 
  path="Web\Web.csproj" />
  <map url="http://localhost/AchService/AchService.csproj" 
  path="AchService\AchService.csproj" />
     </webmap>
     <excludeprojects>
  <includes name="Tests\Tests.csproj"/>
     </excludeprojects>
 </solution>
    </target>

    <target name="produce" description="Copy production files">
 <!-- Copy build results to Production folder -->
 <delete dir="Build\Production" failonerror="false" />
 <copywebproject project="Web\Web.csproj" 
todir="Build\Production" configuration="Release" />
 <copywebproject project="AchService\AchService.csproj" 
 todir="Build\Production\AchService" configuration="Release" />
 <!-- Reset attributes to Normal -->
 <attrib normal="true">
     <fileset basedir="Build\Production">
  <includes name="**" />
     </fileset>
 </attrib>
 <!-- Update connection string settings -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectConfiguration/add
     [@key='ConnectionString']/@value"
     value="Provider=Microsoft.Jet.OLEDB.4.0;
      Data Source=D:\inetpub\wwwroot\Dev.MyProject.com\db\MyProject.mdb; 
      User ID=Admin; Password=" />
 <!-- Update path to e-mail templates -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectMailerConfiguration/add
     [@key='TemplatesFolder']/@value"
     value="D:\inetpub\wwwroot\Dev.MyProject.com\EmailTemplates" />
 <!-- Update path to reports templates -->
 <xmlpoke file="Build\Production\Web.config" 
     xpath="/configuration/MyProjectConfiguration/add
     [@key='ReportsTemplatesFolder']/@value"
     value="D:\inetpub\wwwroot\Dev.MyProject.com\
      landlord\Reports\Templates" />
    </target>

    <target name="production" depends="build, produce" 
     description="Build MyProject and copy production files">
 <!-- Target just refers to corresponding tasks -->
    </target>

</project>

The only thing you have to care of now, is to have all production files included in the project. You can do this right-clicking on the file name in Solution Explorer and selecting 'Include in Project' command.

<copywebproject> Syntax

<copywebproject project="PATH TO PROJECT" todir="TARGET PATH" 
  configuration="CONFIGURATION OF INTEREST" />

PATH TO PROJECT is an absolute or relative path to the web project you want to copy.

TARGET PATH is an absolute or relative path to the target directory.

The task uses CONFIGURATION OF INTEREST attribute to obtain path to compiled project files.

Note that <copywebproject> task supports only web project written in C#, VB.NET or any compatible .NET language.

History

  • Version 1.0 so far.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alex Kolesnichenko

Software Developer (Senior)
w2bi, Inc
United States United States

Member

Started professional career in software development back in 2000, in Ukraine. Founder and owner of a boutique software company called ByteGems.com Software. Currently employed full time at w2bi, Inc in New Jersey USA.
 
My buzzwords at the moment: .NET, C#, C++, Win32, ATL, MFC, SQL, ASP.NET, WinForms, WebForms, MVC, EF, LINQ, Sockets, TCP/IP, Remoting.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHow can I input user name and password when I exec a task PinmemberYouzelin21:33 5 Nov '11  
Questionversioning in .net 2005 Pinmemberkunal_singh20:11 9 May '06  
QuestionUsing NAnt I need to Customize the Installation PinmemberChowdaryR17:53 29 Aug '05  
Generalgui to build nant files Pinmemberpaul heap16:58 24 Jun '05  
GeneralRe: gui to build nant files Pinmemberstormelf6:39 18 Sep '07  
NAntbuilder can do what you need. It will be a surprise for you.

It is a full-featured IDE for NAnt. It provides a flexible, easy-to-use platform to author, debug and execute NAnt script. NAntBuilder enables you to manage your build process easily, allowing you to focus on more interesting and important works. Its full-featureed code completion will save you thousands of keystrokes while authoring NAnt script. And the integreted NAnt script debugger will help you execute NAnt script task by task.
 
The download url is: http://www.nantbuilder.com/download/NAntBuilderSetup.exe
paul heap wrote:
anyone know of a gui that can build the nant build files?

 

GeneralBuilding .Net ASP Project Using NAnt PinsussAnonymous22:10 21 Jun '05  
GeneralNant send mail PinmemberSoumik Ghosh21:46 26 Apr '05  
GeneralSeparate Domain with vssget PinmemberDattaSha5:14 25 Apr '05  
GeneralNANT Incremental Build PinmemberSoumik Ghosh23:01 19 Apr '05  
GeneralRe: NANT Incremental Build PinsussAnonymous19:47 21 Apr '05  
GeneralRe: NANT Incremental Build PinsussAnonymous20:04 21 Apr '05  
GeneralConfig Override File Pinmemberdjsdjsdjsdjs3:56 29 Oct '04  
GeneralRe: Config Override File PinmemberAlex Kolesnichenko0:39 2 Nov '04  
GeneralAutomate creating building project PinmemberDipeshKhakhkhar15:28 22 Oct '04  
GeneralCopyWebProjectTask Pinmemberattackweasel4:08 18 Oct '04  
GeneralMentality PinprotectorMarc Clifton1:23 18 Oct '04  
GeneralRe: Mentality PinmemberAlex Kolesnichenko2:03 18 Oct '04  
GeneralRe: Mentality Pinmemberattackweasel3:47 18 Oct '04  
GeneralRe: Mentality PinmemberKevin McFarlane10:18 22 Oct '04  
GeneralRe: Mentality PinmemberJerryClinesmith16:35 21 Oct '04  
GeneralRe: Mentality PinmemberDGraham1:00 3 Nov '04  
GeneralRe: Mentality PinmemberTom.B.3:49 11 Jun '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 17 Oct 2004
Article Copyright 2004 by Alex Kolesnichenko
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid