Condux.Sdk 0.1.2

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

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Condux.Sdk:

Package Downloads
Condux.Sdk.AspNetCore

ASP.NET Core integration for the Condux SDK: report unhandled request exceptions.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.7 101 8/16/2026
0.1.6 102 8/15/2026
0.1.5 103 8/14/2026
0.1.4 100 8/14/2026
0.1.3 103 8/8/2026
0.1.2 103 8/2/2026
0.1.1 111 8/2/2026
0.1.0 243 8/2/2026