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 | 28f7b5dac060ae6119fadc597c161bad01564d23 (patch) | |
| tree | e42a49d5b189dc791b71656e80605b532e2e5648 /qpid/dotnet/Qpid.Common | |
| parent | 6a2b83c8b06d05b0ca4406100e20b4f8de1e7413 (diff) | |
| download | qpid-python-28f7b5dac060ae6119fadc597c161bad01564d23.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@483135 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Common')
| -rw-r--r-- | qpid/dotnet/Qpid.Common/Framing/FieldTable.cs | 2 | ||||
| -rw-r--r-- | qpid/dotnet/Qpid.Common/Qpid.Common.csproj | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/qpid/dotnet/Qpid.Common/Framing/FieldTable.cs b/qpid/dotnet/Qpid.Common/Framing/FieldTable.cs index a7abc9d6e5..4c613aa80d 100644 --- a/qpid/dotnet/Qpid.Common/Framing/FieldTable.cs +++ b/qpid/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/qpid/dotnet/Qpid.Common/Qpid.Common.csproj b/qpid/dotnet/Qpid.Common/Qpid.Common.csproj index b392b48d83..65d0d87559 100644 --- a/qpid/dotnet/Qpid.Common/Qpid.Common.csproj +++ b/qpid/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>
|
