import React from "react"; import CodeBlock from '@theme/CodeBlock' import Tabs from '@theme/Tabs' import TabItem from '@theme/TabItem' // Will be removed after beta releases const VERSION = '6.0.0-beta.9'; 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;