You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2007/10/30 16:51:25 UTC

svn commit: r590126 - /activemq/activemq-dotnet/Apache.NMS/trunk/nant.build

Author: chirino
Date: Tue Oct 30 08:51:24 2007
New Revision: 590126

URL: http://svn.apache.org/viewvc?rev=590126&view=rev
Log:
Update common nant file

Modified:
    activemq/activemq-dotnet/Apache.NMS/trunk/nant.build

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/nant.build
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/nant.build?rev=590126&r1=590125&r2=590126&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/nant.build (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/nant.build Tue Oct 30 08:51:24 2007
@@ -31,9 +31,6 @@
   <property name="project.description"
            value="Apache NMS (.Net Messaging Library): An abstract interface to Message Oriented Middleware (MOM) providers"/>
 
-  <!-- Sets up all the different framework targets -->
-	<include buildfile="${basedir}/nant-common.xml"/>
-	
   <target name="dependency-init" description="Initializes build dependencies">
   	<assemblyfileset failonempty="true" id="dependencies">
       <include name="mscorlib.dll" asis="true"/>
@@ -41,11 +38,14 @@
   	</assemblyfileset>
   	
   	<assemblyfileset failonempty="true" id="test.dependencies">
-      <lib refid="dependencies"/>
+      <include name="mscorlib.dll" asis="true"/>
+      <include name="System.dll" asis="true"/>
       <include name="${build.bin.dir}/${project.name}.dll"/>
       <include name="${lib.dir}/all/nunit/nunit.framework.dll"/>
   	</assemblyfileset>  
   </target>
   
+  <!-- Load the common target definitions  -->
+	<include buildfile="${basedir}/build-common.xml"/>
   
 </project>