Update of /cvsroot/nhibernate/nhibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12306
Modified Files:
NHibernateSolution.build
Log Message:
Added tasks to build HashCodeProvider seperate from the main build and
to copy the dll to the correct folders during the build.
Index: NHibernateSolution.build
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/NHibernateSolution.build,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** NHibernateSolution.build 8 Jul 2004 12:49:52 -0000 1.5
--- NHibernateSolution.build 22 Jul 2004 13:36:43 -0000 1.6
***************
*** 46,49 ****
--- 46,56 ----
</target>
+ <target name="build-external" depends="init" description="Builds code that NHibernate depends on but is not a core peice of NHibernate. The built dll/exes will be distributed in the external-bin folder so there should be no need for a user to build it.">
+ <nant
+ buildfile="src/HashCodeProvider/HashCodeProvider.build"
+ target="build"
+ />
+ </target>
+
<target name="build" depends="init" description="Builds current configuration">
<echo message="Current Directory is ${nant.project.basedir}" />
***************
*** 60,63 ****
--- 67,71 ----
<includes name="DotNetMock.*" />
<includes name="nunit.framework.*" />
+ <includes name="HashCodeProvider.*" />
</fileset>
</copy>
|