{"id":22319376,"url":"https://github.com/archomeda/gw2sharp","last_synced_at":"2025-03-04T01:25:24.606Z","repository":{"id":35188760,"uuid":"165342838","full_name":"Archomeda/Gw2Sharp","owner":"Archomeda","description":"A cross-platform .NET wrapper library for the Guild Wars 2 API written in C#","archived":false,"fork":false,"pushed_at":"2024-09-03T20:58:42.000Z","size":37798,"stargazers_count":38,"open_issues_count":16,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-02-25T00:23:38.095Z","etag":null,"topics":["csharp","dotnet","dotnet-core","dotnet-standard","guildwars2","guildwars2-api","gw2","gw2-api"],"latest_commit_sha":null,"homepage":"https://archomeda.github.io/Gw2Sharp","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Archomeda.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-12T03:42:24.000Z","updated_at":"2025-01-28T02:22:44.000Z","dependencies_parsed_at":"2025-02-17T22:48:15.528Z","dependency_job_id":"e43a1852-ce8c-4312-a2b4-86cddd5a3681","html_url":"https://github.com/Archomeda/Gw2Sharp","commit_stats":null,"previous_names":[],"tags_count":42,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Archomeda%2FGw2Sharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Archomeda%2FGw2Sharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Archomeda%2FGw2Sharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Archomeda%2FGw2Sharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Archomeda","download_url":"https://codeload.github.com/Archomeda/Gw2Sharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241765542,"owners_count":20016568,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","dotnet-core","dotnet-standard","guildwars2","guildwars2-api","gw2","gw2-api"],"created_at":"2024-12-04T00:08:34.685Z","updated_at":"2025-03-04T01:25:24.585Z","avatar_url":"https://github.com/Archomeda.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gw2Sharp\n[![NuGet](https://img.shields.io/nuget/v/Gw2Sharp.svg?label=NuGet\u0026logo=nuget)](https://www.nuget.org/packages/Gw2Sharp)\n[![NuGet Downloads](https://img.shields.io/nuget/dt/Gw2Sharp.svg?label=Downloads\u0026logo=nuget)](https://www.nuget.org/packages/Gw2Sharp)\n[![Discord](https://img.shields.io/discord/384735285197537290.svg?label=Discord\u0026logo=discord)](https://discord.gg/u2YDPea)  \n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Archomeda_Gw2Sharp\u0026metric=coverage)](https://sonarcloud.io/dashboard?id=Archomeda_Gw2Sharp)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=Archomeda_Gw2Sharp\u0026metric=sqale_rating)](https://sonarcloud.io/dashboard?id=Archomeda_Gw2Sharp)\n[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=Archomeda_Gw2Sharp\u0026metric=reliability_rating)](https://sonarcloud.io/dashboard?id=Archomeda_Gw2Sharp)\n\nGw2Sharp is a cross-platform .NET wrapper library for the [official Guild Wars 2 API](https://wiki.guildwars2.com/wiki/API) written in C#.\n\nThis library has been written to be as close as possible to the official API structure, with a few exceptions to make life easier.\n*Make sure to read the [introductory guide](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html) to get started.*\n\n## Supported services\nThe following services supported by Gw2Sharp:\n- WebAPI v2 - [introduction](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html#web-api-v2), [endpoints](https://archomeda.github.io/Gw2Sharp/master/guides/endpoints.html)\n- Render service - [introduction](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html#render-service)\n- Mumble service - [introduction](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html#mumble)\n- Chat links - [introduction](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html#chat-links)\n\n## Requirements\nThis project targets .NET 5, .NET Core 3.1 and .NET Standard 2.0 for compatibility with older .NET Frameworks (check the [.NET Standard 2.0 compatibility table](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support))\nIt supports the C# 8.0 nullable reference types feature for your convenience, but it's not required when consuming the library.\n\n## Installing\nYou can find the library on [NuGet](https://www.nuget.org/packages/Gw2Sharp/). Or, alternatively, you can install it by running `dotnet add package Gw2Sharp` in a console, or `Install-Package Gw2Sharp` in the package manager console.\n\n## Usage\nFor basic usage, check out the [introductory guide](https://archomeda.github.io/Gw2Sharp/master/guides/introduction.html).  \nYou can find the other guides there as well to help you get started on the advanced usage of Gw2Sharp, such as caching and exception handling.\n\n## Compiling\nVisual Studio 2019 (16.10) or later is required, along with the [.NET 5 SDK](https://dotnet.microsoft.com/download/dotnet/5.0) and [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet/3.1). \nIf they aren't installed automatically for some reason, make sure to install them manually.\n\n## Contributing\nContributing is always welcome, but please keep them in scope of this project.\nI'm looking for all contributions that fixes bugs.\nBut regarding implementing new features, it's better to raise an issue first explaining why that new feature should be added.\n\nIf you're adding something new, do add some tests for it as well.\nI'm aiming for this project to be as stable as possible.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchomeda%2Fgw2sharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchomeda%2Fgw2sharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchomeda%2Fgw2sharp/lists"}