From 4c17d975b8cb6d9cc520488cc6cd173acbcc0f54 Mon Sep 17 00:00:00 2001 From: "Charles E. Rolke" Date: Thu, 10 Nov 2011 20:14:45 +0000 Subject: QPID-2643 Visual Studio 2010 Add the Visual Studio 2010 (msvc10) solution and project files for the .NET Binding. Work remaining for VS2010 includes cpp/examples/ and wcf/. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1200522 13f79535-47bb-0310-9956-ffa450edef68 --- .../msvc10/csharp.direct.receiver/app.config | 3 + .../csharp.direct.receiver.csproj | 110 +++++++ .../msvc10/csharp.direct.sender/app.config | 3 + .../csharp.direct.sender.csproj | 110 +++++++ .../msvc10/csharp.example.client/app.config | 3 + .../csharp.example.client.csproj | 110 +++++++ .../csharp.example.declare_queues/app.config | 3 + .../csharp.example.declare_queues.csproj | 110 +++++++ .../msvc10/csharp.example.drain/app.config | 3 + .../csharp.example.drain.csproj | 111 +++++++ .../msvc10/csharp.example.helloworld/app.config | 3 + .../csharp.example.helloworld.csproj | 110 +++++++ .../msvc10/csharp.example.server/app.config | 3 + .../csharp.example.server.csproj | 110 +++++++ .../msvc10/csharp.example.spout/app.config | 3 + .../csharp.example.spout.csproj | 114 ++++++++ .../msvc10/csharp.map.callback.receiver/app.config | 3 + .../csharp.map.callback.receiver.csproj | 117 ++++++++ .../msvc10/csharp.map.callback.sender/app.config | 3 + .../csharp.map.callback.sender.csproj | 115 ++++++++ .../examples/msvc10/csharp.map.receiver/app.config | 3 + .../csharp.map.receiver/csharp.map.receiver.csproj | 110 +++++++ .../examples/msvc10/csharp.map.sender/app.config | 3 + .../csharp.map.sender/csharp.map.sender.csproj | 110 +++++++ .../org.apache.qpid.messaging.sessionreceiver.sln | 77 +++++ .../dotnet/msvc10/org.apache.qpid.messaging.sln | 324 +++++++++++++++++++++ .../src/msvc10/org.apache.qpid.messaging.vcxproj | 316 ++++++++++++++++++++ .../org.apache.qpid.messaging.vcxproj.filters | 98 +++++++ ...rg.apache.qpid.messaging.sessionreceiver.csproj | 138 +++++++++ .../messaging.test/msvc10/messaging.test.csproj | 185 ++++++++++++ 30 files changed, 2511 insertions(+) create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/csharp.direct.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/csharp.direct.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/csharp.example.client.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/csharp.example.declare_queues.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/csharp.example.drain.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/csharp.example.helloworld.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/csharp.example.server.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/csharp.example.spout.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/csharp.map.callback.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/csharp.map.receiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/app.config create mode 100644 cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/csharp.map.sender.csproj create mode 100644 cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sessionreceiver.sln create mode 100644 cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sln create mode 100644 cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj create mode 100644 cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj.filters create mode 100644 cpp/bindings/qpid/dotnet/src/sessionreceiver/msvc10/org.apache.qpid.messaging.sessionreceiver.csproj create mode 100644 cpp/bindings/qpid/dotnet/test/messaging.test/msvc10/messaging.test.csproj (limited to 'cpp') diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/csharp.direct.receiver.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/csharp.direct.receiver.csproj new file mode 100644 index 0000000000..6339256927 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.receiver/csharp.direct.receiver.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {52F880E7-D677-4C91-8516-D679CE0F46A8} + Exe + Properties + csharp.direct.receiver + csharp.direct.receiver + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/csharp.direct.sender.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/csharp.direct.sender.csproj new file mode 100644 index 0000000000..5d5bcaa2ea --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.direct.sender/csharp.direct.sender.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068} + Exe + Properties + csharp.direct.sender + csharp.direct.sender + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/csharp.example.client.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/csharp.example.client.csproj new file mode 100644 index 0000000000..1d98e01505 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.client/csharp.example.client.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {0DE01712-C2D1-4CA4-B42C-5856456A8696} + Exe + Properties + csharp.example.client + csharp.example.client + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/csharp.example.declare_queues.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/csharp.example.declare_queues.csproj new file mode 100644 index 0000000000..2fb157a453 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.declare_queues/csharp.example.declare_queues.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {E31B349C-830C-4583-8BD9-30DA4398349F} + Exe + Properties + csharp.example.declare_queues + csharp.example.declare_queues + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/csharp.example.drain.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/csharp.example.drain.csproj new file mode 100644 index 0000000000..48572dcfb7 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.drain/csharp.example.drain.csproj @@ -0,0 +1,111 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {C43DEB69-8088-420B-B0CA-C699535E6D08} + Exe + Properties + csharp.example.drain + csharp.example.drain + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/csharp.example.helloworld.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/csharp.example.helloworld.csproj new file mode 100644 index 0000000000..b67a2dc9c0 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.helloworld/csharp.example.helloworld.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {8CC1C265-0507-44A3-9483-8FAF48513F4D} + Exe + Properties + csharp.example.helloworld + csharp.example.helloworld + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/csharp.example.server.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/csharp.example.server.csproj new file mode 100644 index 0000000000..d2d425b40e --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.server/csharp.example.server.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {090A081D-E8B5-4949-AA43-EE182B7101E3} + Exe + Properties + csharp.example.server + csharp.example.server + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/csharp.example.spout.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/csharp.example.spout.csproj new file mode 100644 index 0000000000..863e1426cb --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.example.spout/csharp.example.spout.csproj @@ -0,0 +1,114 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {EB36626D-36C2-41B3-B65E-762BAF27F137} + Exe + Properties + csharp.example.spout + csharp.example.spout + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj new file mode 100644 index 0000000000..d5155822ab --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj @@ -0,0 +1,117 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {68A43817-2358-4A31-8FDF-FE21722BFBCF} + Exe + Properties + csharp.map.callback.receiver + csharp.map.callback.receiver + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05} + org.apache.qpid.messaging.sessionreceiver + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/csharp.map.callback.sender.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/csharp.map.callback.sender.csproj new file mode 100644 index 0000000000..82753f4d66 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.callback.sender/csharp.map.callback.sender.csproj @@ -0,0 +1,115 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A} + Exe + Properties + csharp.map.callback.sender + csharp.map.callback.sender + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + true + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + true + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/csharp.map.receiver.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/csharp.map.receiver.csproj new file mode 100644 index 0000000000..01c9ccc993 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.receiver/csharp.map.receiver.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9} + Exe + Properties + csharp.map.receiver + csharp.map.receiver + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/app.config b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/app.config new file mode 100644 index 0000000000..cb2586beb1 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/app.config @@ -0,0 +1,3 @@ + + + diff --git a/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/csharp.map.sender.csproj b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/csharp.map.sender.csproj new file mode 100644 index 0000000000..25cc785144 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/examples/msvc10/csharp.map.sender/csharp.map.sender.csproj @@ -0,0 +1,110 @@ + + + + + Debug + x86 + 9.0.21022 + 2.0 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10} + Exe + Properties + csharp.map.sender + csharp.map.sender + v4.0 + 512 + + + 3.5 + + + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sessionreceiver.sln b/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sessionreceiver.sln new file mode 100644 index 0000000000..d672108033 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sessionreceiver.sln @@ -0,0 +1,77 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "org.apache.qpid.messaging", "src\org.apache.qpid.messaging.vcxproj", "{AA5A3B83-5F98-406D-A01C-5A921467A57D}" + + + + + + + + + + + + + + + + + + + +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "org.apache.qpid.messaging.sessionreceiver", "src\sessionreceiver\org.apache.qpid.messaging.sessionreceiver.csproj", "{B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}" +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 + RelWithDebInfo|Win32 = RelWithDebInfo|Win32 + RelWithDebInfo|x64 = RelWithDebInfo|x64 + RelWithDebInfo|x86 = RelWithDebInfo|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|Win32.ActiveCfg = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|Win32.Build.0 = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x64.ActiveCfg = Debug|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x64.Build.0 = Debug|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x86.ActiveCfg = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x86.Build.0 = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|Win32.ActiveCfg = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|Win32.Build.0 = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x64.ActiveCfg = Release|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x64.Build.0 = Release|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x86.ActiveCfg = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x86.Build.0 = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|Win32 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|Win32.ActiveCfg = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x64.ActiveCfg = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x64.Build.0 = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x86.ActiveCfg = Debug|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x86.Build.0 = Debug|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|Win32.ActiveCfg = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x64.ActiveCfg = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x64.Build.0 = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x86.ActiveCfg = Release|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x86.Build.0 = Release|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sln b/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sln new file mode 100644 index 0000000000..184fcb9452 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/msvc10/org.apache.qpid.messaging.sln @@ -0,0 +1,324 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{34C477FB-B0CC-4AB9-A346-EA7B055469AC}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Direct", "Direct", "{DE58D329-10DC-4C8D-9EFA-230A57314089}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Pub-Sub", "Pub-Sub", "{878FDDF8-A870-41D6-9E36-0A050EC5ACAB}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test", "Test", "{39E9D1BF-3A0B-4D86-BF6B-F463E1A2245A}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StructuredMessage", "StructuredMessage", "{E99FEFEE-B866-4BBA-9AA3-79DDF1C92960}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Client-Server", "Client-Server", "{9232212E-F3C6-4D18-8D25-0C31DD5FF3DB}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Drain-Spout", "Drain-Spout", "{89CE04CB-21DE-4ABB-9236-50529DD8C022}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "org.apache.qpid.messaging", "..\src\msvc10\org.apache.qpid.messaging.vcxproj", "{AA5A3B83-5F98-406D-A01C-5A921467A57D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.sender", "..\examples\msvc10\csharp.direct.sender\csharp.direct.sender.csproj", "{7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}" + ProjectSection(ProjectDependencies) = postProject + {AA5A3B83-5F98-406D-A01C-5A921467A57D} = {AA5A3B83-5F98-406D-A01C-5A921467A57D} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.direct.receiver", "..\examples\msvc10\csharp.direct.receiver\csharp.direct.receiver.csproj", "{52F880E7-D677-4C91-8516-D679CE0F46A8}" + ProjectSection(ProjectDependencies) = postProject + {AA5A3B83-5F98-406D-A01C-5A921467A57D} = {AA5A3B83-5F98-406D-A01C-5A921467A57D} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "messaging.test", "..\test\messaging.test\msvc10\messaging.test.csproj", "{AF2FBC78-266C-430C-BC29-9477AB596A36}" + ProjectSection(ProjectDependencies) = postProject + {AA5A3B83-5F98-406D-A01C-5A921467A57D} = {AA5A3B83-5F98-406D-A01C-5A921467A57D} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.sender", "..\examples\msvc10\csharp.map.sender\csharp.map.sender.csproj", "{5D8252F5-E1D3-44A0-94C7-7CB75E843C10}" + ProjectSection(ProjectDependencies) = postProject + {AA5A3B83-5F98-406D-A01C-5A921467A57D} = {AA5A3B83-5F98-406D-A01C-5A921467A57D} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.receiver", "..\examples\msvc10\csharp.map.receiver\csharp.map.receiver.csproj", "{AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}" + ProjectSection(ProjectDependencies) = postProject + {AA5A3B83-5F98-406D-A01C-5A921467A57D} = {AA5A3B83-5F98-406D-A01C-5A921467A57D} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "org.apache.qpid.messaging.sessionreceiver", "..\src\sessionreceiver\msvc10\org.apache.qpid.messaging.sessionreceiver.csproj", "{B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.map.callback.receiver", "..\examples\msvc10\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\msvc10\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\msvc10\csharp.example.client\csharp.example.client.csproj", "{0DE01712-C2D1-4CA4-B42C-5856456A8696}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.server", "..\examples\msvc10\csharp.example.server\csharp.example.server.csproj", "{090A081D-E8B5-4949-AA43-EE182B7101E3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.drain", "..\examples\msvc10\csharp.example.drain\csharp.example.drain.csproj", "{C43DEB69-8088-420B-B0CA-C699535E6D08}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.spout", "..\examples\msvc10\csharp.example.spout\csharp.example.spout.csproj", "{EB36626D-36C2-41B3-B65E-762BAF27F137}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp.example.declare_queues", "..\examples\msvc10\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\msvc10\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 + RelWithDebInfo|Win32 = RelWithDebInfo|Win32 + RelWithDebInfo|x64 = RelWithDebInfo|x64 + RelWithDebInfo|x86 = RelWithDebInfo|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|Win32.ActiveCfg = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|Win32.Build.0 = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x64.ActiveCfg = Debug|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x64.Build.0 = Debug|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x86.ActiveCfg = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Debug|x86.Build.0 = Debug|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|Win32.ActiveCfg = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|Win32.Build.0 = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x64.ActiveCfg = Release|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x64.Build.0 = Release|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.Release|x86.ActiveCfg = Release|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {AA5A3B83-5F98-406D-A01C-5A921467A57D}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|Win32 + {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 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {52F880E7-D677-4C91-8516-D679CE0F46A8}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Debug|Win32.ActiveCfg = Debug|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Debug|x64.ActiveCfg = Debug|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Debug|x64.Build.0 = Debug|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Debug|x86.ActiveCfg = Debug|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Debug|x86.Build.0 = Debug|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Release|Win32.ActiveCfg = Release|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Release|x64.ActiveCfg = Release|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Release|x64.Build.0 = Release|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Release|x86.ActiveCfg = Release|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.Release|x86.Build.0 = Release|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {AF2FBC78-266C-430C-BC29-9477AB596A36}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|Win32.ActiveCfg = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x64.ActiveCfg = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x64.Build.0 = Debug|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x86.ActiveCfg = Debug|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Debug|x86.Build.0 = Debug|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|Win32.ActiveCfg = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x64.ActiveCfg = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x64.Build.0 = Release|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x86.ActiveCfg = Release|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.Release|x86.Build.0 = Release|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {68A43817-2358-4A31-8FDF-FE21722BFBCF}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {12F1C14F-5C7D-4075-9BAE-C091394FF99A}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {0DE01712-C2D1-4CA4-B42C-5856456A8696}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {090A081D-E8B5-4949-AA43-EE182B7101E3}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {C43DEB69-8088-420B-B0CA-C699535E6D08}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {EB36626D-36C2-41B3-B65E-762BAF27F137}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {E31B349C-830C-4583-8BD9-30DA4398349F}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {E31B349C-830C-4583-8BD9-30DA4398349F}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {E31B349C-830C-4583-8BD9-30DA4398349F}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|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 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.RelWithDebInfo|x86.ActiveCfg = RelWithDebInfo|x86 + {8CC1C265-0507-44A3-9483-8FAF48513F4D}.RelWithDebInfo|x86.Build.0 = RelWithDebInfo|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {DE58D329-10DC-4C8D-9EFA-230A57314089} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {878FDDF8-A870-41D6-9E36-0A050EC5ACAB} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {E99FEFEE-B866-4BBA-9AA3-79DDF1C92960} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {9232212E-F3C6-4D18-8D25-0C31DD5FF3DB} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {89CE04CB-21DE-4ABB-9236-50529DD8C022} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {4408A2DA-ED2D-44AE-A465-0B6D75E1FF86} = {34C477FB-B0CC-4AB9-A346-EA7B055469AC} + {7B71CE78-8E78-4632-ADBE-F4D5DFAE0068} = {DE58D329-10DC-4C8D-9EFA-230A57314089} + {52F880E7-D677-4C91-8516-D679CE0F46A8} = {DE58D329-10DC-4C8D-9EFA-230A57314089} + {AF2FBC78-266C-430C-BC29-9477AB596A36} = {39E9D1BF-3A0B-4D86-BF6B-F463E1A2245A} + {5D8252F5-E1D3-44A0-94C7-7CB75E843C10} = {E99FEFEE-B866-4BBA-9AA3-79DDF1C92960} + {AD9E53D7-DB10-4DA2-84D2-A81BE09B04E9} = {E99FEFEE-B866-4BBA-9AA3-79DDF1C92960} + {68A43817-2358-4A31-8FDF-FE21722BFBCF} = {E99FEFEE-B866-4BBA-9AA3-79DDF1C92960} + {12F1C14F-5C7D-4075-9BAE-C091394FF99A} = {E99FEFEE-B866-4BBA-9AA3-79DDF1C92960} + {0DE01712-C2D1-4CA4-B42C-5856456A8696} = {9232212E-F3C6-4D18-8D25-0C31DD5FF3DB} + {090A081D-E8B5-4949-AA43-EE182B7101E3} = {9232212E-F3C6-4D18-8D25-0C31DD5FF3DB} + {C43DEB69-8088-420B-B0CA-C699535E6D08} = {89CE04CB-21DE-4ABB-9236-50529DD8C022} + {EB36626D-36C2-41B3-B65E-762BAF27F137} = {89CE04CB-21DE-4ABB-9236-50529DD8C022} + {E31B349C-830C-4583-8BD9-30DA4398349F} = {89CE04CB-21DE-4ABB-9236-50529DD8C022} + {8CC1C265-0507-44A3-9483-8FAF48513F4D} = {4408A2DA-ED2D-44AE-A465-0B6D75E1FF86} + EndGlobalSection +EndGlobal diff --git a/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj b/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj new file mode 100644 index 0000000000..a027d77ae0 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj @@ -0,0 +1,316 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + RelWithDebInfo + Win32 + + + RelWithDebInfo + x64 + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + org.apache.qpid.messaging + ManagedCProj + v4.0 + + + + DynamicLibrary + Unicode + true + false + + + DynamicLibrary + Unicode + true + false + + + DynamicLibrary + Unicode + true + false + + + DynamicLibrary + Unicode + true + false + + + DynamicLibrary + Unicode + true + false + + + DynamicLibrary + Unicode + true + false + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + false + ..\qpid.snk + true + + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /machine:I386 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclientd.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommond.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessagingd.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypesd.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX86 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + X64 + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclientd.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommond.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessagingd.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypesd.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX64 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /machine:I386 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclient.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommon.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessaging.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypes.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX86 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + X64 + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclient.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommon.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessaging.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypes.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX64 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /machine:I386 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclient.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommon.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessaging.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypes.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX86 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + X64 + + + /Zm1000 /wd4244 /wd4800 /wd4355 %(AdditionalOptions) + Disabled + $(ProjectDir)..\..\..\..\..\include;$(ProjectDir)..\..\..\..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + /STACK:10000000 /KEYFILE:..\qpid.snk %(AdditionalOptions) + $(QPID_BUILD_ROOT)\src\$(Configuration)\qpidclient.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidcommon.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidmessaging.lib;$(QPID_BUILD_ROOT)\src\$(Configuration)\qpidtypes.lib;%(AdditionalDependencies) + $(QPID_BUILD_ROOT)\src\$(Configuration)\org.apache.qpid.messaging.dll + true + true + MachineX64 + + + sn.exe -Ra "$(TargetPath)" "..\qpid.snk" + + + + + true + true + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj.filters b/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj.filters new file mode 100644 index 0000000000..c4a857e0bf --- /dev/null +++ b/cpp/bindings/qpid/dotnet/src/msvc10/org.apache.qpid.messaging.vcxproj.filters @@ -0,0 +1,98 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Resource Files + + + + + Resource Files + + + + + + Resource Files + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/src/sessionreceiver/msvc10/org.apache.qpid.messaging.sessionreceiver.csproj b/cpp/bindings/qpid/dotnet/src/sessionreceiver/msvc10/org.apache.qpid.messaging.sessionreceiver.csproj new file mode 100644 index 0000000000..fd24983a87 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/src/sessionreceiver/msvc10/org.apache.qpid.messaging.sessionreceiver.csproj @@ -0,0 +1,138 @@ + + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {B0A51CEC-30A2-4C2E-90BE-AE95107EAA05} + Library + Properties + org.apache.qpid.messaging.sessionreceiver + org.apache.qpid.messaging.sessionreceiver + v4.0 + 512 + true + $(ProjectDir)..\qpid.snk + + + 3.5 + + + + + true + full + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + prompt + 4 + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + AnyCPU + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + + + + + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + \ No newline at end of file diff --git a/cpp/bindings/qpid/dotnet/test/messaging.test/msvc10/messaging.test.csproj b/cpp/bindings/qpid/dotnet/test/messaging.test/msvc10/messaging.test.csproj new file mode 100644 index 0000000000..673877e121 --- /dev/null +++ b/cpp/bindings/qpid/dotnet/test/messaging.test/msvc10/messaging.test.csproj @@ -0,0 +1,185 @@ + + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {AF2FBC78-266C-430C-BC29-9477AB596A36} + Library + Properties + messaging.test + messaging.test + v4.0 + 512 + + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true + + + 3.5 + + + + + true + full + false + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + prompt + 4 + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x86 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x86 + prompt + + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + + + bin\RelWithDebInfo\ + TRACE + true + pdbonly + AnyCPU + prompt + + + bin\x86\RelWithDebInfo\ + TRACE + true + pdbonly + x86 + prompt + + + bin\x64\RelWithDebInfo\ + TRACE + true + pdbonly + x64 + prompt + + + + False + C:\Program Files (x86)\NUnit 2.5.3\bin\net-1.1\framework\nunit.framework.dll + + + + + + + + + + + + + False + .NET Framework 2.0 %28x86%29 + false + + + False + .NET Framework 3.0 %28x86%29 + false + + + False + .NET Framework 3.5 + true + + + False + Windows Installer 3.1 + true + + + + + {AA5A3B83-5F98-406D-A01C-5A921467A57D} + Org.Apache.Qpid.Messaging + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.1