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'
|
|
|
|
|
|
|
|
const installCodeNuget =
|
2020-06-09 02:07:07 +01:00
|
|
|
`Install-Package SpotifyAPI.Web -Version 6.0.0-beta.3
|
2020-06-03 16:44:13 +01:00
|
|
|
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
|
2020-06-09 02:07:07 +01:00
|
|
|
Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.3
|
2020-06-03 16:44:13 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const installReference =
|
2020-06-09 02:07:07 +01:00
|
|
|
`<PackageReference Include="SpotifyAPI.Web" Version="6.0.0-beta.3" />
|
2020-06-03 16:44:13 +01:00
|
|
|
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
|
2020-06-09 02:07:07 +01:00
|
|
|
<PackageReference Include="SpotifyAPI.Web.Auth" Version="6.0.0-beta.3" />
|
2020-06-03 16:44:13 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const installCodeCLI =
|
2020-06-09 02:07:07 +01:00
|
|
|
`dotnet add package SpotifyAPI.Web --version 6.0.0-beta.3
|
2020-06-03 16:44:13 +01:00
|
|
|
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
|
2020-06-09 02:07:07 +01:00
|
|
|
dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.3
|
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;
|