You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2011/10/31 19:09:12 UTC

svn commit: r1195587 - /activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml

Author: tabish
Date: Mon Oct 31 18:09:12 2011
New Revision: 1195587

URL: http://svn.apache.org/viewvc?rev=1195587&view=rev
Log:
Add missing framework exists check.

Modified:
    activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml

Modified: activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml?rev=1195587&r1=1195586&r2=1195587&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml Mon Oct 31 18:09:12 2011
@@ -230,7 +230,9 @@
         <property name="current.build.framework.sign" value="true" />
         <property name="link.sdkdoc.version" value="SDK_v7_0" />
         <property name="link.sdkdoc.web" value="true" />
-        <property name="nant.settings.currentframework" value="${current.build.framework}" />
+        <if test="${framework::exists(current.build.framework)}">
+            <property name="nant.settings.currentframework" value="${current.build.framework}" />
+        </if>
     </target>
 
     <target name="set-netcf-2.0-framework-configuration">