From: Michael D. <mik...@us...> - 2004-12-30 16:55:47
|
Update of /cvsroot/nhibernate/NHibernateContrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26347 Modified Files: NHibernateContribSolution.build Log Message: Moved NHibernate.Tasks and NHibernate.Tool.hbm2net over to the NHibernateContrib module. Index: NHibernateContribSolution.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/NHibernateContribSolution.build,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NHibernateContribSolution.build 16 Dec 2004 15:26:11 -0000 1.6 --- NHibernateContribSolution.build 30 Dec 2004 16:55:37 -0000 1.7 *************** *** 1,3 **** ! <?xml version="1.0" ?> <project --- 1,3 ---- ! <?xml version="1.0" ?> <project *************** *** 112,121 **** <!-- copy framework-nuetral libraries --> - <!-- - There are none right now <copy todir="${build.dir}/bin"> <fileset basedir="lib"> <includes name="Commons.*" /> - <includes name="DotNetMock.*" /> <includes name="HashCodeProvider.*" /> <includes name="NAnt.Core.*" /> --- 112,118 ---- *************** *** 123,127 **** </fileset> </copy> - --> <!-- copy framework-specific libraries --> --- 120,123 ---- *************** *** 140,143 **** --- 136,142 ---- <nant target="build" buildfile="src/Nullables.Tests/Nullables.Tests.build" /> <nant target="build" buildfile="src/BantamTech.SysCache/syscache.build" /> + <nant target="build" buildfile="src/NHibernate.Tool.Net2Hbm/NHibernate.Tool.Net2Hbm.build" /> + <nant target="build" buildfile="src/NHibernate.Tool.hbm2net/NHibernate.Tool.hbm2net.build" /> + <nant target="build" buildfile="src/NHibernate.Tasks/NHibernate.Tasks.build" /> </target> *************** *** 209,212 **** --- 208,214 ---- <includes name="Nullables.dll" /> <includes name="Nullables.NHibernate.dll" /> + <includes name="NHibernate.Tool.hbm2ddl.dll" /> + <includes name="NHibernate.Tool.hbm2net.dll" /> + <includes name="NHibernate.Tool.Net2Hbm.dll" /> </assemblies> *************** *** 273,281 **** <includes name="${lib.dir}/**" /> ! <!-- ! exclude the Clover modified source files. ! --> <excludes name="${clover.src}/**" /> <!-- copy all of the source --> <includes name="src/**" /> --- 275,285 ---- <includes name="${lib.dir}/**" /> ! <!-- exclude the Clover modified source files. --> <excludes name="${clover.src}/**" /> + <!-- exclude ReSharper stuff --> + <excludes name="**/_ReSharper*" /> + <excludes name="**/*.resharperoptions" /> + <!-- copy all of the source --> <includes name="src/**" /> *************** *** 292,299 **** <excludes name="**/obj/**" /> - <!-- exclude ReSharper stuff --> - <excludes name="**/_ReSharper*" /> - <excludes name="**/*.resharperoptions" /> - <!-- exclude any keys that exist on the build machine --> <excludes name="**/*.snk" /> --- 296,299 ---- |