Hi all,
I am using Nant 0.85 & Subversion 1.1. I want to know the way to modify my build script so that it checks out only those files which have got modified every time i run the build script through ccnet.
My build script contains the following;
<?xml version="1.0"?>
<project name="SMART" default="Common" basedir=".">
<svn-checkout
destination="D:\Build\08_Common" uri="http://www.address.com/rapository/Smart/02_Source_Code/"
recursive="true"/>
<target name="Common" depends="update">
<csc target="library" output="D:\Build\Smart.Common.dll" debug="false">
<sources>
<include name="D:/Build/08_Common/*/*.cs" />
<include name="D:/Build/08_Common/*.cs" />
</sources>
</csc>
</target>
</project>