diff options
| author | Steven Shaw <steshaw@apache.org> | 2006-12-06 16:30:16 +0000 |
|---|---|---|
| committer | Steven Shaw <steshaw@apache.org> | 2006-12-06 16:30:16 +0000 |
| commit | 355a889c72f14342c3cb6b50e28e9fad6149d888 (patch) | |
| tree | 5477565cdeb14659c3e45fb9880b61c71a28f37c /dotnet/Qpid.Common | |
| parent | cf3c35c56bf467619fe84d06d1bf322b95e65f80 (diff) | |
| download | qpid-python-355a889c72f14342c3cb6b50e28e9fad6149d888.tar.gz | |
QPID-128 Missed a couple of things while porting Java client changes recently.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@483135 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Common')
| -rw-r--r-- | dotnet/Qpid.Common/Framing/FieldTable.cs | 2 | ||||
| -rw-r--r-- | dotnet/Qpid.Common/Qpid.Common.csproj | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/dotnet/Qpid.Common/Framing/FieldTable.cs b/dotnet/Qpid.Common/Framing/FieldTable.cs index a7abc9d6e5..4c613aa80d 100644 --- a/dotnet/Qpid.Common/Framing/FieldTable.cs +++ b/dotnet/Qpid.Common/Framing/FieldTable.cs @@ -74,7 +74,7 @@ namespace Qpid.Framing value = buffer.GetUnsignedInt(); break; default: - throw new AMQFrameDecodingException("Unsupported field table type: " + type); + throw new AMQFrameDecodingException("Unsupported field table type: '" + type + "' charcode" + (int)type); } sizeRead += (sizeRemaining - buffer.Remaining); diff --git a/dotnet/Qpid.Common/Qpid.Common.csproj b/dotnet/Qpid.Common/Qpid.Common.csproj index b392b48d83..65d0d87559 100644 --- a/dotnet/Qpid.Common/Qpid.Common.csproj +++ b/dotnet/Qpid.Common/Qpid.Common.csproj @@ -168,14 +168,14 @@ <Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
- <ProjectReference Include="..\Qpid.Codec\Qpid.Codec.csproj">
- <Project>{22D0D0C2-77AF-4DE3-B456-7FF3893F9F88}</Project>
- <Name>Qpid.Codec</Name>
- </ProjectReference>
<ProjectReference Include="..\Qpid.Buffer\Qpid.Buffer.csproj">
<Project>{44384DF2-B0A4-4580-BDBC-EE4BAA87D995}</Project>
<Name>Qpid.Buffer</Name>
</ProjectReference>
+ <ProjectReference Include="..\Qpid.Codec\Qpid.Codec.csproj">
+ <Project>{22D0D0C2-77AF-4DE3-B456-7FF3893F9F88}</Project>
+ <Name>Qpid.Codec</Name>
+ </ProjectReference>
<ProjectReference Include="..\Qpid.Messaging\Qpid.Messaging.csproj">
<Project>{6688F826-C58E-4C1B-AA1F-22AFAB4B7D07}</Project>
<Name>Qpid.Messaging</Name>
|
