Axual .NET Client Documentation
Welcome to the Axual .NET Client documentation, Use the menu on the left to navigate through the various sections.
Introduction
Axual.Kafka.Proxy is Axual’s .NET client for Apache Kafka, it is based on the open source Confluent .NET Client.
You can find the source code of the client in the Axual .NET Client repository, and all code snippets included in the documentation in the Axual .NET Client Examples repository in form of full runnable applications. |
Prerequisites
A computer equipped with:
-
.NET Standard >= v1.3 - https://dotnet.microsoft.com/platform/dotnet-standard
-
Your favorite IDE
.NET Standard >= v2.0 is required to use Apache.Avro
|
Setting up Dependencies
Start by including the dependency on the Axual .NET client library as you would do with any
dependency or by adding PackageReference
tag in your .csproj
project.
<ItemGroup>
<PackageReference Include="Axual.Kafka.Proxy" Version="1.3.1" />
<PackageReference Include="Axual.SchemaRegistry.Serdes.Avro" Version="1.3.1" />
</ItemGroup>