Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project>
<ItemGroup>
<PackageVersion Include="AMQPNetLite" Version="2.5.2" />
<PackageVersion Include="AMQPNetLite.Serialization" Version="2.5.2" />
<PackageVersion Include="AMQPNetLite.Core" Version="2.5.2" />
<PackageVersion Include="Apache.Avro" Version="1.12.1" />
<PackageVersion Include="Confluent.Kafka" Version="2.14.0" />
<PackageVersion Include="Google.Protobuf" Version="3.34.1" />
Expand Down
2 changes: 1 addition & 1 deletion docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ unnecessary dependencies. These packages are:
|NuGet package|Description|
|-|-|
|[CloudNative.CloudEvents](https://www.nuget.org/packages/CloudNative.CloudEvents)|Core SDK|
|[CloudNative.CloudEvents.Amqp](https://www.nuget.org/packages/CloudNative.CloudEvents.Amqp)|AMQP protocol binding using [AMQPNetLite](https://www.nuget.org/packages/AMQPNetLite)|
|[CloudNative.CloudEvents.Amqp](https://www.nuget.org/packages/CloudNative.CloudEvents.Amqp)|AMQP protocol binding using [AMQPNetLite.Core](https://www.nuget.org/packages/AMQPNetLite.Core)|
|[CloudNative.CloudEvents.AspNetCore](https://www.nuget.org/packages/CloudNative.CloudEvents.AspNetCore)|ASP.NET Core support for CloudEvents|
|[CloudNative.CloudEvents.Avro](https://www.nuget.org/packages/CloudNative.CloudEvents.Avro)|Avro event formatter using [Apache.Avro](https://www.nuget.org/packages/Apache.Avro)|
|[CloudNative.CloudEvents.Kafka](https://www.nuget.org/packages/CloudNative.CloudEvents.Kafka)|Kafka protocol binding using [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka)|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AMQPNetLite" />
<PackageReference Include="AMQPNetLite.Serialization" />
<PackageReference Include="AMQPNetLite.Core" />
<ProjectReference Include="..\CloudNative.CloudEvents\CloudNative.CloudEvents.csproj" />
<!-- Source-only package with nullable reference annotations. -->
<PackageReference Include="Nullable" PrivateAssets="All" />
</ItemGroup>

</Project>

</Project>
2 changes: 1 addition & 1 deletion src/CloudNative.CloudEvents.Amqp/PACKAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## About

This package provides a protocol binding for transporting CloudEvents over AMQP using AMQPNetLite; for an overview of protocol bindings and their types in this SDK, see the [Protocol bindings](https://github.com/cloudevents/sdk-csharp/blob/main/docs/guide.md#protocol-bindings) section of the user guide.
This package provides a protocol binding for transporting CloudEvents over AMQP using AMQPNetLite.Core; for an overview of protocol bindings and their types in this SDK, see the [Protocol bindings](https://github.com/cloudevents/sdk-csharp/blob/main/docs/guide.md#protocol-bindings) section of the user guide.

## How to Use

Expand Down