From: Michael D. <mik...@us...> - 2004-07-25 11:44:50
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1256/src/NHibernate.Test Modified Files: NHibernate.Test.build Log Message: minor mod to references element inside of csc element Index: NHibernate.Test.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHibernate.Test.build,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NHibernate.Test.build 23 Jul 2004 15:46:32 -0000 1.5 --- NHibernate.Test.build 25 Jul 2004 11:44:42 -0000 1.6 *************** *** 6,10 **** xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > ! <target name="build"> --- 6,16 ---- xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" > ! <!-- ! Required properties: ! * build.dir - (path) root level to build to, assemblies will go in ${build.dir}/bin ! * build.debug - (true|false) debug build? ! * current.build.defines - framework-specific build defines ! --> ! <target name="build"> *************** *** 16,29 **** > ! <references> <includes name="System.dll" /> <includes name="System.XML.dll" /> <includes name="System.Data.dll" /> ! <includes name="${build.dir}/bin/DotNetMock.dll" /> ! <includes name="${build.dir}/bin/DotNetMock.Framework.dll" /> ! <includes name="${build.dir}/bin/log4net.dll" /> ! <includes name="${build.dir}/bin/nunit.framework.dll"/> ! <includes name="${build.dir}/bin/NHibernate.DomainModel.dll" /> ! <includes name="${build.dir}/bin/NHibernate.dll" /> </references> --- 22,35 ---- > ! <references basedir="${build.dir}/bin"> <includes name="System.dll" /> <includes name="System.XML.dll" /> <includes name="System.Data.dll" /> ! <includes name="DotNetMock.dll" /> ! <includes name="DotNetMock.Framework.dll" /> ! <includes name="log4net.dll" /> ! <includes name="NHibernate.DomainModel.dll" /> ! <includes name="NHibernate.dll" /> ! <includes name="nunit.framework.dll"/> </references> *************** *** 35,39 **** <copy file="App.config" ! tofile="${build.dir}/bin/NHibernate.Test.dll.config" /> <copy --- 41,45 ---- <copy file="App.config" ! tofile="${build.dir}/bin/${nant.project.name}.dll.config" /> <copy *************** *** 50,55 **** <target name="test"> <nunit2> ! <formatter type="Xml" usefile="true" extension=".xml" outputdir="${build.dir}/bin" /> ! <test assemblyname="${build.dir}/bin/NHibernate.Test.dll" appconfig="${build.dir}/bin/NHibernate.Test.dll.config" /> </nunit2> </target> --- 56,69 ---- <target name="test"> <nunit2> ! <formatter ! type="Xml" ! usefile="true" ! extension=".xml" ! outputdir="${build.dir}/bin" ! /> ! <test ! assemblyname="${build.dir}/bin/${nant.project.name}.dll" ! appconfig="${build.dir}/bin/${nant.project.name}.dll.config" ! /> </nunit2> </target> |