2020-06-03 16:44:13 +01:00
|
|
|
import React from "react";
|
|
|
|
import CodeBlock from '@theme/CodeBlock'
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
|
|
import TabItem from '@theme/TabItem'
|
|
|
|
|
2020-06-15 21:37:11 +01:00
|
|
|
// Will be removed after beta releases
|
2020-07-13 15:06:28 +01:00
|
|
|
const VERSION = '6.0.0-beta.8';
|
2020-06-15 21:37:11 +01:00
|
|
|
|
2020-06-03 16:44:13 +01:00
|
|
|
const installCodeNuget =
|
2020-06-15 21:37:11 +01:00
|
|
|
`Install-Package SpotifyAPI.Web -Version ${VERSION}
|
2020-06-03 16:44:13 +01:00
|
|
|
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
|
2020-06-15 21:37:11 +01:00
|
|
|
Install-Package SpotifyAPI.Web.Auth -Version ${VERSION}
|
2020-06-03 16:44:13 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const installReference =
|
2020-06-15 21:37:11 +01:00
|
|
|
`<PackageReference Include="SpotifyAPI.Web" Version="${VERSION}" />
|
2020-06-03 16:44:13 +01:00
|
|
|
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
|
2020-06-15 21:37:11 +01:00
|
|
|
<PackageReference Include="SpotifyAPI.Web.Auth" Version="${VERSION}" />
|
2020-06-03 16:44:13 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const installCodeCLI =
|
2020-06-15 21:37:11 +01:00
|
|
|
`dotnet add package SpotifyAPI.Web --version ${VERSION}
|
2020-06-03 16:44:13 +01:00
|
|
|
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
|
2020-06-15 21:37:11 +01:00
|
|
|
dotnet add package SpotifyAPI.Web.Auth --version ${VERSION}
|
2020-06-03 16:44:13 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const InstallInstructions = () => {
|
|
|
|
return (<div style={{ padding: '30px' }}>
|
|
|
|
<Tabs
|
|
|
|
defaultValue="cli"
|
|
|
|
values={[
|
|
|
|
{ label: '.NET CLI', value: 'cli' },
|
|
|
|
{ label: 'Package Manager', value: 'nuget' },
|
|
|
|
{ label: 'Package Reference', value: 'reference' }
|
|
|
|
]}>
|
|
|
|
<TabItem value="cli">
|
|
|
|
<CodeBlock metastring="shell" className="shell">
|
|
|
|
{installCodeCLI}
|
|
|
|
</CodeBlock>
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="nuget">
|
|
|
|
<CodeBlock metastring="shell" className="shell">
|
|
|
|
{installCodeNuget}
|
|
|
|
</CodeBlock>
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="reference">
|
|
|
|
<CodeBlock metastring="xml" className="xml">
|
|
|
|
{installReference}
|
|
|
|
</CodeBlock>
|
|
|
|
</TabItem>
|
|
|
|
</Tabs>
|
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default InstallInstructions;
|