From a96cc1c44a02e7d438e160c220090dd080fa414c Mon Sep 17 00:00:00 2001 From: "Charles E. Rolke" Date: Fri, 11 Nov 2011 17:41:55 +0000 Subject: QPID-2643 Visual Studio 2010 For the WinSDK kit: generate VS2010 .NET examples solution and project files. Organize them into msvc9 and msvc10 directories. Tidy up the EXTRA_DIST reflection coincidently with the file moves and adds. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1200986 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/bindings/qpid/dotnet/Makefile.am | 39 +++-- .../csharp.direct.receiver.csproj | 101 ------------ .../csharp.direct.sender.csproj | 84 ---------- .../csharp.example.client.csproj | 101 ------------ .../csharp.example.declare_queues.csproj | 101 ------------ .../csharp.example.drain.csproj | 102 ------------ .../csharp.example.helloworld.csproj | 101 ------------ .../csharp.example.server.csproj | 101 ------------ .../csharp.example.spout.csproj | 103 ------------ .../csharp.map.callback.receiver.csproj | 106 ------------ .../csharp.map.callback.sender.csproj | 105 ------------ .../csharp.map.receiver/csharp.map.receiver.csproj | 101 ------------ .../csharp.map.sender/csharp.map.sender.csproj | 101 ------------ .../csharp.direct.receiver.csproj | 106 ++++++++++++ .../csharp.direct.sender.csproj | 89 +++++++++++ .../csharp.example.client.csproj | 106 ++++++++++++ .../csharp.example.declare_queues.csproj | 106 ++++++++++++ .../csharp.example.drain.csproj | 107 +++++++++++++ .../csharp.example.helloworld.csproj | 106 ++++++++++++ .../csharp.example.server.csproj | 106 ++++++++++++ .../csharp.example.spout.csproj | 108 +++++++++++++ .../csharp.map.callback.receiver.csproj | 111 +++++++++++++ .../csharp.map.callback.sender.csproj | 110 +++++++++++++ .../csharp.map.receiver/csharp.map.receiver.csproj | 106 ++++++++++++ .../csharp.map.sender/csharp.map.sender.csproj | 106 ++++++++++++ .../msvc10/winsdk_dotnet_examples.sln | 161 +++++++++++++++++++ .../csharp.direct.receiver.csproj | 101 ++++++++++++ .../csharp.direct.sender.csproj | 84 ++++++++++ .../csharp.example.client.csproj | 101 ++++++++++++ .../csharp.example.declare_queues.csproj | 101 ++++++++++++ .../csharp.example.drain.csproj | 102 ++++++++++++ .../csharp.example.helloworld.csproj | 101 ++++++++++++ .../csharp.example.server.csproj | 101 ++++++++++++ .../csharp.example.spout.csproj | 103 ++++++++++++ .../csharp.map.callback.receiver.csproj | 106 ++++++++++++ .../csharp.map.callback.sender.csproj | 105 ++++++++++++ .../csharp.map.receiver/csharp.map.receiver.csproj | 101 ++++++++++++ .../csharp.map.sender/csharp.map.sender.csproj | 101 ++++++++++++ .../msvc9/winsdk_dotnet_examples.sln | 178 +++++++++++++++++++++ .../winsdk_sources/winsdk_dotnet_examples.sln | 178 --------------------- 40 files changed, 2839 insertions(+), 1398 deletions(-) delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.receiver/csharp.direct.receiver.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.sender/csharp.direct.sender.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.client/csharp.example.client.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.drain/csharp.example.drain.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.helloworld/csharp.example.helloworld.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.server/csharp.example.server.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.spout/csharp.example.spout.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.receiver/csharp.map.receiver.csproj delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.sender/csharp.map.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/winsdk_dotnet_examples.sln create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/winsdk_dotnet_examples.sln delete mode 100644 cpp/bindings/qpid/dotnet/winsdk_sources/winsdk_dotnet_examples.sln (limited to 'cpp/bindings/qpid') diff --git a/cpp/bindings/qpid/dotnet/Makefile.am b/cpp/bindings/qpid/dotnet/Makefile.am index baa5e39731..f212a37bbe 100644 --- a/cpp/bindings/qpid/dotnet/Makefile.am +++ b/cpp/bindings/qpid/dotnet/Makefile.am @@ -130,19 +130,32 @@ EXTRA_DIST = configure-windows.ps1 \ test/messaging.test/msvc10/messaging.test.csproj \ test/messaging.test/msvc9/messaging.test.csproj \ test/messaging.test/Properties/AssemblyInfo.cs \ - winsdk_sources/examples/csharp.direct.receiver/csharp.direct.receiver.csproj \ - winsdk_sources/examples/csharp.direct.sender/csharp.direct.sender.csproj \ - winsdk_sources/examples/csharp.example.client/csharp.example.client.csproj \ - winsdk_sources/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ - winsdk_sources/examples/csharp.example.drain/csharp.example.drain.csproj \ - winsdk_sources/examples/csharp.example.helloworld/csharp.example.helloworld.csproj \ - winsdk_sources/examples/csharp.example.server/csharp.example.server.csproj \ - winsdk_sources/examples/csharp.example.spout/csharp.example.spout.csproj \ - winsdk_sources/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ - winsdk_sources/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ - winsdk_sources/examples/csharp.map.receiver/csharp.map.receiver.csproj \ - winsdk_sources/examples/csharp.map.sender/csharp.map.sender.csproj \ - winsdk_sources/winsdk_dotnet_examples.sln \ + winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj \ + winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj \ + winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj \ + winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ + winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj \ + winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj \ + winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj \ + winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj \ + winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ + winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ + winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj \ + winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj \ + winsdk_sources/msvc10/winsdk_dotnet_examples.sln \ + winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj \ + winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj \ + winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj \ + winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ + winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj \ + winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj \ + winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj \ + winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj \ + winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ + winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ + winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj \ + winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj \ + winsdk_sources/msvc9/winsdk_dotnet_examples.sln \ ../../../src/windows/resources/qpid-icon.ico \ ../../../src/windows/resources/template-resource.rc \ ../../../src/windows/resources/version-resource.h diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.receiver/csharp.direct.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.receiver/csharp.direct.receiver.csproj deleted file mode 100644 index 8a45098f73..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.receiver/csharp.direct.receiver.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {52F880E7-D677-4C91-8516-D679CE0F46A8} - Exe - Properties - csharp.direct.receiver - csharp.direct.receiver - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.sender/csharp.direct.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.sender/csharp.direct.sender.csproj deleted file mode 100644 index 5f39484ee0..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.direct.sender/csharp.direct.sender.csproj +++ /dev/null @@ -1,84 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068} - Exe - Properties - csharp.direct.sender - csharp.direct.sender - v3.5 - 512 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.client/csharp.example.client.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.client/csharp.example.client.csproj deleted file mode 100644 index f07274c339..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.client/csharp.example.client.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {0DE01712-C2D1-4CA4-B42C-5856456A8696} - Exe - Properties - csharp.example.client - csharp.example.client - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj deleted file mode 100644 index e520a3351f..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {E31B349C-830C-4583-8BD9-30DA4398349F} - Exe - Properties - csharp.example.declare_queues - csharp.example.declare_queues - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.drain/csharp.example.drain.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.drain/csharp.example.drain.csproj deleted file mode 100644 index 8b4b89541c..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.drain/csharp.example.drain.csproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {C43DEB69-8088-420B-B0CA-C699535E6D08} - Exe - Properties - csharp.example.drain - csharp.example.drain - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.helloworld/csharp.example.helloworld.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.helloworld/csharp.example.helloworld.csproj deleted file mode 100644 index 627495348b..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.helloworld/csharp.example.helloworld.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {8CC1C265-0507-44A3-9483-8FAF48513F4D} - Exe - Properties - csharp.example.helloworld - csharp.example.helloworld - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.server/csharp.example.server.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.server/csharp.example.server.csproj deleted file mode 100644 index 473078f7ca..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.server/csharp.example.server.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {090A081D-E8B5-4949-AA43-EE182B7101E3} - Exe - Properties - csharp.example.server - csharp.example.server - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.spout/csharp.example.spout.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.spout/csharp.example.spout.csproj deleted file mode 100644 index 26009880a4..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.example.spout/csharp.example.spout.csproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {EB36626D-36C2-41B3-B65E-762BAF27F137} - Exe - Properties - csharp.example.spout - csharp.example.spout - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj deleted file mode 100644 index 02f8a63282..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {68A43817-2358-4A31-8FDF-FE21722BFBCF} - Exe - Properties - csharp.map.callback.receiver - csharp.map.callback.receiver - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.sessionreceiver.dll - - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj deleted file mode 100644 index 56b9f285a3..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj +++ /dev/null @@ -1,105 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A} - Exe - Properties - csharp.map.callback.sender - csharp.map.callback.sender - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - true - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - true - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - true - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.receiver/csharp.map.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.receiver/csharp.map.receiver.csproj deleted file mode 100644 index ac0a4e144d..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.receiver/csharp.map.receiver.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9} - Exe - Properties - csharp.map.receiver - csharp.map.receiver - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.sender/csharp.map.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.sender/csharp.map.sender.csproj deleted file mode 100644 index eef669291b..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/examples/csharp.map.sender/csharp.map.sender.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x86 - 9.0.21022 - 2.0 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10} - Exe - Properties - csharp.map.sender - csharp.map.sender - v3.5 - 512 - - - true - full - false - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - $(ProjectDir)..\..\..\bin\ - TRACE - prompt - 4 - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x86 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x86 - prompt - - - true - $(ProjectDir)..\..\..\bin\ - DEBUG;TRACE - full - x64 - prompt - - - $(ProjectDir)..\..\..\bin\ - TRACE - true - pdbonly - x64 - prompt - - - - False - $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll - - - - - - - - - diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj new file mode 100644 index 0000000000..25894a3357 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {52F880E7-D677-4C91-8516-D679CE0F46A8} + Exe + Properties + csharp.direct.receiver + csharp.direct.receiver + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj new file mode 100644 index 0000000000..71cc77d050 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj @@ -0,0 +1,89 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068} + Exe + Properties + csharp.direct.sender + csharp.direct.sender + v3.5 + 512 + + + + + 3.5 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj new file mode 100644 index 0000000000..5dbde7ad4e --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {0DE01712-C2D1-4CA4-B42C-5856456A8696} + Exe + Properties + csharp.example.client + csharp.example.client + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj new file mode 100644 index 0000000000..ed59f00163 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {E31B349C-830C-4583-8BD9-30DA4398349F} + Exe + Properties + csharp.example.declare_queues + csharp.example.declare_queues + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj new file mode 100644 index 0000000000..8df01efa6c --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj @@ -0,0 +1,107 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {C43DEB69-8088-420B-B0CA-C699535E6D08} + Exe + Properties + csharp.example.drain + csharp.example.drain + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj new file mode 100644 index 0000000000..fd9df286cd --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {8CC1C265-0507-44A3-9483-8FAF48513F4D} + Exe + Properties + csharp.example.helloworld + csharp.example.helloworld + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj new file mode 100644 index 0000000000..55fd496528 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {090A081D-E8B5-4949-AA43-EE182B7101E3} + Exe + Properties + csharp.example.server + csharp.example.server + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj new file mode 100644 index 0000000000..67e35cc669 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj @@ -0,0 +1,108 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {EB36626D-36C2-41B3-B65E-762BAF27F137} + Exe + Properties + csharp.example.spout + csharp.example.spout + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj new file mode 100644 index 0000000000..2910bafb6b --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj @@ -0,0 +1,111 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {68A43817-2358-4A31-8FDF-FE21722BFBCF} + Exe + Properties + csharp.map.callback.receiver + csharp.map.callback.receiver + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.sessionreceiver.dll + + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj new file mode 100644 index 0000000000..4739818718 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A} + Exe + Properties + csharp.map.callback.sender + csharp.map.callback.sender + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + true + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + true + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + true + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj new file mode 100644 index 0000000000..ab1fe9ddcf --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9} + Exe + Properties + csharp.map.receiver + csharp.map.receiver + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj new file mode 100644 index 0000000000..bf79556bfd --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10} + Exe + Properties + csharp.map.sender + csharp.map.sender + v3.5 + 512 + + + + + 3.5 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/winsdk_dotnet_examples.sln b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/winsdk_dotnet_examples.sln new file mode 100644 index 0000000000..d823e9de63 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc10/winsdk_dotnet_examples.sln @@ -0,0 +1,161 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.sender", "examples\csharp.direct.sender\csharp.direct.sender.csproj", "{7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.receiver", "examples\csharp.direct.receiver\csharp.direct.receiver.csproj", "{52F880E7-D677-4C91-8516-D679CE0F46A8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.sender", "examples\csharp.map.sender\csharp.map.sender.csproj", "{5D8252F5-E1D3-44A0-94C7-7CB75E843C10}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.receiver", "examples\csharp.map.receiver\csharp.map.receiver.csproj", "{AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.receiver", "examples\csharp.map.callback.receiver\csharp.map.callback.receiver.csproj", "{68A43817-2358-4A31-8FDF-FE21722BFBCF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.sender", "examples\csharp.map.callback.sender\csharp.map.callback.sender.csproj", "{12F1C14F-5C7D-4075-9BAE-C091394FF99A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.client", "examples\csharp.example.client\csharp.example.client.csproj", "{0DE01712-C2D1-4CA4-B42C-5856456A8696}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.server", "examples\csharp.example.server\csharp.example.server.csproj", "{090A081D-E8B5-4949-AA43-EE182B7101E3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.drain", "examples\csharp.example.drain\csharp.example.drain.csproj", "{C43DEB69-8088-420B-B0CA-C699535E6D08}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.spout", "examples\csharp.example.spout\csharp.example.spout.csproj", "{EB36626D-36C2-41B3-B65E-762BAF27F137}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.declare_queues", "examples\csharp.example.declare_queues\csharp.example.declare_queues.csproj", "{E31B349C-830C-4583-8BD9-30DA4398349F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.helloworld", "examples\csharp.example.helloworld\csharp.example.helloworld.csproj", "{8CC1C265-0507-44A3-9483-8FAF48513F4D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|Win32.ActiveCfg = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.ActiveCfg = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.Build.0 = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.ActiveCfg = Debug|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.Build.0 = Debug|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|Win32.ActiveCfg = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.ActiveCfg = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.Build.0 = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.ActiveCfg = Release|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.Build.0 = Release|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|Win32.ActiveCfg = Debug|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.ActiveCfg = Debug|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.Build.0 = Debug|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.ActiveCfg = Debug|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.Build.0 = Debug|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|Win32.ActiveCfg = Release|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.ActiveCfg = Release|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.Build.0 = Release|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.ActiveCfg = Release|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.Build.0 = Release|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|Win32.ActiveCfg = Debug|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.ActiveCfg = Debug|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.Build.0 = Debug|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.ActiveCfg = Debug|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.Build.0 = Debug|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|Win32.ActiveCfg = Release|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.ActiveCfg = Release|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.Build.0 = Release|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.ActiveCfg = Release|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.Build.0 = Release|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|Win32.ActiveCfg = Debug|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.ActiveCfg = Debug|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.Build.0 = Debug|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.ActiveCfg = Debug|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.Build.0 = Debug|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|Win32.ActiveCfg = Release|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.ActiveCfg = Release|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.Build.0 = Release|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.ActiveCfg = Release|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.Build.0 = Release|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|Win32.ActiveCfg = Debug|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.ActiveCfg = Debug|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.Build.0 = Debug|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.ActiveCfg = Debug|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.Build.0 = Debug|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|Win32.ActiveCfg = Release|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.ActiveCfg = Release|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.Build.0 = Release|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.ActiveCfg = Release|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.Build.0 = Release|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|Win32.ActiveCfg = Debug|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.ActiveCfg = Debug|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.Build.0 = Debug|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.ActiveCfg = Debug|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.Build.0 = Debug|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|Win32.ActiveCfg = Release|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.ActiveCfg = Release|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.Build.0 = Release|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.ActiveCfg = Release|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.Build.0 = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|Win32.ActiveCfg = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.ActiveCfg = Debug|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.Build.0 = Debug|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.ActiveCfg = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.Build.0 = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|Win32.ActiveCfg = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.ActiveCfg = Release|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.Build.0 = Release|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.ActiveCfg = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.Build.0 = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|Win32.ActiveCfg = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.ActiveCfg = Debug|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.Build.0 = Debug|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.ActiveCfg = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.Build.0 = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|Win32.ActiveCfg = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.ActiveCfg = Release|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.Build.0 = Release|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.ActiveCfg = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.Build.0 = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|Win32.ActiveCfg = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.ActiveCfg = Debug|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.Build.0 = Debug|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.ActiveCfg = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.Build.0 = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|Win32.ActiveCfg = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.ActiveCfg = Release|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.Build.0 = Release|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.ActiveCfg = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.Build.0 = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|Win32.ActiveCfg = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.ActiveCfg = Debug|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.Build.0 = Debug|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.ActiveCfg = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.Build.0 = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|Win32.ActiveCfg = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.ActiveCfg = Release|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.Build.0 = Release|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.ActiveCfg = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.Build.0 = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|Win32.ActiveCfg = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.ActiveCfg = Debug|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.Build.0 = Debug|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.ActiveCfg = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.Build.0 = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|Win32.ActiveCfg = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.ActiveCfg = Release|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.Build.0 = Release|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.ActiveCfg = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.Build.0 = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|Win32.ActiveCfg = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.ActiveCfg = Debug|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.Build.0 = Debug|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.ActiveCfg = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.Build.0 = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|Win32.ActiveCfg = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.ActiveCfg = Release|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.Build.0 = Release|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.ActiveCfg = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj new file mode 100644 index 0000000000..8a45098f73 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {52F880E7-D677-4C91-8516-D679CE0F46A8} + Exe + Properties + csharp.direct.receiver + csharp.direct.receiver + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj new file mode 100644 index 0000000000..5f39484ee0 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj @@ -0,0 +1,84 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068} + Exe + Properties + csharp.direct.sender + csharp.direct.sender + v3.5 + 512 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj new file mode 100644 index 0000000000..f07274c339 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {0DE01712-C2D1-4CA4-B42C-5856456A8696} + Exe + Properties + csharp.example.client + csharp.example.client + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj new file mode 100644 index 0000000000..e520a3351f --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {E31B349C-830C-4583-8BD9-30DA4398349F} + Exe + Properties + csharp.example.declare_queues + csharp.example.declare_queues + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj new file mode 100644 index 0000000000..8b4b89541c --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj @@ -0,0 +1,102 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {C43DEB69-8088-420B-B0CA-C699535E6D08} + Exe + Properties + csharp.example.drain + csharp.example.drain + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj new file mode 100644 index 0000000000..627495348b --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {8CC1C265-0507-44A3-9483-8FAF48513F4D} + Exe + Properties + csharp.example.helloworld + csharp.example.helloworld + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj new file mode 100644 index 0000000000..473078f7ca --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {090A081D-E8B5-4949-AA43-EE182B7101E3} + Exe + Properties + csharp.example.server + csharp.example.server + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj new file mode 100644 index 0000000000..26009880a4 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj @@ -0,0 +1,103 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {EB36626D-36C2-41B3-B65E-762BAF27F137} + Exe + Properties + csharp.example.spout + csharp.example.spout + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj new file mode 100644 index 0000000000..02f8a63282 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj @@ -0,0 +1,106 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {68A43817-2358-4A31-8FDF-FE21722BFBCF} + Exe + Properties + csharp.map.callback.receiver + csharp.map.callback.receiver + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.sessionreceiver.dll + + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj new file mode 100644 index 0000000000..56b9f285a3 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj @@ -0,0 +1,105 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A} + Exe + Properties + csharp.map.callback.sender + csharp.map.callback.sender + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + true + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + true + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + true + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj new file mode 100644 index 0000000000..ac0a4e144d --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9} + Exe + Properties + csharp.map.receiver + csharp.map.receiver + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj new file mode 100644 index 0000000000..eef669291b --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj @@ -0,0 +1,101 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10} + Exe + Properties + csharp.map.sender + csharp.map.sender + v3.5 + 512 + + + true + full + false + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(ProjectDir)..\..\..\bin\ + TRACE + prompt + 4 + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x86 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(ProjectDir)..\..\..\bin\ + DEBUG;TRACE + full + x64 + prompt + + + $(ProjectDir)..\..\..\bin\ + TRACE + true + pdbonly + x64 + prompt + + + + False + $(ProjectDir)..\..\..\bin\org.apache.qpid.messaging.dll + + + + + + + + + diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/winsdk_dotnet_examples.sln b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/winsdk_dotnet_examples.sln new file mode 100644 index 0000000000..6db55b5590 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/winsdk_sources/msvc9/winsdk_dotnet_examples.sln @@ -0,0 +1,178 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 + +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License +# + +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.sender", "examples\csharp.direct.sender\csharp.direct.sender.csproj", "{7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.receiver", "examples\csharp.direct.receiver\csharp.direct.receiver.csproj", "{52F880E7-D677-4C91-8516-D679CE0F46A8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.sender", "examples\csharp.map.sender\csharp.map.sender.csproj", "{5D8252F5-E1D3-44A0-94C7-7CB75E843C10}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.receiver", "examples\csharp.map.receiver\csharp.map.receiver.csproj", "{AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.receiver", "examples\csharp.map.callback.receiver\csharp.map.callback.receiver.csproj", "{68A43817-2358-4A31-8FDF-FE21722BFBCF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.sender", "examples\csharp.map.callback.sender\csharp.map.callback.sender.csproj", "{12F1C14F-5C7D-4075-9BAE-C091394FF99A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.client", "examples\csharp.example.client\csharp.example.client.csproj", "{0DE01712-C2D1-4CA4-B42C-5856456A8696}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.server", "examples\csharp.example.server\csharp.example.server.csproj", "{090A081D-E8B5-4949-AA43-EE182B7101E3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.drain", "examples\csharp.example.drain\csharp.example.drain.csproj", "{C43DEB69-8088-420B-B0CA-C699535E6D08}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.spout", "examples\csharp.example.spout\csharp.example.spout.csproj", "{EB36626D-36C2-41B3-B65E-762BAF27F137}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.declare_queues", "examples\csharp.example.declare_queues\csharp.example.declare_queues.csproj", "{E31B349C-830C-4583-8BD9-30DA4398349F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.helloworld", "examples\csharp.example.helloworld\csharp.example.helloworld.csproj", "{8CC1C265-0507-44A3-9483-8FAF48513F4D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|Win32.ActiveCfg = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.ActiveCfg = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.Build.0 = Debug|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.ActiveCfg = Debug|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.Build.0 = Debug|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|Win32.ActiveCfg = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.ActiveCfg = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.Build.0 = Release|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.ActiveCfg = Release|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.Build.0 = Release|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.ActiveCfg = Debug|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.Build.0 = Debug|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.ActiveCfg = Debug|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.Build.0 = Debug|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.ActiveCfg = Release|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.Build.0 = Release|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.ActiveCfg = Release|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.Build.0 = Release|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.ActiveCfg = Debug|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.Build.0 = Debug|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.ActiveCfg = Debug|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.Build.0 = Debug|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.ActiveCfg = Release|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.Build.0 = Release|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.ActiveCfg = Release|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.Build.0 = Release|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.ActiveCfg = Debug|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.Build.0 = Debug|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.ActiveCfg = Debug|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.Build.0 = Debug|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.ActiveCfg = Release|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.Build.0 = Release|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.ActiveCfg = Release|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.Build.0 = Release|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.ActiveCfg = Debug|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.Build.0 = Debug|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.ActiveCfg = Debug|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.Build.0 = Debug|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.ActiveCfg = Release|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.Build.0 = Release|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.ActiveCfg = Release|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.Build.0 = Release|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.ActiveCfg = Debug|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.Build.0 = Debug|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.ActiveCfg = Debug|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.Build.0 = Debug|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.ActiveCfg = Release|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.Build.0 = Release|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.ActiveCfg = Release|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.Build.0 = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|Win32.ActiveCfg = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.ActiveCfg = Debug|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.Build.0 = Debug|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.ActiveCfg = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.Build.0 = Debug|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|Win32.ActiveCfg = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.ActiveCfg = Release|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.Build.0 = Release|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.ActiveCfg = Release|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.Build.0 = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|Win32.ActiveCfg = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.ActiveCfg = Debug|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.Build.0 = Debug|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.ActiveCfg = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.Build.0 = Debug|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|Win32.ActiveCfg = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.ActiveCfg = Release|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.Build.0 = Release|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.ActiveCfg = Release|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.Build.0 = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|Win32.ActiveCfg = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.ActiveCfg = Debug|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.Build.0 = Debug|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.ActiveCfg = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.Build.0 = Debug|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|Win32.ActiveCfg = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.ActiveCfg = Release|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.Build.0 = Release|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.ActiveCfg = Release|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.Build.0 = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|Win32.ActiveCfg = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.ActiveCfg = Debug|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.Build.0 = Debug|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.ActiveCfg = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.Build.0 = Debug|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|Win32.ActiveCfg = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.ActiveCfg = Release|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.Build.0 = Release|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.ActiveCfg = Release|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.Build.0 = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|Win32.ActiveCfg = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.ActiveCfg = Debug|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.Build.0 = Debug|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.ActiveCfg = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.Build.0 = Debug|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|Win32.ActiveCfg = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.ActiveCfg = Release|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.Build.0 = Release|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.ActiveCfg = Release|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.Build.0 = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|Win32.ActiveCfg = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.ActiveCfg = Debug|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.Build.0 = Debug|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.ActiveCfg = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.Build.0 = Debug|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|Win32.ActiveCfg = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.ActiveCfg = Release|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.Build.0 = Release|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.ActiveCfg = Release|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.Build.0 = Release|x86 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|Win32.ActiveCfg = Debug|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|Win32.Build.0 = Debug|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|x64.ActiveCfg = Debug|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|x86.ActiveCfg = Debug|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|Win32.ActiveCfg = Release|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|Win32.Build.0 = Release|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|x64.ActiveCfg = Release|Win32 + {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|x86.ActiveCfg = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/cpp/bindings/qpid/dotnet/winsdk_sources/winsdk_dotnet_examples.sln b/cpp/bindings/qpid/dotnet/winsdk_sources/winsdk_dotnet_examples.sln deleted file mode 100644 index 6db55b5590..0000000000 --- a/cpp/bindings/qpid/dotnet/winsdk_sources/winsdk_dotnet_examples.sln +++ /dev/null @@ -1,178 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 - -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License -# - -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.sender", "examples\csharp.direct.sender\csharp.direct.sender.csproj", "{7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.receiver", "examples\csharp.direct.receiver\csharp.direct.receiver.csproj", "{52F880E7-D677-4C91-8516-D679CE0F46A8}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.sender", "examples\csharp.map.sender\csharp.map.sender.csproj", "{5D8252F5-E1D3-44A0-94C7-7CB75E843C10}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.receiver", "examples\csharp.map.receiver\csharp.map.receiver.csproj", "{AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.receiver", "examples\csharp.map.callback.receiver\csharp.map.callback.receiver.csproj", "{68A43817-2358-4A31-8FDF-FE21722BFBCF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.sender", "examples\csharp.map.callback.sender\csharp.map.callback.sender.csproj", "{12F1C14F-5C7D-4075-9BAE-C091394FF99A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.client", "examples\csharp.example.client\csharp.example.client.csproj", "{0DE01712-C2D1-4CA4-B42C-5856456A8696}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.server", "examples\csharp.example.server\csharp.example.server.csproj", "{090A081D-E8B5-4949-AA43-EE182B7101E3}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.drain", "examples\csharp.example.drain\csharp.example.drain.csproj", "{C43DEB69-8088-420B-B0CA-C699535E6D08}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.spout", "examples\csharp.example.spout\csharp.example.spout.csproj", "{EB36626D-36C2-41B3-B65E-762BAF27F137}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.declare_queues", "examples\csharp.example.declare_queues\csharp.example.declare_queues.csproj", "{E31B349C-830C-4583-8BD9-30DA4398349F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.helloworld", "examples\csharp.example.helloworld\csharp.example.helloworld.csproj", "{8CC1C265-0507-44A3-9483-8FAF48513F4D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|Win32.ActiveCfg = Debug|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.ActiveCfg = Debug|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x64.Build.0 = Debug|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.ActiveCfg = Debug|x86 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Debug|x86.Build.0 = Debug|x86 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|Win32.ActiveCfg = Release|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.ActiveCfg = Release|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x64.Build.0 = Release|x64 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.ActiveCfg = Release|x86 - {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.Release|x86.Build.0 = Release|x86 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.ActiveCfg = Debug|x64 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x64.Build.0 = Debug|x64 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.ActiveCfg = Debug|x86 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Debug|x86.Build.0 = Debug|x86 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.ActiveCfg = Release|x64 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x64.Build.0 = Release|x64 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.ActiveCfg = Release|x86 - {52F880E7-D677-4C91-8516-D679CE0F46A8}.Release|x86.Build.0 = Release|x86 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.ActiveCfg = Debug|x64 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x64.Build.0 = Debug|x64 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.ActiveCfg = Debug|x86 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Debug|x86.Build.0 = Debug|x86 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.ActiveCfg = Release|x64 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x64.Build.0 = Release|x64 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.ActiveCfg = Release|x86 - {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.Release|x86.Build.0 = Release|x86 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.ActiveCfg = Debug|x64 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x64.Build.0 = Debug|x64 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.ActiveCfg = Debug|x86 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Debug|x86.Build.0 = Debug|x86 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.ActiveCfg = Release|x64 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x64.Build.0 = Release|x64 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.ActiveCfg = Release|x86 - {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.Release|x86.Build.0 = Release|x86 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.ActiveCfg = Debug|x64 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x64.Build.0 = Debug|x64 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.ActiveCfg = Debug|x86 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Debug|x86.Build.0 = Debug|x86 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.ActiveCfg = Release|x64 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x64.Build.0 = Release|x64 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.ActiveCfg = Release|x86 - {68A43817-2358-4A31-8FDF-FE21722BFBCF}.Release|x86.Build.0 = Release|x86 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.ActiveCfg = Debug|x64 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x64.Build.0 = Debug|x64 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.ActiveCfg = Debug|x86 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Debug|x86.Build.0 = Debug|x86 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.ActiveCfg = Release|x64 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x64.Build.0 = Release|x64 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.ActiveCfg = Release|x86 - {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.Release|x86.Build.0 = Release|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|Win32.ActiveCfg = Debug|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.ActiveCfg = Debug|x64 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x64.Build.0 = Debug|x64 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.ActiveCfg = Debug|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Debug|x86.Build.0 = Debug|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|Win32.ActiveCfg = Release|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.ActiveCfg = Release|x64 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x64.Build.0 = Release|x64 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.ActiveCfg = Release|x86 - {0DE01712-C2D1-4CA4-B42C-5856456A8696}.Release|x86.Build.0 = Release|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|Win32.ActiveCfg = Debug|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.ActiveCfg = Debug|x64 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x64.Build.0 = Debug|x64 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.ActiveCfg = Debug|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Debug|x86.Build.0 = Debug|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|Win32.ActiveCfg = Release|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.ActiveCfg = Release|x64 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x64.Build.0 = Release|x64 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.ActiveCfg = Release|x86 - {090A081D-E8B5-4949-AA43-EE182B7101E3}.Release|x86.Build.0 = Release|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|Win32.ActiveCfg = Debug|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.ActiveCfg = Debug|x64 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x64.Build.0 = Debug|x64 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.ActiveCfg = Debug|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Debug|x86.Build.0 = Debug|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|Win32.ActiveCfg = Release|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.ActiveCfg = Release|x64 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x64.Build.0 = Release|x64 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.ActiveCfg = Release|x86 - {C43DEB69-8088-420B-B0CA-C699535E6D08}.Release|x86.Build.0 = Release|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|Win32.ActiveCfg = Debug|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.ActiveCfg = Debug|x64 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x64.Build.0 = Debug|x64 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.ActiveCfg = Debug|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Debug|x86.Build.0 = Debug|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|Win32.ActiveCfg = Release|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.ActiveCfg = Release|x64 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x64.Build.0 = Release|x64 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.ActiveCfg = Release|x86 - {EB36626D-36C2-41B3-B65E-762BAF27F137}.Release|x86.Build.0 = Release|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|Win32.ActiveCfg = Debug|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.ActiveCfg = Debug|x64 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x64.Build.0 = Debug|x64 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.ActiveCfg = Debug|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Debug|x86.Build.0 = Debug|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|Win32.ActiveCfg = Release|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.ActiveCfg = Release|x64 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x64.Build.0 = Release|x64 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.ActiveCfg = Release|x86 - {E31B349C-830C-4583-8BD9-30DA4398349F}.Release|x86.Build.0 = Release|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|Win32.ActiveCfg = Debug|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.ActiveCfg = Debug|x64 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x64.Build.0 = Debug|x64 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.ActiveCfg = Debug|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Debug|x86.Build.0 = Debug|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|Win32.ActiveCfg = Release|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.ActiveCfg = Release|x64 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x64.Build.0 = Release|x64 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.ActiveCfg = Release|x86 - {8CC1C265-0507-44A3-9483-8FAF48513F4D}.Release|x86.Build.0 = Release|x86 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|Win32.Build.0 = Debug|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|x64.ActiveCfg = Debug|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Debug|x86.ActiveCfg = Debug|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|Win32.ActiveCfg = Release|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|Win32.Build.0 = Release|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|x64.ActiveCfg = Release|Win32 - {7A13FEB0-3D89-4CCF-AA87-416A3D06303F}.Release|x86.ActiveCfg = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal -- cgit v1.2.1