Updated Linux links, added Microsoft.WindowsDesktop.App to verify installation output

Yudi
2020-11-07 21:24:31 -03:00
parent 553e19d8f6
commit 2f50ea1cee

@@ -1,9 +1,10 @@
**.NET Core Runtime** is required by **DiscordChatExporter 2.16 and newer**.
* [Windows](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#windows)
* [macOS](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#macos)
* [Linux](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#linux)
* [Docker](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#docker)
* Install
* [Windows](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#windows)
* [macOS](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#macos)
* [Linux](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#linux)
* [Docker](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#docker)
* [Verify installation](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Install-.NET-Core-runtime#Verify-installation)
## Windows
@@ -18,7 +19,7 @@ The **x86** installer is for **32-bit** systems
## macOS
[Click the recommended version in this page](https://dotnet.microsoft.com/download/dotnet-core)<br/>
Look for the download link in the '.NET Core Runtime' (not the preview version) table, under **Installers**:<br/>
Look for the download link in the '**.NET Core Runtime**' (not the preview version) table, under **Installers**:<br/>
![](https://i.imgur.com/d9GwLZn.png)
@@ -29,20 +30,22 @@ Look for the download link in the '.NET Core Runtime' (not the preview version)
**You only need to install .NET Core <u>Runtime</u>**
Check out the instructions for your distro:
* [Debian 10](https://docs.microsoft.com/dotnet/core/install/linux-package-manager-debian10)
* [Ubuntu 19.10](https://docs.microsoft.com/dotnet/core/install/linux-package-manager-ubuntu-1910)
* [Fedora 31-33](https://docs.microsoft.com/dotnet/core/install/linux-package-manager-fedora31)
* [Debian](https://docs.microsoft.com/dotnet/core/install/linux-debian#supported-distributions)
* [Ubuntu](https://docs.microsoft.com/dotnet/core/install/linux-ubuntu#supported-distributions)
* [Fedora](https://docs.microsoft.com/dotnet/core/install/linux-fedora#supported-distributions)
For other distros and versions, please check the _'Linux package managers'_ menu on the left of [this page](https://docs.microsoft.com/dotnet/core/install/linux-package-managers).
For other distros, please check the _'Linux package managers'_ menu on the left of [this page](https://docs.microsoft.com/dotnet/core/install/linux-package-managers).
## Docker
**Docker** users don't need to install **.NET Core**. Please refer to the [Docker usage instructions](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Docker-usage-instructions) page for more information.
<br>
## Verify installation
You can check which version of **.NET Core** is installed by following these instructions:
### Step 1
**Windows:** Open `cmd`<br/>
**Windows:** Open Command Prompt (aka `cmd`)<br/>
**macOS and Linux:** Open `Terminal`
### Step 2
Execute: `dotnet --info`<br/>
@@ -52,6 +55,7 @@ If **.NET Core Runtime** is correctly installed, the command will output the fol
...
.NET Core runtimes installed:
Microsoft.NETCore.App x.x.x [/path/to/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App x.x.x [C:\path\to\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App x.x.x [C:\path\to\dotnet\shared\Microsoft.WindowsDesktop.App]
...
```