March 31, 2026C# SDK 2.0.2Docs 2.1.3
Ship test data from C# and .NET
You can now push test runs to TofuPilot from C# and .NET. The SDK covers the full V2 API with typed responses and errors.
csharp
var client = new TofuPilot(apiKey: "your-api-key");await client.Runs.CreateAsync(new RunCreateRequest{ ProcedureId = "FVT-001", SerialNumber = "SN-042", PartNumber = "PART-001", Outcome = RunCreateOutcome.Pass,});API docs now show C# examples next to Python. Source on GitHub, package on NuGet.
Thanks to community member @Hylaean for building the original 1.x client that got this started.