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
9
9
10
10
From version 6 onwards, the library was built with the following features included:
11
11
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';
4
4
import React from 'react' ;
5
5
6
6
// Will be removed after beta releases
7
- const VERSION = '6.0.0-beta.12 ' ;
7
+ const VERSION = '6.0.0' ;
8
8
9
- const installCodeNuget = `Install-Package SpotifyAPI.Web -Version ${ VERSION }
9
+ const installCodeNuget = `Install-Package SpotifyAPI.Web
10
10
# 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
12
12
` ;
13
13
14
14
const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${ VERSION } " />
15
15
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
16
16
<PackageReference Include="SpotifyAPI.Web.Auth" Version="${ VERSION } " />
17
17
` ;
18
18
19
- const installCodeCLI = `dotnet add package SpotifyAPI.Web --version ${ VERSION }
19
+ const installCodeCLI = `dotnet add package SpotifyAPI.Web
20
20
# 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
22
22
` ;
23
23
24
24
const InstallInstructions = ( ) => {
25
25
return (
26
- < div style = { { padding : '30px ' } } >
26
+ < div style = { { padding : '10px ' } } >
27
27
< Tabs
28
28
defaultValue = "cli"
29
29
values = { [
You can’t perform that action at this time.
0 commit comments