diff options
| -rw-r--r-- | dotnet/Qpid.Client/Client/AmqChannel.cs | 2 | ||||
| -rw-r--r-- | dotnet/Qpid.Common/Qpid.Common.csproj | 2 | ||||
| -rw-r--r-- | dotnet/Qpid.Common/build.xml | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/dotnet/Qpid.Client/Client/AmqChannel.cs b/dotnet/Qpid.Client/Client/AmqChannel.cs index d6557a8ee5..ab598b4b27 100644 --- a/dotnet/Qpid.Client/Client/AmqChannel.cs +++ b/dotnet/Qpid.Client/Client/AmqChannel.cs @@ -756,7 +756,7 @@ namespace Qpid.Client AMQFrame basicConsume = BasicConsumeBody.CreateAMQFrame(_channelId, 0, queueName, tag, noLocal, acknowledgeMode == AcknowledgeMode.NoAcknowledge, - exclusive, true); + exclusive, true, new FieldTable()); _replayFrames.Add(basicConsume); diff --git a/dotnet/Qpid.Common/Qpid.Common.csproj b/dotnet/Qpid.Common/Qpid.Common.csproj index 65d0d87559..0e32e3ba17 100644 --- a/dotnet/Qpid.Common/Qpid.Common.csproj +++ b/dotnet/Qpid.Common/Qpid.Common.csproj @@ -110,6 +110,8 @@ <Compile Include="generated\DtxSelectOkBody.cs" />
<Compile Include="generated\DtxStartBody.cs" />
<Compile Include="generated\DtxStartOkBody.cs" />
+ <Compile Include="generated\ExchangeBoundBody.cs" />
+ <Compile Include="generated\ExchangeBoundOkBody.cs" />
<Compile Include="generated\ExchangeDeclareBody.cs" />
<Compile Include="generated\ExchangeDeclareOkBody.cs" />
<Compile Include="generated\ExchangeDeleteBody.cs" />
diff --git a/dotnet/Qpid.Common/build.xml b/dotnet/Qpid.Common/build.xml index e976859b15..b6a8fb63b9 100644 --- a/dotnet/Qpid.Common/build.xml +++ b/dotnet/Qpid.Common/build.xml @@ -21,8 +21,7 @@ <pathconvert targetos="unix" property="amq.home.fixed" refid="amq.home.path"/> <!-- Some spec changes break the build, reverting to private copy in Qpid.Common temporarily till this is fixed. --> -<!-- <property name="amq.asl" value="${amq.home.fixed}/specs/amqp.0-8.xml"/> --> - <property name="amq.asl" value="amqp.xml"/> + <property name="amq.asl" value="${amq.home.fixed}/specs/amqp.0-8.xml"/> <target name="clean" description="Deletes the generated sources."> <delete> |
