From: Michael D. <mik...@us...> - 2005-04-25 03:34:08
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8405/src/Nullables Modified Files: Nullables.build Log Message: upgraded to nant-0.85-rc3 Index: Nullables.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables/Nullables.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Nullables.build 4 Apr 2005 12:35:41 -0000 1.3 --- Nullables.build 25 Apr 2005 03:33:59 -0000 1.4 *************** *** 4,8 **** name="Nullables" default="build" ! xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > --- 4,8 ---- name="Nullables" default="build" ! xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd" > *************** *** 20,27 **** * clover.src - location of the clovered source to be stored at from the root of NHibernateContrib * clover.db - location of the coverage db from the root of NHibernateContrib --> ! ! <if propertytrue="clover.enabled"> ! <loadtasks assembly="${clover.home}/CloverNAnt-0.84.dll" /> </if> --- 20,28 ---- * clover.src - location of the clovered source to be stored at from the root of NHibernateContrib * clover.db - location of the coverage db from the root of NHibernateContrib + * clover.assembly - assembly that contains clover tasks for this version of NAnt --> ! ! <if test="${clover.enabled}"> ! <loadtasks assembly="${clover.home}/${clover.assembly}" /> </if> *************** *** 30,34 **** <target name="build" description="Build Nullables"> ! <if propertytrue="clover.enabled"> <clover-setup initstring="..\..\${clover.db}" --- 31,35 ---- <target name="build" description="Build Nullables"> ! <if test="${clover.enabled}"> <clover-setup initstring="..\..\${clover.db}" *************** *** 44,50 **** <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> ! <import name="System" /> ! <import name="System.Reflection" /> ! <import name="System.Runtime.CompilerServices" /> </imports> <attributes> --- 45,51 ---- <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> ! <import namespace="System" /> ! <import namespace="System.Reflection" /> ! <import namespace="System.Runtime.CompilerServices" /> </imports> <attributes> *************** *** 71,79 **** <sources failonempty="true"> ! <includes name="**/*.cs" /> </sources> <references basedir="${build.dir}/bin"> ! <includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.dll" /> </references> --- 72,80 ---- <sources failonempty="true"> ! <include name="**/*.cs" /> </sources> <references basedir="${build.dir}/bin"> ! <include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.dll" /> </references> |