AMQPNetLite.Core instead of AMQPNetLite#351
AMQPNetLite.Core instead of AMQPNetLite#351erwinkramer wants to merge 1 commit intocloudevents:mainfrom
Conversation
Signed-off-by: Erwin <erwinkramer@hotmail.com>
|
The build error seems unrelated to the PR and improved via #352 |
|
It's unclear to me how the two packages relate to each other - in particular, which assembly I'll need to take a bit of time to look into this more carefully - not sure when that will be, I'm afraid. (I'm going to prioritize the "get tests running in .NET 4.8".) |
|
I checked the assemblies. The signature is the same: Original: #region Assembly Amqp.Net, Version=2.5.0.0, Culture=neutral, PublicKeyToken=905a7b1e6458e0c3
// C:\Users\x\.nuget\packages\amqpnetlite\2.5.2\lib\net5.0\Amqp.Net.dll
// Decompiled with ICSharpCode.Decompiler 9.1.0.7988
#endregion
using System;
using Amqp.Framing;
using Amqp.Types;
namespace Amqp;
//
// Summary:
// The Message class represents an AMQP message.
public class Message : IDisposable
{
...Core: #region Assembly Amqp.Net, Version=2.5.0.0, Culture=neutral, PublicKeyToken=905a7b1e6458e0c3
// C:\Users\x\.nuget\packages\amqpnetlite.core\2.5.2\lib\netstandard2.0\Amqp.Net.dll
// Decompiled with ICSharpCode.Decompiler 9.1.0.7988
#endregion
using System;
using Amqp.Framing;
using Amqp.Types;
namespace Amqp;
//
// Summary:
// The Message class represents an AMQP message.
public class Message : IDisposable
{
... |
|
I definitely want to check. Example of how this could get weird - suppose someone already has a dependency on |
|
Yeah, let me know your findings. They have some docs here explaining a little bit about the positioning of the libraries: https://azure.github.io/amqpnetlite/articles/installation.html#nuget-packages |
This PR reduces the dependency of AMQPNetLite to just AMQPNetLite.Core