summaryrefslogtreecommitdiff
path: root/dotnet
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2008-12-12 12:36:46 +0000
committerAidan Skinner <aidan@apache.org>2008-12-12 12:36:46 +0000
commitc8ce51a29f249be7a4d738a2f3592c1d89fae66d (patch)
tree271d870cada2e2e8f21233e2b0bbeaec57e1c3ba /dotnet
parentf3ee893504bdddb71f5959447d6761ce3cb83fd7 (diff)
downloadqpid-python-c8ce51a29f249be7a4d738a2f3592c1d89fae66d.tar.gz
Correct protocol versions, removed duplicate build instructions.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@725984 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet')
-rw-r--r--dotnet/README.txt7
-rw-r--r--dotnet/README0-8.txt66
-rw-r--r--dotnet/RELEASE_NOTES.txt7
3 files changed, 7 insertions, 73 deletions
diff --git a/dotnet/README.txt b/dotnet/README.txt
index 617fd871d3..0199ad6410 100644
--- a/dotnet/README.txt
+++ b/dotnet/README.txt
@@ -1,10 +1,11 @@
Info
====
-There are two separate .NET clients: one that implements AMQP 0.9 and another that
-implements 0-10. 0-10 is required to communicate with the Qpid C++ broker.
+There are two separate .NET clients: one that implements AMQP 0-8 (and
+can communicate with the Java broker) and another that implements
+0-10 (and can communicate with the C++ broker).
-This README contains instructions for building the 0-9 client.
+This README contains instructions for building the 0-8 client.
Instructions for building and installing the 0-10 client are located in client-010/README.txt.
diff --git a/dotnet/README0-8.txt b/dotnet/README0-8.txt
deleted file mode 100644
index 86531b72d6..0000000000
--- a/dotnet/README0-8.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-
-Setup
-=====
-
-Install:
- Microsoft Visual Studio 2005 (VS2005)
- NAnt 0.85 - only required for builds outside VS2005 (.net 1.1, .net 2.0, mono 2.0)
- Ant 1.6.5
- Cygwin (or alternatively build via cmd but alter instructions below accordingly)
-
-Set up PATH to include Nant.exe:
-
- $ PATH=/cygdrive/c/WINDOWS/Microsoft.NET/Framework/v2.0.50727:$PATH
-
-Set up PATH to include ant:
-
- $ PATH=$ANT_HOME/bin:$PATH
-
-
-Building
-========
-
-Generate framing from /Qpid.Common/amqp.xml specificiation file:
-
- $ build-framing
-
-Alternatively, just switch to /Qpid.Common and run "ant" there.
-
-You can build from Visual Studio 2005 normally. Alternatively, you
-can build debug releases for any supported framework from the
-command line using Nant:
-
-To build .NET 2.0 executables (to bin/net-2.0):
-
- $ build-dotnet20
-
-To build .NET 1.1 executables (to bin/net-1.1):
-
- $ build-dotnet11
-
-To build for Mono on Linux (to bin/mono-2.0):
-
- $ build-mono
-
-
-Releasing
-=========
-
-For .NET 1.1
-
- $ release net-1.1
-
-Generates ./bin/net-1.1/release/Qpid.NET-net-1.1-yyyyMMdd.zip
-
-For .NET 2.0
-
- $ release net-2.0
-
-Generates ./bin/net-2.0/release/Qpid.NET-net-2.0-yyyyMMdd.zip
-
-For Mono
-
- $ release mono-2.0
-
-Generates ./bin/mono-2.0/release/Qpid.NET-mono-2.0-yyyyMMdd.zip
-
diff --git a/dotnet/RELEASE_NOTES.txt b/dotnet/RELEASE_NOTES.txt
index a9d867c41d..237f0278d9 100644
--- a/dotnet/RELEASE_NOTES.txt
+++ b/dotnet/RELEASE_NOTES.txt
@@ -1,8 +1,8 @@
Apache Incubator Qpid .NET M4 Release Notes
-------------------------------------------
-The Qpid M4 release contains support the for AMQP 0-10 and AMQP 0-8
-specification.
+The Qpid M4 release contains seperate clients that support the AMQP
+0-10 and AMQP 0-8 protocols.
For full details of Qpid capabilities, as they currently stand, see our
detailed project documentation at:
@@ -23,5 +23,4 @@ http://issues.apache.org/jira/browse/QPID
Changes since M3
----------------
-The major change since M3 has been the introduction of 0-10 support.
-
+The major change since M3 has been the addition of a new client which implements 0-10 support.