Author: chirino
Date: Wed Feb 28 06:56:44 2007
New Revision: 512787

URL: http://svn.apache.org/viewvc?view=rev&rev=512787
Log:
Updated naming convention used for the .dlls

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

Modified: activemq/activemq-dotnet/trunk/nant.build
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/trunk/nant.build?view=diff&rev=512787&r1=512786&r2=512787
==============================================================================
--- activemq/activemq-dotnet/trunk/nant.build (original)
+++ activemq/activemq-dotnet/trunk/nant.build Wed Feb 28 06:56:44 2007
@@ -121,9 +121,9 @@
           description="Build everything"/>
 
   <!-- Compile the nms module -->
-  <target name="build-nms" depends="init" description="Build the nms library">
+  <target name="build-nms" depends="init" description="Build the NMS library">
 
-    <echo message="Building the nms library" />
+    <echo message="Building the NMS library" />
 
     <echo>Creating build dir ${build.bin.dir}</echo>
     <mkdir dir="${build.bin.dir}"/>
@@ -172,8 +172,8 @@
   </target>
 
   <!-- Compile the nms-test module -->
-  <target name="build-nms-test" depends="init,build-nms" description="Build 
the nms-test library">
-    <echo message="Building the nms-test library" />
+  <target name="build-nms-test" depends="init,build-nms" description="Build 
the NMS.Test library">
+    <echo message="Building the NMS.Test library" />
 
     <attrib file="src/test/csharp/NMS/Test/CommonAssemblyInfo.cs" 
readonly="false" 
if="${file::exists('src/test/csharp/NMS/Test/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/test/csharp/NMS/Test/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -199,7 +199,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/NMS-test.dll" 
doc="${build.bin.dir}/NMS-test.xml">
+      output="${build.bin.dir}/NMS.Test.dll" 
doc="${build.bin.dir}/NMS.Test.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -215,8 +215,8 @@
   </target>
 
   <!-- Compile the activemq module -->
-  <target name="build-activemq" depends="init,build-nms" description="Build 
the activemq library">
-    <echo message="Building the activemq library" />
+  <target name="build-activemq" depends="init,build-nms" description="Build 
the NMS.ActiveMQ library">
+    <echo message="Building the NMS.ActiveMQ library" />
 
     <attrib file="src/main/csharp/ActiveMQ/CommonAssemblyInfo.cs" 
readonly="false" 
if="${file::exists('src/main/csharp/ActiveMQ/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/main/csharp/ActiveMQ/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -242,7 +242,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/ActiveMQ.dll" 
doc="${build.bin.dir}/ActiveMQ.xml">
+      output="${build.bin.dir}/NMS.ActiveMQ.dll" 
doc="${build.bin.dir}/NMS.ActiveMQ.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -258,8 +258,8 @@
   </target>
 
   <!-- Compile the activemq-test module -->
-  <target name="build-activemq-test" 
depends="init,build-nms,build-nms-test,build-activemq" description="Build the 
activemq-test library">
-    <echo message="Building the activemq-test library" />
+  <target name="build-activemq-test" 
depends="init,build-nms,build-nms-test,build-activemq" description="Build the 
NMS.ActiveMQ.Test library">
+    <echo message="Building the NMS.ActiveMQ.Test library" />
 
     <attrib file="src/test/csharp/ActiveMQ/CommonAssemblyInfo.cs" 
readonly="false" 
if="${file::exists('src/test/csharp/ActiveMQ/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/test/csharp/ActiveMQ/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -285,7 +285,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/ActiveMQ-test.dll" 
doc="${build.bin.dir}/ActiveMQ-test.xml">
+      output="${build.bin.dir}/NMS.ActiveMQ.Test.dll" 
doc="${build.bin.dir}/NMS.ActiveMQ.Test.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -296,15 +296,15 @@
         <include name="System.dll" asis="true"/>
         <include name="${lib.dir}/all/nunit/nunit.framework.dll"/>
         <include name="${build.bin.dir}/NMS.dll"/>
-        <include name="${build.bin.dir}/NMS-test.dll"/>
-        <include name="${build.bin.dir}/ActiveMQ.dll"/>
+        <include name="${build.bin.dir}/NMS.Test.dll"/>
+        <include name="${build.bin.dir}/NMS.ActiveMQ.dll"/>
       </references>
     </csc>
   </target>
 
-  <!-- Compile the stomp-test module -->
-  <target name="build-stomp-test" 
depends="init,build-nms,build-nms-test,build-activemq" description="Build the 
stomp-test library">
-    <echo message="Building the stomp-test library" />
+  <!-- Compile the Stomp.Test module -->
+  <target name="build-stomp-test" 
depends="init,build-nms,build-nms-test,build-activemq" description="Build the 
NMS.Stomp.Test library">
+    <echo message="Building the NMS.Stomp.Test library" />
 
     <attrib file="src/test/csharp/Stomp/CommonAssemblyInfo.cs" 
readonly="false" 
if="${file::exists('src/test/csharp/Stomp/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/test/csharp/Stomp/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -330,7 +330,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/stomp-test.dll" 
doc="${build.bin.dir}/stomp-test.xml">
+      output="${build.bin.dir}/NMS.Stomp.Test.dll" 
doc="${build.bin.dir}/NMS.Stomp.Test.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -341,19 +341,19 @@
         <include name="System.dll" asis="true"/>
         <include name="${lib.dir}/all/nunit/nunit.framework.dll"/>
         <include name="${build.bin.dir}/NMS.dll"/>
