Rewind.Sdk
0.1.0
dotnet add package Rewind.Sdk --version 0.1.0
NuGet\Install-Package Rewind.Sdk -Version 0.1.0
<PackageReference Include="Rewind.Sdk" Version="0.1.0" />
<PackageVersion Include="Rewind.Sdk" Version="0.1.0" />
<PackageReference Include="Rewind.Sdk" />
paket add Rewind.Sdk --version 0.1.0
#r "nuget: Rewind.Sdk, 0.1.0"
#:package Rewind.Sdk@0.1.0
#addin nuget:?package=Rewind.Sdk&version=0.1.0
#tool nuget:?package=Rewind.Sdk&version=0.1.0
Rewind.Sdk
Process-wide, bounded, best-effort SDK for the Rewind local incident flight recorder.
Install
dotnet add package Rewind.Sdk --prerelease
For a .NET Framework project using Package Manager Console:
Install-Package Rewind.Sdk -Prerelease
Installing Rewind.Sdk automatically installs the matching
Rewind.Protocol and Rewind.Abstractions dependencies.
Initialize once
using Rewind.Sdk;
RewindRecorder.Initialize(new RewindOptions
{
AgentPipeName = "Rewind.Agent"
});
Then emit from any code using the same loaded SDK assembly:
RewindRecorder.Information("Machine", "CycleCompleted", "Cycle=1842");
RewindRecorder.Warning("Vision", "LowConfidence", "Score=0.71");
RewindRecorder.Error("Motion", "MoveFailed", "Axis=X;Reason=Timeout");
The separate Rewind Agent is distributed through the project's GitHub Releases. Run the Agent interactively first, then install it as a Windows Service when the configuration is proven.
The SDK targets .NET Framework 4.6.2 and .NET Standard 2.0. Delivery is bounded, best-effort, and at-most-once.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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 was computed. 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 was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Rewind.Abstractions (>= 0.1.0)
- Rewind.Protocol (>= 0.1.0)
-
.NETStandard 2.0
- Rewind.Abstractions (>= 0.1.0)
- Rewind.Protocol (>= 0.1.0)
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.0 | 151 | 8/2/2026 |
| 0.1.0-alpha.1 | 69 | 8/2/2026 |
Initial stable Rewind SDK contract and Agent-compatible protocol.