import CodeBlock from '@theme/CodeBlock'; import TabItem from '@theme/TabItem'; import Tabs from '@theme/Tabs'; import React from 'react'; // Will be removed after beta releases const VERSION = '6.0.0-beta.12'; const installCodeNuget = `Install-Package SpotifyAPI.Web -Version ${VERSION} # Optional Auth module, which includes an embedded HTTP Server for OAuth2 Install-Package SpotifyAPI.Web.Auth -Version ${VERSION} `; const installReference = ` `; const installCodeCLI = `dotnet add package SpotifyAPI.Web --version ${VERSION} # Optional Auth module, which includes an embedded HTTP Server for OAuth2 dotnet add package SpotifyAPI.Web.Auth --version ${VERSION} `; const InstallInstructions = () => { return (
{installCodeCLI} {installCodeNuget} {installReference}
); }; export default InstallInstructions;