|
From: <mik...@us...> - 2003-07-30 15:49:25
|
Update of /cvsroot/nmock/nmock In directory sc8-pr-cvs1:/tmp/cvs-serv4218 Added Files: continuousintegration.build .cvsignore Log Message: Adding CruiseControl.NET bootstrap build file --- NEW FILE: continuousintegration.build --- <project name="ccnetlaunch" default="go"> <target name="go" depends="update,build"/> <target name="update"> <ifnot propertyexists="cvs.executable"> <fail message="cvs.executable property not set, so can't update" /> </ifnot> <echo message="CVS Executable at [${cvs.executable}]" /> <exec basedir="." program="${cvs.executable}" commandline="-q update -P -d" /> </target> <target name="build"> <nant buildfile="nmock.build" target="cruise" inheritall="true" /> </target> </project> --- NEW FILE: .cvsignore --- build .project |