Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 75343 invoked from network); 31 Oct 2007 14:55:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Oct 2007 14:55:09 -0000 Received: (qmail 22331 invoked by uid 500); 31 Oct 2007 14:54:57 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 22298 invoked by uid 500); 31 Oct 2007 14:54:57 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 22289 invoked by uid 99); 31 Oct 2007 14:54:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Oct 2007 07:54:57 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Oct 2007 14:55:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2405B1A983A; Wed, 31 Oct 2007 07:54:37 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r590690 - in /activemq/activemq-dotnet/Apache.NMS/trunk: ./ src/main/csharp/ src/test/csharp/ Date: Wed, 31 Oct 2007 14:54:36 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071031145437.2405B1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Wed Oct 31 07:54:35 2007 New Revision: 590690 URL: http://svn.apache.org/viewvc?rev=590690&view=rev Log: Updated readme and removed sharpdevelop and monodevelop project files since we don't have an active maintainer for them Removed: activemq/activemq-dotnet/Apache.NMS/trunk/monodevelop-nms-test.mdp activemq/activemq-dotnet/Apache.NMS/trunk/monodevelop-nms.mdp activemq/activemq-dotnet/Apache.NMS/trunk/sharpdevelop-nms-test.csproj activemq/activemq-dotnet/Apache.NMS/trunk/sharpdevelop-nms.csproj activemq/activemq-dotnet/Apache.NMS/trunk/sharpdevelop-test.csproj Modified: activemq/activemq-dotnet/Apache.NMS/trunk/README.txt activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/CommonAssemblyInfo.cs activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/CommonAssemblyInfo.cs Modified: activemq/activemq-dotnet/Apache.NMS/trunk/README.txt URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/README.txt?rev=590690&r1=590689&r2=590690&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/trunk/README.txt (original) +++ activemq/activemq-dotnet/Apache.NMS/trunk/README.txt Wed Oct 31 07:54:35 2007 @@ -1,21 +1,18 @@ ======================================================================= Welcome to: - * NMS API : The .NET Messaging Service API - * NMS Client for Apache ActiveMQ - * NMS Client for MSMQ + * Apahce.NMS : The .NET Messaging Service API ======================================================================= -For more information see http://activemq.apache.org/nms.html +For more information see http://activemq.apache.org/nms ======================================================================= -Building With Visual Stuido 2005 +Building With Visual Studio 2005 ======================================================================= -Open the vs2005.sln Solution File. Build using "Build"->"Build Solution" +Open the solution File. Build using "Build"->"Build Solution" menu option. -The resulting DLLs will be in bin\Debug or the bin\Release directories -depending on you settings under "Build"->"Configuration Manager" +The resulting DLLs will be in build\${framework}\debug or the build\${framework}\release directories depending on you settings under "Build"->"Configuration Manager" If you have the Resharper plugin installed in Visual Studio, you can run all the Unit Tests by using the "ReSharper"->"Unit Testing"->"Run All @@ -23,64 +20,13 @@ Apache ActiveMQ Broker before kicking off the unit tests. ======================================================================= -Building With SharpDevelop 2.1 -======================================================================= - -SharpDevelop is an open source IDE that you can download from: -http://www.sharpdevelop.net/OpenSource/SD/Default.aspx - -Open the sharpdevelop.sln Solution File. Build using the -"Build"->"Build Solution" menu option. - -The resulting DLLs will be in bin\Debug or the bin\Release directories -depending on you settings under "Build"->"Set Configuration" - -To run the Unit Tests, you must first start an Apache ActiveMQ Broker -and then use the "View"->"Tools"->"Unit Tests" menu option. On the -newly displayed Unit Tests view, click the "Run tests" button. - -Note: Seems like the nunit integration in SharpDevelop still needs a -little work because on a WindowsXP x64 system, running the tests caused -some Unexpected Exception errors. - -======================================================================= -Building With monodevelop -======================================================================= - -monodevelop is an open source IDE that you can download from: -http://www.monodevelop.com/ - -Open the monodevelop.mds Solution File. Build using the -"Run"->"Build Solution" menu option. - -The resulting DLLs will be in bin\Debug or the bin\Release directories -depending on the configuration you have selected in the Build bar. - -======================================================================= Building With NAnt ======================================================================= -To build the code using NAnt type +To build the code using NAnt, run: nant - -To run the unit tests you need to run an Apache ActiveMQ Broker first then type - - nant test - -To generate the documentation type + +To generate the documentation, run: nant doc - - -Assuming that you have checked out the ActiveMQ code and the Site in peer directories such as - - -activemq/ - activemq-dotnet/ - -activemq-site/ - nms/ - ndoc/ - -So that generating the ndoc will copy the generate content into the ndoc directory so it can be deployed on the Apache website. Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/CommonAssemblyInfo.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/CommonAssemblyInfo.cs?rev=590690&r1=590689&r2=590690&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/CommonAssemblyInfo.cs (original) +++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/CommonAssemblyInfo.cs Wed Oct 31 07:54:35 2007 @@ -2,21 +2,20 @@ using System.Reflection; using System.Runtime.InteropServices; -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:2.0.50727.832 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ +// ------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Mono Runtime Version: 2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +// ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("Apache NMS Class Library")] -[assembly: AssemblyDescriptionAttribute("Apache NMS (.Net Messaging Library): An abstract interface to Message Oriented Mi" + - "ddleware (MOM) providers")] +[assembly: AssemblyDescriptionAttribute("Apache NMS (.Net Messaging Library): An abstract interface to Message Oriented Middleware (MOM) providers")] [assembly: AssemblyConfigurationAttribute("SNAPSHOT")] [assembly: AssemblyCompanyAttribute("http://activemq.apache.org/nms")] [assembly: AssemblyProductAttribute("Apache NMS Class Library")] Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/CommonAssemblyInfo.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/CommonAssemblyInfo.cs?rev=590690&r1=590689&r2=590690&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/CommonAssemblyInfo.cs (original) +++ activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/CommonAssemblyInfo.cs Wed Oct 31 07:54:35 2007 @@ -2,21 +2,20 @@ using System.Reflection; using System.Runtime.InteropServices; -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:2.0.50727.832 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ +// ------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Mono Runtime Version: 2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +// ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("Apache NMS Class Library")] -[assembly: AssemblyDescriptionAttribute("Apache NMS (.Net Messaging Library): An abstract interface to Message Oriented Mi" + - "ddleware (MOM) providers")] +[assembly: AssemblyDescriptionAttribute("Apache NMS (.Net Messaging Library): An abstract interface to Message Oriented Middleware (MOM) providers")] [assembly: AssemblyConfigurationAttribute("SNAPSHOT")] [assembly: AssemblyCompanyAttribute("http://activemq.apache.org/nms")] [assembly: AssemblyProductAttribute("Apache NMS Class Library")]