From: Michael D. <mik...@us...> - 2005-04-25 03:27:10
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5219 Modified Files: NHibernateSolution.build Log Message: upgraded to nant-0.85-rc3 Index: NHibernateSolution.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/NHibernateSolution.build,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** NHibernateSolution.build 28 Mar 2005 06:37:32 -0000 1.29 --- NHibernateSolution.build 25 Apr 2005 03:26:59 -0000 1.30 *************** *** 4,8 **** name="NHibernateSolution" default="build" ! xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > <!-- --- 4,8 ---- name="NHibernateSolution" default="build" ! xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd" > <!-- *************** *** 18,23 **** <property name="clover.src" value="src\CloverSrc" /> <property name="clover.db" value="${clover.src}\clover.cdb" /> ! <property name="clover.home" value="C:/Program Files/Cenqua/Clover.NET" /> ! <!-- Use this to determine if the key file NHibernate.key should be used to --- 18,23 ---- <property name="clover.src" value="src\CloverSrc" /> <property name="clover.db" value="${clover.src}\clover.cdb" /> ! <property name="clover.home" value="C:/Program Files/Cenqua/Clover.NET for Visual Studio" /> ! <property name="clover.assembly" value="CloverNAnt-0.85.dll" /> <!-- Use this to determine if the key file NHibernate.key should be used to *************** *** 126,130 **** <copy todir="${build.dir}/bin"> <fileset basedir="lib"> ! <includes name="HashCodeProvider.*" /> </fileset> </copy> --- 126,130 ---- <copy todir="${build.dir}/bin"> <fileset basedir="lib"> ! <include name="HashCodeProvider.*" /> </fileset> </copy> *************** *** 138,148 **** do want to copy the license file. --> ! <excludes name="Iesi.Collections.dll" /> ! <excludes name="Iesi.Collections.xml" /> ! <includes name="Iesi.Collections.license.txt" /> ! <includes name="Castle.DynamicProxy.*" /> ! <includes name="log4net.*" /> ! <includes name="nunit.framework.*" /> </fileset> </copy> --- 138,148 ---- do want to copy the license file. --> ! <exclude name="Iesi.Collections.dll" /> ! <exclude name="Iesi.Collections.xml" /> ! <include name="Iesi.Collections.license.txt" /> ! <include name="Castle.DynamicProxy.*" /> ! <include name="log4net.*" /> ! <include name="nunit.framework.*" /> </fileset> </copy> *************** *** 192,200 **** /> ! <if propertytrue="nunit2report.installed"> <mkdir dir="${build.dir}/testresults" /> <nunit2report out="${build.dir}/testresults/index.html" format="Frames" todir="${build.dir}/testresults"> <fileset> ! <includes name="${build.dir}\bin\*results.xml" /> </fileset> </nunit2report> --- 192,200 ---- /> ! <if test="${nunit2report.installed}"> <mkdir dir="${build.dir}/testresults" /> <nunit2report out="${build.dir}/testresults/index.html" format="Frames" todir="${build.dir}/testresults"> <fileset> ! <include name="${build.dir}\bin\*results.xml" /> </fileset> </nunit2report> *************** *** 213,225 **** <!-- Any hbm.xml and cfg.xml files in the bin are for testing purposes --> ! <includes name="*.hbm.xml" /> ! <includes name="*.cfg.xml" /> <!-- The MyTest Assembly was used in the AssemblyOrderer fixtures --> ! <includes name="MyTest*.dll" /> ! <includes name="MyTest*.pdb" /> <!-- Go ahead and delete the log file that contains all the sql output--> ! <includes name="log.txt" /> <!-- --- 213,225 ---- <!-- Any hbm.xml and cfg.xml files in the bin are for testing purposes --> ! <include name="*.hbm.xml" /> ! <include name="*.cfg.xml" /> <!-- The MyTest Assembly was used in the AssemblyOrderer fixtures --> ! <include name="MyTest*.dll" /> ! <include name="MyTest*.pdb" /> <!-- Go ahead and delete the log file that contains all the sql output--> ! <include name="log.txt" /> <!-- *************** *** 227,235 **** clean and ready for the downloader to use. --> ! <includes name="Iesi.Collections.Test.*" /> ! <includes name="NHibernate.DomainModel.*" /> ! <includes name="NHibernate.Examples.*" /> ! <includes name="NHibernate.Test.*" /> ! <includes name="nunit.framework.*" /> </fileset> --- 227,235 ---- clean and ready for the downloader to use. --> ! <include name="Iesi.Collections.Test.*" /> ! <include name="NHibernate.DomainModel.*" /> ! <include name="NHibernate.Examples.*" /> ! <include name="NHibernate.Test.*" /> ! <include name="nunit.framework.*" /> </fileset> *************** *** 238,242 **** <target name="coverage-report" description="Builds the Test Coverage reports"> ! <mkdir dir="${build.dir}/clover" /> <clover-setup --- 238,242 ---- <target name="coverage-report" description="Builds the Test Coverage reports"> ! <mkdir dir="${build.dir}/clover" /> <clover-setup *************** *** 246,250 **** <clover-report> <current title="NHibernate Clover Report" output="${build.dir}/clover" > ! <format type="html" orderBy="Alpha" /> </current> </clover-report> --- 246,250 ---- <clover-report> <current title="NHibernate Clover Report" output="${build.dir}/clover" > ! <format type="html" orderby="Alpha" /> </current> </clover-report> |