Spotify.NET/SpotifyAPI.Docs/src/install_instructions.js

53 lines
1.6 KiB
JavaScript
Raw Normal View History

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