Merge pull request #565 from Bond-009/patch-1

Add installing with nuget using VSC to guides
This commit is contained in:
Christopher F
2017-03-14 15:35:43 -04:00
committed by GitHub
2 changed files with 25 additions and 3 deletions

View File

@@ -51,6 +51,7 @@ project
Don't forget to change your package source if you're installing from the Don't forget to change your package source if you're installing from the
developer feed. developer feed.
Also make sure to check 'Enable Prereleases' if installing a dev build! Also make sure to check 'Enable Prereleases' if installing a dev build!
5. Install the 'Discord.Net' package 5. Install the 'Discord.Net' package
![Step 5](images/install-vs-nuget.png) ![Step 5](images/install-vs-nuget.png)
@@ -59,7 +60,15 @@ Also make sure to check 'Enable Prereleases' if installing a dev build!
**todo** **todo**
## Using Visual Studio Code ## 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 # Compiling from Source

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="1.0.0-rc-00617" />
</ItemGroup>
</Project>