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'; const installCodeNuget = `Install-Package SpotifyAPI.Web # Optional Auth module, which includes an embedded HTTP Server for OAuth2 Install-Package SpotifyAPI.Web.Auth `; const installReference = ` `; const installCodeCLI = `dotnet add package SpotifyAPI.Web # Optional Auth module, which includes an embedded HTTP Server for OAuth2 dotnet add package SpotifyAPI.Web.Auth `; const InstallInstructions = () => { return (
{installCodeCLI} {installCodeNuget} {installReference}
); }; export default InstallInstructions;