From: Michael D. <mik...@us...> - 2005-04-25 03:26:51
|
Update of /cvsroot/nhibernate/nhibernate/src/Iesi.Collections In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5100/src/Iesi.Collections Modified Files: Iesi.Collections.build Log Message: upgraded to nant-0.85-rc3 Index: Iesi.Collections.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/Iesi.Collections/Iesi.Collections.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Iesi.Collections.build 8 Dec 2004 15:21:59 -0000 1.3 --- Iesi.Collections.build 25 Apr 2005 03:26:36 -0000 1.4 *************** *** 4,8 **** name="Iesi.Collections" default="build" ! xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > --- 4,8 ---- name="Iesi.Collections" 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 nhibernate * clover.db - location of the coverage db from the root of nhibernate --> ! <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 nhibernate * clover.db - location of the coverage db from the root of nhibernate + * 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 Iesi.Collections"> ! <if propertytrue="clover.enabled"> <clover-setup initstring="..\..\${clover.db}" --- 31,35 ---- <target name="build" description="Build Iesi.Collections"> ! <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,82 **** <sources failonempty="true"> ! <includes name="**/*.cs" /> </sources> <references basedir="${build.dir}/bin"> ! <includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.dll" /> ! <includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.XML.dll" /> ! <includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.Data.dll" /> </references> --- 72,83 ---- <sources failonempty="true"> ! <include name="**/*.cs" /> </sources> <references basedir="${build.dir}/bin"> ! <include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.dll" /> ! <include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.XML.dll" /> ! <include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.Data.dll" /> </references> |