Coflnet.Core 0.7.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Coflnet.Core --version 0.7.2
                    
NuGet\Install-Package Coflnet.Core -Version 0.7.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Coflnet.Core" Version="0.7.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Coflnet.Core" Version="0.7.2" />
                    
Directory.Packages.props
<PackageReference Include="Coflnet.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Coflnet.Core --version 0.7.2
                    
#r "nuget: Coflnet.Core, 0.7.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Coflnet.Core@0.7.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Coflnet.Core&version=0.7.2
                    
Install as a Cake Addin
#tool nuget:?package=Coflnet.Core&version=0.7.2
                    
Install as a Cake Tool

CoflnetCore

Core library for our Microservices, producing, consuming, metrics etc

Setup

Add services in your Startup.cs or Program.cs file

builder.Services.AddCoflnetCore();

[...]
// register middlewares before controllers
app.UseCoflnetCore();
app.MapControllers();

Usage

Consuming

public class ConsumeService : BackgroundService
{
    private readonly KafkaConsumer _consumer;

    public MyController(KafkaConsumer consumer)
    {
        _consumer = consumer;
    }


    protected override async Task ExecuteAsync(CancellationToken stoppingToken)
    {
        await _consumer.Consume<string>("my-topic", async (message) =>
        {
            // do something with the message
        }, stoppingToken);
    }
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Coflnet.Core:

Package Downloads
Coflnet.Sky.Core

Hypixel Skyblock core library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.3 149 6/15/2026
0.7.2 99 6/14/2026
0.7.1 92 6/14/2026
0.7.0 1,781 3/30/2026
0.6.1 793 2/16/2026
0.6.0 1,936 10/22/2025
0.5.2 204 10/21/2025
0.5.1 7,551 4/16/2025
0.5.0 1,820 2/10/2025
0.4.5 1,162 1/3/2025
0.4.4 208 1/3/2025
0.4.3 198 1/2/2025
0.4.2 334 12/20/2024
0.4.1 206 12/14/2024
0.4.0 180 12/14/2024
0.3.0 1,768 11/4/2024
0.2.0 4,057 4/15/2024
0.1.1 457 8/14/2023
0.1.0 348 7/9/2023
0.0.1 215 7/8/2023