-        <include name="${build.bin.dir}/NMS-test.dll"/>
-        <include name="${build.bin.dir}/ActiveMQ.dll"/>
+        <include name="${build.bin.dir}/NMS.Test.dll"/>
+        <include name="${build.bin.dir}/NMS.ActiveMQ.dll"/>
       </references>
     </csc>
   </target>
 
-  <target name="build-msmq-on-windows" depends="init,build-nms" 
description="Build the msmq library" if="${platform::is-win32()}">
+  <target name="build-msmq-on-windows" depends="init,build-nms" 
description="Build the NMS.MSMQ library" if="${platform::is-win32()}">
        <call target="build-msmq" />
   </target>
   
   <!-- Compile the msmq module -->
-  <target name="build-msmq" depends="init,build-nms" description="Build the 
msmq library">
-       <echo message="Building the msmq library using 
${lib.framework.dir}/System.Messaging.dll" />
+  <target name="build-msmq" depends="init,build-nms" description="Build the 
NMS.MSMQ library">
+       <echo message="Building the NMS.MSMQ library using 
${lib.framework.dir}/System.Messaging.dll" />
 
     <attrib file="src/main/csharp/MSMQ/CommonAssemblyInfo.cs" readonly="false" 
if="${file::exists('src/main/csharp/MSMQ/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/main/csharp/MSMQ/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -380,7 +380,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/msmq.dll" doc="${build.bin.dir}/msmq.xml">
+      output="${build.bin.dir}/NMS.MSMQ.dll" 
doc="${build.bin.dir}/NMS.MSMQ.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -398,9 +398,9 @@
     </csc>
   </target>
 
-  <!-- Compile the msmq-test module -->
-  <target name="build-msmq-test" 
depends="init,build-nms,build-nms-test,build-msmq-on-windows" 
description="Build the msmq-test library" if="${platform::is-win32()}">
-    <echo message="Building the msmq-test library" />
+  <!-- Compile the msmq.Test module -->
+  <target name="build-msmq-test" 
depends="init,build-nms,build-nms-test,build-msmq-on-windows" 
description="Build the NMS.MSMQ.Test library" if="${platform::is-win32()}">
+    <echo message="Building the NMS.MSMQ.Test library" />
 
     <attrib file="src/test/csharp/MSMQ/CommonAssemblyInfo.cs" readonly="false" 
if="${file::exists('src/test/csharp/MSMQ/CommonAssemblyInfo.cs')}" />
     <asminfo output="src/test/csharp/MSMQ/CommonAssemblyInfo.cs" 
language="CSharp">
@@ -426,7 +426,7 @@
     </asminfo>
 
     <csc target="library" define="${current.build.defines}" 
warnaserror="false" debug="${build.debug}"
-      output="${build.bin.dir}/msmq-test.dll" 
doc="${build.bin.dir}/msmq-test.xml">
+      output="${build.bin.dir}/NMS.MSMQ.Test.dll" 
doc="${build.bin.dir}/NMS.MSMQ.Test.xml">
       <nowarn>
         <warning number="1591" /> <!-- do not report warnings for missing XML 
comments -->        <warning number="0618" /> <!-- do not report deprecation 
warnings -->
       </nowarn>
@@ -441,8 +441,8 @@
         <include name="System.Messaging.dll" />
         <include name="${lib.dir}/all/nunit/nunit.framework.dll"/>
         <include name="${build.bin.dir}/NMS.dll"/>
-        <include name="${build.bin.dir}/NMS-test.dll"/>
-        <include name="${build.bin.dir}/msmq.dll"/>
+        <include name="${build.bin.dir}/NMS.Test.dll"/>
+        <include name="${build.bin.dir}/NMS.MSMQ.dll"/>
       </references>
     </csc>
   </target>
@@ -454,21 +454,21 @@
   <target name="test" depends="build-activemq-test" description="Runs all the 
NUnit test cases">
     <nunit2>
       <formatter type="Plain" />
-      <test assemblyname="${build.bin.dir}/ActiveMQ-test.dll"></test>
+      <test assemblyname="${build.bin.dir}/NMS.ActiveMQ.Test.dll"></test>
     </nunit2>
   </target>
 
   <target name="test-case" depends="build-activemq-test" description="Run a 
specific NUnit test case using the 'test' variable">
     <nunit2>
       <formatter type="Plain" />
-      <test assemblyname="${build.bin.dir}/ActiveMQ-test.dll" 
testname="${test}"></test>
+      <test assemblyname="${build.bin.dir}/NMS.ActiveMQ.Test.dll" 
testname="${test}"></test>
     </nunit2>
   </target>
 
   <target name="test-stomp" depends="build-stomp-test" description="Runs all 
the NUnit test cases">
     <nunit2>
       <formatter type="Plain" />
-      <test assemblyname="${build.bin.dir}/stomp-test.dll"></test>
+      <test assemblyname="${build.bin.dir}/NMS.Stomp.Test.dll"></test>
     </nunit2>
   </target>
 
@@ -523,8 +523,8 @@
     <ndoc failonerror="false">
       <assemblies basedir="${build.bin.dir}">
         <include name="NMS.dll" />
-        <include name="ActiveMQ.dll" />
-        <include name="msmq.dll" if="${platform::is-win32()}"/>
+        <include name="NMS.ActiveMQ.dll" />
+        <include name="NMS.MSMQ.dll" if="${platform::is-win32()}"/>
       </assemblies>
       <summaries basedir="${basedir}/src/main/ndoc">
         <include name="NamespaceSummary.xml" />


Reply via email to