summaryrefslogtreecommitdiff
path: root/dotnet/README.txt
blob: 1c0be05c11aa77fa8d832fae6c33267603d91359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Info
====

AMQP version currently 0.8 (see /Qpid.Common/amqp.xml)


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