File tree Expand file tree Collapse file tree 2 files changed +19
-19
lines changed
Expand file tree Collapse file tree 2 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,16 @@ This open source library for the Spotify Web API provides an easy to use interfa
99
1010From version 6 onwards, the library was built with the following features included:
1111
12- * ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
13- * ✅ Supports ` .NET Standard 2.X ` , which includes all major platforms, including mobile:
14- * ` .NET Framework `
15- * ` UWP `
16- * ` .NET Core `
17- * ` Xamarin.Forms `
18- * ✅ Included ` HTTPClient ` , but feel free to bring your own!
19- * ✅ Logging supported
20- * ✅ Retry Handlers supported
21- * ✅ Proxy support
22- * ✅ Pagination support
23- * ✅ All OAuth2 Authentications supported for use in ` ASP .NET ` ** and** ` CLI ` apps
24- * ✅ Modular structure, for easy unit testing
12+ - ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
13+ - ✅ Supports ` .NET 5.0 ` and ` .NET Standard 2.X ` , which includes all major platforms, including mobile:
14+ - ` .NET Framework `
15+ - ` UWP `
16+ - ` .NET Core `
17+ - ` Xamarin.Forms `
18+ - ✅ Included ` HTTPClient ` , but feel free to bring your own!
19+ - ✅ Logging supported
20+ - ✅ Retry Handlers supported
21+ - ✅ Proxy support
22+ - ✅ Pagination support
23+ - ✅ All OAuth2 Authentications supported for use in ` ASP .NET ` ** and** ` CLI ` apps
24+ - ✅ Modular structure, for easy unit testing
Original file line number Diff line number Diff line change @@ -4,26 +4,26 @@ import Tabs from '@theme/Tabs';
44import React from 'react' ;
55
66// Will be removed after beta releases
7- const VERSION = '6.0.0-beta.12 ' ;
7+ const VERSION = '6.0.0' ;
88
9- const installCodeNuget = `Install-Package SpotifyAPI.Web -Version ${ VERSION }
9+ const installCodeNuget = `Install-Package SpotifyAPI.Web
1010# Optional Auth module, which includes an embedded HTTP Server for OAuth2
11- Install-Package SpotifyAPI.Web.Auth -Version ${ VERSION }
11+ Install-Package SpotifyAPI.Web.Auth
1212` ;
1313
1414const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${ VERSION } " />
1515<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
1616<PackageReference Include="SpotifyAPI.Web.Auth" Version="${ VERSION } " />
1717` ;
1818
19- const installCodeCLI = `dotnet add package SpotifyAPI.Web --version ${ VERSION }
19+ const installCodeCLI = `dotnet add package SpotifyAPI.Web
2020# Optional Auth module, which includes an embedded HTTP Server for OAuth2
21- dotnet add package SpotifyAPI.Web.Auth --version ${ VERSION }
21+ dotnet add package SpotifyAPI.Web.Auth
2222` ;
2323
2424const InstallInstructions = ( ) => {
2525 return (
26- < div style = { { padding : '30px ' } } >
26+ < div style = { { padding : '10px ' } } >
2727 < Tabs
2828 defaultValue = "cli"
2929 values = { [
You can’t perform that action at this time.
0 commit comments