Skip to content

Commit 1c0c935

Browse files
authored
Continue supporting .NET Framework. (confluentinc#2342)
DLL is being loaded with .NET Framework 4.6.2, 4.8 and 4.8.1
1 parent ea8856b commit 1c0c935

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.6.1
2+
3+
## Enhancements
4+
5+
* Fix to continue supporting .NET Framework 4.6.2+ in core client library (#2342).
6+
7+
18
# 2.6.0
29

310
## Enhancements

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ client. Thanks Andreas!
3434

3535
confluent-kafka-dotnet is distributed via NuGet. We provide the following packages:
3636

37-
- [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka/) *[netstandard2.0, net6.0, net8.0]* - The core client library.
37+
- [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka/) *[netstandard2.0, net462, net6.0, net8.0]* - The core client library.
3838
- [Confluent.SchemaRegistry.Serdes.Avro](https://www.nuget.org/packages/Confluent.SchemaRegistry.Serdes.Avro/) *[netstandard2.0, net6.0, net8.0]* - Provides a serializer and deserializer for working with Avro serialized data with Confluent Schema Registry integration.
3939
- [Confluent.SchemaRegistry.Serdes.Protobuf](https://www.nuget.org/packages/Confluent.SchemaRegistry.Serdes.Protobuf/) *[netstandard2.0, net6.0, net8.0]* - Provides a serializer and deserializer for working with Protobuf serialized data with Confluent Schema Registry integration.
4040
- [Confluent.SchemaRegistry.Serdes.Json](https://www.nuget.org/packages/Confluent.SchemaRegistry.Serdes.Json/) *[netstandard2.0, net6.0, net8.0]* - Provides a serializer and deserializer for working with Json serialized data with Confluent Schema Registry integration.

src/Confluent.Kafka/Confluent.Kafka.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Title>Confluent.Kafka</Title>
1818
<AssemblyName>Confluent.Kafka</AssemblyName>
1919
<VersionPrefix>2.6.0</VersionPrefix>
20-
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
20+
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
2121
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2323
<SignAssembly>true</SignAssembly>
@@ -30,7 +30,7 @@
3030
</PackageReference>
3131
</ItemGroup>
3232

33-
<ItemGroup>
33+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462'">
3434
<PackageReference Include="System.Memory" Version="4.5.0" />
3535
</ItemGroup>
3636

0 commit comments

Comments
 (0)