Browse Source

Remove 1.0 ref

pull/988/head
Hsu Still 7 years ago
parent
commit
2642fd7828
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
3 changed files with 10 additions and 9 deletions
  1. +2
    -2
      docs/guides/getting_started/installing.md
  2. +4
    -3
      docs/guides/getting_started/samples/project.csproj
  3. +4
    -4
      docs/guides/getting_started/terminology.md

+ 2
- 2
docs/guides/getting_started/installing.md View File

@@ -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)]

+ 4
- 3
docs/guides/getting_started/samples/project.csproj View File

@@ -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>


+ 4
- 4
docs/guides/getting_started/terminology.md View File

@@ -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`.




Loading…
Cancel
Save