diff options
author | Ted Ross <tross@apache.org> | 2010-07-07 12:21:03 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2010-07-07 12:21:03 +0000 |
commit | 4c678fc32b10d5cf63c3b39c5df32b7ee5933e95 (patch) | |
tree | 54ba2cb5985c02d0bb88216a4b75e9dd0cb81e61 /cpp | |
parent | 86c6c8350b9875518fabe8abc7d8e45b94f9d4a6 (diff) | |
download | qpid-python-4c678fc32b10d5cf63c3b39c5df32b7ee5933e95.tar.gz |
QPID-2710 Patch from Chuck Rolke
C++ Messaging Client .NET binding is not compiled in SDK
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@961355 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/bld-winsdk.ps1 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/bld-winsdk.ps1 b/cpp/bld-winsdk.ps1 index 7aa6df81cd..ef9c263f1b 100644 --- a/cpp/bld-winsdk.ps1 +++ b/cpp/bld-winsdk.ps1 @@ -60,6 +60,10 @@ devenv qpid-cpp.sln /build "Release|Win32" /project docs-user-api devenv qpid-cpp.sln /build "Debug|Win32" /project INSTALL devenv qpid-cpp.sln /build "RelWithDebInfo|Win32" /project INSTALL +# Build the .NET binding +devenv .\bindings\qpid\dotnet\org.apache.qpid.messaging.sln /build "Debug|x86" /project org.apache.qpid.messaging +devenv .\bindings\qpid\dotnet\org.apache.qpid.messaging.sln /build "Debug|x86" /project org.apache.qpid.messaging.sessionreceiver + # This would be kludgy if we have only one entry as the array declaration syntax # can't cope with just one nested array # Target must be a directory @@ -126,6 +130,10 @@ foreach ($pattern in $preserve) { } Remove-Item -recurse $preserve_dir +# Install the .NET binding +Copy-Item -force -path "./src/Debug/org.apache.qpid.messaging*.dll" -destination "$install_dir/bin" +Copy-Item -force -path "./src/Debug/org.apache.qpid.messaging*.pdb" -destination "$install_dir/bin/DebugPDB" + # Zip the /bin PDB files into two zip files. # we previously arranged that the Debug pdbs go in the DebugPDB subdirectory # and the Release pdbs go in the ReleasePDB subdirectory |