Condux.Sdk.AspNetCore 0.1.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package Condux.Sdk.AspNetCore --version 0.1.4
                    
NuGet\Install-Package Condux.Sdk.AspNetCore -Version 0.1.4
                    
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="Condux.Sdk.AspNetCore" Version="0.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Condux.Sdk.AspNetCore" Version="0.1.4" />
                    
Directory.Packages.props
<PackageReference Include="Condux.Sdk.AspNetCore" />
                    
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 Condux.Sdk.AspNetCore --version 0.1.4
                    
#r "nuget: Condux.Sdk.AspNetCore, 0.1.4"
                    
#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 Condux.Sdk.AspNetCore@0.1.4
                    
#: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=Condux.Sdk.AspNetCore&version=0.1.4
                    
Install as a Cake Addin
#tool nuget:?package=Condux.Sdk.AspNetCore&version=0.1.4
                    
Install as a Cake Tool

Condux SDK for .NET

Report errors from a .NET app to a Condux relay. Emits the Sentry "store" wire shape, so the relay normalizes it exactly like an official Sentry SDK — point it at a project DSN and it works.

Delivery is resilient (429 / 5xx / network failures retry with backoff, honoring Retry-After) and never throws — a failed send returns a SendResult, it does not crash the host app.

Usage

using Condux.Sdk;

var condux = new ConduxClient(new ConduxOptions
{
    Dsn = "https://<key>@ingest.condux.ai/<projectId>",
    Environment = "production",
    Release = "1.4.2",
});

try
{
    DoWork();
}
catch (Exception error)
{
    await condux.CaptureExceptionAsync(error);
    throw;
}

// or a bare message
await condux.CaptureMessageAsync("cache miss storm", Level.Warning);

Hold one ConduxClient for the app's lifetime. Deploy your portable PDBs alongside the app for file names and line numbers in stack frames (without them, frames keep the method + declaring type).

Develop

dotnet build Condux.Sdk.sln -c Release
dotnet test Condux.Sdk.sln -c Release
dotnet format Condux.Sdk.sln --verify-no-changes

Zero external dependencies (BCL only). Transport, sleep, and clock are injectable, so tests exercise the retry/backoff with no real network or timers (Condux.Sdk.Tests).

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.7 88 8/16/2026
0.1.6 86 8/15/2026
0.1.5 85 8/14/2026
0.1.4 82 8/14/2026
0.1.3 89 8/8/2026
0.1.2 95 8/2/2026
0.1.1 100 8/2/2026
0.1.0 223 8/2/2026