From: Michael D. <mik...@us...> - 2005-04-25 03:34:08
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8405/src/Nullables.NHibernate Modified Files: Nullables.NHibernate.build Log Message: upgraded to nant-0.85-rc3 Index: Nullables.NHibernate.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate/Nullables.NHibernate.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Nullables.NHibernate.build 4 Apr 2005 12:35:41 -0000 1.3 --- Nullables.NHibernate.build 25 Apr 2005 03:33:59 -0000 1.4 *************** *** 4,8 **** name="Nullables.NHibernate" default="build" ! xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > --- 4,8 ---- name="Nullables.NHibernate" default="build" ! xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd" > *************** *** 20,26 **** * 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> *************** *** 29,33 **** <target name="build" description="Build the NHibernate Types for the Nullables"> ! <if propertytrue="clover.enabled"> <clover-setup initstring="..\..\${clover.db}" --- 31,35 ---- <target name="build" description="Build the NHibernate Types for the Nullables"> ! <if test="${clover.enabled}"> <clover-setup initstring="..\..\${clover.db}" *************** *** 43,49 **** <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> *************** *** 70,83 **** <references basedir="${build.dir}/bin"> ! <includes name="System.dll" /> ! <includes name="System.XML.dll" /> ! <includes name="System.Data.dll" /> ! <includes name="NHibernate.dll" /> ! <includes name="log4net.dll" /> ! <includes name="Nullables.dll" /> </references> <sources failonempty="true"> ! <includes name="**/*.cs" /> </sources> </csc> --- 72,85 ---- <references basedir="${build.dir}/bin"> ! <include name="System.dll" /> ! <include name="System.XML.dll" /> ! <include name="System.Data.dll" /> ! <include name="NHibernate.dll" /> ! <include name="log4net.dll" /> ! <include name="Nullables.dll" /> </references> <sources failonempty="true"> ! <include name="**/*.cs" /> </sources> </csc> |