PunkApiNet 1.0.0
dotnet add package PunkApiNet --version 1.0.0
NuGet\Install-Package PunkApiNet -Version 1.0.0
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="PunkApiNet" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PunkApiNet --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PunkApiNet, 1.0.0"
#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.
// Install PunkApiNet as a Cake Addin #addin nuget:?package=PunkApiNet&version=1.0.0 // Install PunkApiNet as a Cake Tool #tool nuget:?package=PunkApiNet&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
punkapi-net
.Net client library for PUNK API (https://punkapi.com)
See the Demo console app or follow the instructions below to get started.
Configuration
Punkapi-net can easily be configured for use with your .Net application using the Service Collections Extension Pattern.
using PunkApiNet;
// Default config
public void ConfigureServices(IServiceCollection services)
{
services.AddPunkApiClient();
}
// Or customise config
public void ConfigureServices(IServiceCollection services)
{
services.AddPunkApiClient((config) =>
{
config.BaseUrl = new Uri("https://some-other-punkapi-location");
config.TimeoutSeconds = 10;
});
}
Inject into your class and use
public class MyClass
{
private readonly IPunkApiClient _punkApiClient;
public MyClass(IPunkApiClient punkApiClient)
{
_punkApiClient = punkApiClient;
}
public async IEnumerable<Beer> GetBeersAsync()
{
return await _punkApiClient.GetAllBeersAsync();
}
}
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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- System.Net.Http.Json (>= 6.0.1)
- System.Text.Json (>= 6.0.8)
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.0.0 | 162 | 9/10/2023 |
1.0.0-alpha | 146 | 9/10/2023 |
0.0.3 | 226 | 1/29/2023 |
0.0.2-alpha | 150 | 1/29/2023 |
0.0.1-alpha | 153 | 1/29/2023 |