From: Michael D. <mik...@us...> - 2005-04-25 03:34:09
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Caches/SysCache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8405/src/NHibernate.Caches/SysCache Modified Files: syscache.build Log Message: upgraded to nant-0.85-rc3 Index: syscache.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Caches/SysCache/syscache.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** syscache.build 4 Apr 2005 12:35:38 -0000 1.2 --- syscache.build 25 Apr 2005 03:34:00 -0000 1.3 *************** *** 4,8 **** default="build" description="NHibernate pluggable cache provider using ASP.NET Cache object" ! xmlns="http://nant.sourceforge.net/schemas/nant-0.84.win32.net-1.0.xsd"> <!-- --- 4,8 ---- default="build" description="NHibernate pluggable cache provider using ASP.NET Cache object" ! xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd"> <!-- *************** *** 19,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> --- 19,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 + * clover.assembly - assembly that contains clover tasks for this version of NAnt --> ! <if test="${clover.enabled}"> ! <loadtasks assembly="${clover.home}/${clover.assembly}" /> </if> *************** *** 28,32 **** <target name="build"> ! <if propertytrue="clover.enabled"> <clover-setup initstring="..\..\${clover.db}" --- 29,33 ---- <target name="build"> ! <if test="${clover.enabled}"> <clover-setup initstring="..\..\${clover.db}" *************** *** 40,48 **** <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> ! <import name="System" /> ! <import name="System.Reflection" /> ! <import name="System.Runtime.CompilerServices" /> ! <import name="System.Runtime.InteropServices" /> ! <import name="System.Security.Permissions" /> </imports> <attributes> --- 41,49 ---- <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> ! <import namespace="System" /> ! <import namespace="System.Reflection" /> ! <import namespace="System.Runtime.CompilerServices" /> ! <import namespace="System.Runtime.InteropServices" /> ! <import namespace="System.Security.Permissions" /> </imports> <attributes> *************** *** 68,81 **** > <sources> ! <excludes name="**/*Fixture.cs" /> ! <includes name="**/*.cs" /> </sources> <references> ! <includes name="System.dll" /> ! <includes name="System.Data.dll" /> ! <includes name="System.Web.dll" /> ! <includes name="System.XML.dll" /> ! <includes name="${build.dir}/bin/NHibernate.dll" /> ! <includes name="${build.dir}/bin/log4net.dll" /> </references> </csc> --- 69,82 ---- > <sources> ! <exclude name="**/*Fixture.cs" /> ! <include name="**/*.cs" /> </sources> <references> ! <include name="System.dll" /> ! <include name="System.Data.dll" /> ! <include name="System.Web.dll" /> ! <include name="System.XML.dll" /> ! <include name="${build.dir}/bin/NHibernate.dll" /> ! <include name="${build.dir}/bin/log4net.dll" /> </references> </csc> *************** *** 88,102 **** > <sources> ! <includes name="**/AssemblyInfo.cs" /> ! <includes name="**/*Fixture.cs" /> </sources> <references> ! <includes name="System.dll" /> ! <includes name="System.Data.dll" /> ! <includes name="System.XML.dll" /> ! <includes name="${build.dir}/bin/${nant.project.name}.dll" /> ! <includes name="${build.dir}/bin/NHibernate.dll" /> ! <includes name="${build.dir}/bin/nunit.framework.dll" /> ! <includes name="${build.dir}/bin/log4net.dll" /> </references> </csc> --- 89,103 ---- > <sources> ! <include name="**/AssemblyInfo.cs" /> ! <include name="**/*Fixture.cs" /> </sources> <references> ! <include name="System.dll" /> ! <include name="System.Data.dll" /> ! <include name="System.XML.dll" /> ! <include name="${build.dir}/bin/${nant.project.name}.dll" /> ! <include name="${build.dir}/bin/NHibernate.dll" /> ! <include name="${build.dir}/bin/nunit.framework.dll" /> ! <include name="${build.dir}/bin/log4net.dll" /> </references> </csc> *************** *** 109,117 **** <test assemblyname="${build.dir}/bin/${nant.project.name}.Tests.dll" appconfig="${build.dir}/${nant.project.name}.Tests.dll.config" /> </nunit2> ! <if propertytrue="nunit2report.installed"> <mkdir dir="${build.dir}/testresults" /> <nunit2report out="${build.dir}/testresults/syscache.html" todir="${build.dir}/testresults"> <fileset> ! <includes name="${build.dir}\bin\${nant.project.name}.Tests.dll-results.xml" /> </fileset> </nunit2report> --- 110,118 ---- <test assemblyname="${build.dir}/bin/${nant.project.name}.Tests.dll" appconfig="${build.dir}/${nant.project.name}.Tests.dll.config" /> </nunit2> ! <if test="${nunit2report.installed}"> <mkdir dir="${build.dir}/testresults" /> <nunit2report out="${build.dir}/testresults/syscache.html" todir="${build.dir}/testresults"> <fileset> ! <include name="${build.dir}\bin\${nant.project.name}.Tests.dll-results.xml" /> </fileset> </nunit2report> |