6.0.0-beta.4 prepare

This commit is contained in:
Jonas Dellinger 2020-06-13 01:15:23 +02:00
parent d7c54ebfcd
commit 5a9155056d

View File

@ -4,21 +4,21 @@ import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem' import TabItem from '@theme/TabItem'
const installCodeNuget = const installCodeNuget =
`Install-Package SpotifyAPI.Web -Version 6.0.0-beta.3 `Install-Package SpotifyAPI.Web -Version 6.0.0-beta.4
# Optional Auth module, which includes an embedded HTTP Server for OAuth2 # Optional Auth module, which includes an embedded HTTP Server for OAuth2
Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.3 Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.4
`; `;
const installReference = const installReference =
`<PackageReference Include="SpotifyAPI.Web" Version="6.0.0-beta.3" /> `<PackageReference Include="SpotifyAPI.Web" Version="6.0.0-beta.4" />
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 --> <!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
<PackageReference Include="SpotifyAPI.Web.Auth" Version="6.0.0-beta.3" /> <PackageReference Include="SpotifyAPI.Web.Auth" Version="6.0.0-beta.4" />
`; `;
const installCodeCLI = const installCodeCLI =
`dotnet add package SpotifyAPI.Web --version 6.0.0-beta.3 `dotnet add package SpotifyAPI.Web --version 6.0.0-beta.4
# Optional Auth module, which includes an embedded HTTP Server for OAuth2 # Optional Auth module, which includes an embedded HTTP Server for OAuth2
dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.3 dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.4
`; `;
const InstallInstructions = () => { const InstallInstructions = () => {