2020-08-19 13:12:11 +01:00
|
|
|
import CodeBlock from '@theme/CodeBlock';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import React from 'react';
|
2020-06-03 16:44:13 +01:00
|
|
|
|
2020-06-15 21:37:11 +01:00
|
|
|
// Will be removed after beta releases
|
2020-11-14 10:02:12 +00:00
|
|
|
const VERSION = '6.0.0-beta.12';
|
2020-06-15 21:37:11 +01:00
|
|
|
|
2020-08-19 13:12:11 +01:00
|
|
|
const installCodeNuget = `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
|
|
|
`;
|
|
|
|
|
2020-08-19 13:12:11 +01:00
|
|
|
const installReference = `<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
|
|
|
`;
|
|
|
|
|
2020-08-19 13:12:11 +01:00
|
|
|
const installCodeCLI = `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 = () => {
|
2020-08-19 13:12:11 +01:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
};
|
2020-06-03 16:44:13 +01:00
|
|
|
|
|
|
|
export default InstallInstructions;
|