Opsd 0.1.0
dotnet add package Opsd --version 0.1.0
NuGet\Install-Package Opsd -Version 0.1.0
<PackageReference Include="Opsd" Version="0.1.0" />
<PackageVersion Include="Opsd" Version="0.1.0" />
<PackageReference Include="Opsd" />
paket add Opsd --version 0.1.0
#r "nuget: Opsd, 0.1.0"
#:package Opsd@0.1.0
#addin nuget:?package=Opsd&version=0.1.0
#tool nuget:?package=Opsd&version=0.1.0
Opsd .NET library
Opsd is the .NET client library for the Opsd API. It provides a small,
typed wrapper around the current public endpoints, including the hello-world
sandbox route and the user endpoints.
Installation
dotnet add package Opsd
The package targets .NET 8 and later and has no runtime dependencies.
Usage
The default client targets the production API at https://api.opsd.sh/v1/.
OAuth access tokens and API keys both use the HTTP Bearer scheme and are
redacted from object representations.
using Opsd;
ApiCredential credential = new("secret");
using OpsdClient client = new(credential);
HelloResponse response = await client.HelloWorldAsync();
Console.WriteLine(response.Message);
For local development, tests, or non-production deployments, supply an
OpsdClientOptions instance with a different BaseAddress. Successful
responses are returned as typed records. Non-success responses throw
ApiException when the server returns problem details, or
UnexpectedResponseException for an unrecognized response.
Development
dotnet restore
dotnet format --verify-no-changes --no-restore
dotnet run --project tests/Opsd.Tests --configuration Release
dotnet pack src/Opsd/Opsd.csproj --configuration Release --no-restore
License
Licensed under either the Apache License, Version 2.0 or the MIT license, at your option.
| Product | Versions 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 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. |
-
net8.0
- No dependencies.
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 | 102 | 8/13/2026 |