diff options
-rw-r--r-- | dotnet/README.txt | 6 | ||||
-rwxr-xr-x | dotnet/build-mono (renamed from dotnet/build-mono20) | 5 | ||||
-rw-r--r-- | dotnet/release | 6 |
3 files changed, 9 insertions, 8 deletions
diff --git a/dotnet/README.txt b/dotnet/README.txt index ce808a8b35..10a755b9a7 100644 --- a/dotnet/README.txt +++ b/dotnet/README.txt @@ -39,7 +39,7 @@ To build .NET 1.1 executables via MsBee (to bin/FX_1_1/Debug): To build for Mono on Linux (to build/mono20): - $ build-mono20 + $ build-mono Releasing @@ -59,7 +59,7 @@ Generates ./build/release/Qpid.NET-1.0M1-dotnet20.zip For Mono - $ release mono20 1.0M1 + $ release mono 1.0M1 -Generates ./build/release/Qpid.NET-1.0M1-mono20.zip +Generates ./build/release/Qpid.NET-1.0M1-mono.zip diff --git a/dotnet/build-mono20 b/dotnet/build-mono index 52558c8426..83a8198307 100755 --- a/dotnet/build-mono20 +++ b/dotnet/build-mono @@ -7,7 +7,9 @@ # Note: XBuild is a clone of MSBuild. # -MCS_FLAGS="-debug+" +#MCS_FLAGS="-debug+" +MCS_FLAGS="-optimize" +outDir=$PWD/build/mono FindExternalReferences() { @@ -66,7 +68,6 @@ Build() ) } -outDir=$PWD/build/mono20 mkdir -p $outDir # Tried to magically get projects from Qpid.NET.sln but wrong order for building.. diff --git a/dotnet/release b/dotnet/release index d4ecd84ede..077499aa89 100644 --- a/dotnet/release +++ b/dotnet/release @@ -2,7 +2,7 @@ Usage() { - echo "usage: $0 dotnet11|dotnet20|mono20 release-number (e.g. 2.0.1)" + echo "usage: $0 dotnet11|dotnet20|mono release-number (e.g. 2.0.1)" exit 2 } @@ -17,8 +17,8 @@ if [[ $dotNetVersion == "dotnet11" ]]; then binDir=Qpid.Client.Tests/bin/FX1_1/Release elif [[ $dotNetVersion == "dotnet20" ]]; then binDir=qpid.client.tests/bin/release -elif [[ $dotNetVersion == "mono20" ]]; then - binDir=build/mono20 +elif [[ $dotNetVersion == "mono" ]]; then + binDir=build/mono else Usage fi |