diff --git a/docs/guides/installing.md b/docs/guides/installing.md index 077d46213..fa1280929 100644 --- a/docs/guides/installing.md +++ b/docs/guides/installing.md @@ -51,6 +51,7 @@ project Don't forget to change your package source if you're installing from the developer feed. Also make sure to check 'Enable Prereleases' if installing a dev build! + 5. Install the 'Discord.Net' package ![Step 5](images/install-vs-nuget.png) @@ -59,7 +60,15 @@ Also make sure to check 'Enable Prereleases' if installing a dev build! **todo** ## Using Visual Studio Code -**todo** + +1. Create a new project for your bot +2. Add Discord.Net to your .csproj + +[!code-xml[Sample .csproj](samples/project.csproj)] + +> [!TIP] +Don't forget to add the package source to a [NuGet.Config file](#configuring-nuget-without-visual-studio) if you're installing from the +developer feed. # Compiling from Source @@ -81,7 +90,7 @@ installation. ## Installing on .NET Standard 1.1 -For applications targeting a runtime corresponding with .NET Standard 1.1 or 1.2, +For applications targeting a runtime corresponding with .NET Standard 1.1 or 1.2, the builtin WebSocket and UDP provider will not work. For applications which utilize a WebSocket connection to Discord (WebSocket or RPC), third-party provider packages will need to be installed and configured. @@ -118,4 +127,4 @@ application, where the project solution is located. Paste the following snippets into this configuration file, adding any additional feeds as necessary. -[!code-xml[NuGet Configuration](samples/nuget.config)] \ No newline at end of file +[!code-xml[NuGet Configuration](samples/nuget.config)] diff --git a/docs/guides/samples/project.csproj b/docs/guides/samples/project.csproj new file mode 100644 index 000000000..8daf71877 --- /dev/null +++ b/docs/guides/samples/project.csproj @@ -0,0 +1,13 @@ + + + + Exe + netcoreapp1.1 + true + + + + + + +