| @@ -80,7 +80,7 @@ you're installing from the developer feed. | |||||
| 1. Create a new project for your bot. | 1. Create a new project for your bot. | ||||
| 2. Add `Discord.Net` to your .csproj. | 2. Add `Discord.Net` to your .csproj. | ||||
| [!code-xml[Sample .csproj](samples/project.csproj)] | |||||
| [!code[Sample .csproj](samples/project.csproj)] | |||||
| [NuGet.Config file]: #configuring-nuget-without-visual-studio | [NuGet.Config file]: #configuring-nuget-without-visual-studio | ||||
| @@ -145,4 +145,4 @@ your application, where the project solution is located. | |||||
| Paste the following snippets into this configuration file, adding any | Paste the following snippets into this configuration file, adding any | ||||
| additional feeds as necessary. | additional feeds as necessary. | ||||
| [!code-xml[NuGet Configuration](samples/nuget.config)] | |||||
| [!code[NuGet Configuration](samples/nuget.config)] | |||||
| @@ -1,8 +1,9 @@ | |||||
| <Project Sdk="Microsoft.NET.Sdk"> | <Project Sdk="Microsoft.NET.Sdk"> | ||||
| // The following may differ depending on the latest version of | |||||
| // .NET Core Framework or Discord.NET. | |||||
| <!-- | |||||
| The following may differ depending on the latest version of | |||||
| .NET Core Framework or Discord.NET. | |||||
| --> | |||||
| <PropertyGroup> | <PropertyGroup> | ||||
| <OutputType>Exe</OutputType> | <OutputType>Exe</OutputType> | ||||
| <TargetFramework>netcoreapp1.1</TargetFramework> | <TargetFramework>netcoreapp1.1</TargetFramework> | ||||
| @@ -7,13 +7,13 @@ title: Terminology | |||||
| ## Preface | ## Preface | ||||
| Most terms for objects remain the same between 0.9 and 1.0. The major | |||||
| difference is that the ``Server`` is now called ``Guild`` to stay in | |||||
| line with Discord internally. | |||||
| Most terms for objects remain the same between 0.9 and 1.0 and above. | |||||
| The major difference is that the ``Server`` is now called ``Guild`` | |||||
| to stay in line with Discord internally. | |||||
| ## Implementation Specific Entities | ## Implementation Specific Entities | ||||
| Discord.Net 1.0 is split into a core library and three different | |||||
| Discord.Net is split into a core library and three different | |||||
| implementations - `Discord.Net.Core`, `Discord.Net.Rest`, | implementations - `Discord.Net.Core`, `Discord.Net.Rest`, | ||||
| `Discord.Net.Rpc`, and `Discord.Net.WebSockets`. | `Discord.Net.Rpc`, and `Discord.Net.WebSockets`. | ||||