File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,25 @@ import CodeBlock from '@theme/CodeBlock'
33import Tabs from '@theme/Tabs'
44import TabItem from '@theme/TabItem'
55
6+ // Will be removed after beta releases
7+ const VERSION = '6.0.0-beta.5' ;
8+
69const installCodeNuget =
7- `Install-Package SpotifyAPI.Web -Version 6.0.0-beta.4
10+ `Install-Package SpotifyAPI.Web -Version ${ VERSION }
811# Optional Auth module, which includes an embedded HTTP Server for OAuth2
9- Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.4
12+ Install-Package SpotifyAPI.Web.Auth -Version ${ VERSION }
1013` ;
1114
1215const installReference =
13- `<PackageReference Include="SpotifyAPI.Web" Version="6.0.0-beta.4 " />
16+ `<PackageReference Include="SpotifyAPI.Web" Version="${ VERSION } " />
1417<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
15- <PackageReference Include="SpotifyAPI.Web.Auth" Version="6.0.0-beta.4 " />
18+ <PackageReference Include="SpotifyAPI.Web.Auth" Version="${ VERSION } " />
1619` ;
1720
1821const installCodeCLI =
19- `dotnet add package SpotifyAPI.Web --version 6.0.0-beta.4
22+ `dotnet add package SpotifyAPI.Web --version ${ VERSION }
2023# Optional Auth module, which includes an embedded HTTP Server for OAuth2
21- dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.4
24+ dotnet add package SpotifyAPI.Web.Auth --version ${ VERSION }
2225` ;
2326
2427const InstallInstructions = ( ) => {
You can’t perform that action at this time.
0 commit comments