Update README.md

Added nuget link to readme.
This commit is contained in:
Michael Kellner 2018-05-30 23:02:23 +02:00 committed by GitHub
parent 26dc983c14
commit 8f4d29bca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
# SteamStorefrontAPI # SteamStorefrontAPI
The SteamStorefrontAPI is a .NET wrapper for the steam storefront api which is exposed via Steam Big Picture. The API is not officially available or documented, all data in this library was either compiled by trial and error from the [inofficial api documentation](https://wiki.teamfortress.com/wiki/User:RJackson/StorefrontAPI), and is therefore provided as-is. The SteamStorefrontAPI is a .NET wrapper for the steam storefront api which is exposed via Steam Big Picture. The API is not officially available or documented, all data in this library was either compiled by trial and error from the [inofficial api documentation](https://wiki.teamfortress.com/wiki/User:RJackson/StorefrontAPI), and is therefore provided as-is. Also available as [NuGet Package](https://www.nuget.org/packages/SteamStorefrontAPI/).
## Usage examples ## Usage examples
@ -34,4 +34,4 @@ static async Task Examples()
// Get a list of featured games grouped by category for region US // Get a list of featured games grouped by category for region US
List<FeaturedCategory> featuredCategories2 = await FeaturedCategories.GetAsync("DE"); List<FeaturedCategory> featuredCategories2 = await FeaturedCategories.GetAsync("DE");
} }
``` ```