ServerJars 1.0.0
See the version list below for details.
dotnet add package ServerJars --version 1.0.0
NuGet\Install-Package ServerJars -Version 1.0.0
<PackageReference Include="ServerJars" Version="1.0.0" />
paket add ServerJars --version 1.0.0
#r "nuget: ServerJars, 1.0.0"
// Install ServerJars as a Cake Addin #addin nuget:?package=ServerJars&version=1.0.0 // Install ServerJars as a Cake Tool #tool nuget:?package=ServerJars&version=1.0.0
ServerJars .NET API
Implementation of the ServerJars.com API as a .NET library.
Please see API Documentation for further details
Installing
Multiple options are available to install within your project:
Install, using the Nuget Gallery
Install using the Package Manager Console:
Install-Package ServerJars
Install using .NET CLI
dotnet add package ServerJars
Usage
Simply instantiate the ServerJars
class and use it's methods to gather information from the API.
using ServerJarsAPI;
var serverJar = new ServerJars();
// GetTypes
var types = await serverJar.GetTypes();
Console.WriteLine(JsonSerializer.Serialize(types, jsonOptions));
// GetDetails
var details = await serverJar.GetDetails("servers", "spigot", "1.19.1");
Console.WriteLine(JsonSerializer.Serialize(details, jsonOptions));
// GetLatest
var latestDetails = await serverJar.GetLatest("servers", "spigot");
Console.WriteLine(JsonSerializer.Serialize(latestDetails, jsonOptions));
// GetAllDetails
var allDetails = await serverJar.GetAllDetails("servers", "spigot", 5u);
Console.WriteLine(JsonSerializer.Serialize(allDetails, jsonOptions));
// GetJar
using (var stream = await serverJar.GetJar("servers", "spigot"))
{
stream.Seek(0, SeekOrigin.Begin);
Console.WriteLine($"Downloaded {stream.Length / 1024 / 1024} MB.");
using var fileStream = File.Create("./server.jar");
stream.CopyTo(fileStream);
}
Demo application
Have a look at the Console Demo within the repository. It will run straight out of the box to give you a hint what the library can do for you.
Support
I try to be responsive to Stack Overflow questions in the serverjars-net
tag and issues logged on this GitHub repository.
If I've helped you, feel free to buy me a coffee or see the Sponsor link at the top right of the GitHub page.
<a href="https://www.buymeacoffee.com/tekgator" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
Dependencies and Credits
The project has no special dependencies except to the awesome API from the ServerJars.com website.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. |
-
net6.0
- No dependencies.
-
net7.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.