Browse Source

Add additional clarification for installing packages

pull/1161/head
Still Hsu 7 years ago
parent
commit
1e40e019f4
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
2 changed files with 5 additions and 3 deletions
  1. +3
    -2
      docs/guides/getting_started/nightlies.md
  2. +2
    -1
      docs/guides/getting_started/samples/project.xml

+ 3
- 2
docs/guides/getting_started/nightlies.md View File

@@ -61,8 +61,9 @@ additional feeds if necessary.
[!code[NuGet Configuration](samples/nuget.config)] [!code[NuGet Configuration](samples/nuget.config)]


After which, you may install the packages by directly modifying the After which, you may install the packages by directly modifying the
project file, using the dotnet CLI (`dotnet add package Discord.Net`),
or by using PowerShell (`Install-Package Discord.Net -Prerelease`).
project file and specifying a version, or by using
the [Package Manager Console](https://docs.microsoft.com/en-us/nuget/tools/powershell-reference)
(`Install-Package Discord.Net -IncludePrerelease`).


*** ***




+ 2
- 1
docs/guides/getting_started/samples/project.xml View File

@@ -2,8 +2,9 @@


<!-- <!--
The following may differ depending on the latest version of The following may differ depending on the latest version of
.NET Core Framework or Discord.Net.
.NET Core or Discord.Net.
--> -->

<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFramework>netcoreapp2.1</TargetFramework>


Loading…
Cancel
Save