Fiedler.Libraries.IO.SDK 1.1.3

dotnet add package Fiedler.Libraries.IO.SDK --version 1.1.3
                    
NuGet\Install-Package Fiedler.Libraries.IO.SDK -Version 1.1.3
                    
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="Fiedler.Libraries.IO.SDK" Version="1.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fiedler.Libraries.IO.SDK" Version="1.1.3" />
                    
Directory.Packages.props
<PackageReference Include="Fiedler.Libraries.IO.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 Fiedler.Libraries.IO.SDK --version 1.1.3
                    
#r "nuget: Fiedler.Libraries.IO.SDK, 1.1.3"
                    
#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 Fiedler.Libraries.IO.SDK@1.1.3
                    
#: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=Fiedler.Libraries.IO.SDK&version=1.1.3
                    
Install as a Cake Addin
#tool nuget:?package=Fiedler.Libraries.IO.SDK&version=1.1.3
                    
Install as a Cake Tool

Libraries.IO.SDK

This package is a client library API wrapper for the Libraries.IO API.

Libraries.IO.SDK currently supports all of the current Libraries.IO API endpoints EXCEPT the subscriptions endpoints.

Usage

Use ILibrariesIOClient to call the desired endpoints. This package assumes the following:

The ILibrariesIOClient class provides methods for each endpoint of the Libraries.IO API. Each ILibrariesIOClient method calls the corresponding Libraries.IO API and deserializes the JSON response into strongly typed objects.

    // Sample DI setup of ILibrariesIOClient
    var builder = Host.CreateApplicationBuilder(args);
    builder.Services.AddHttpClient();
    builder.Services.AddSingleton<ILibrariesIOClient, LibrariesIOClient>();
    var host = builder.Build();
    
    // Sample usage of ILibrariesIOClient to get list of platforms from LibrariesIO
    var client = host.Services.GetRequiredService<ILibrariesIOClient>();
    var cts = new CancellationTokenSource();
    await foreach(var platform in client.GetPlatforms(cts.Token))
    {
        Console.WriteLine($"Platform: {platform.Name}");
    }

Documentation

For more information, please refer to the package's GitHub repository.

Product Compatible and additional computed target framework versions.
.NET 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 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. 
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
1.1.3 199 4/11/2025
1.1.0 185 4/11/2025
1.0.5 172 2/17/2025
1.0.4 171 10/15/2024
1.0.3 207 8/8/2024
1.0.2 155 8/4/2024
1.0.1 161 8/1/2024
1.0.0 144 7/31/2024