Add .NET Core runtime installation guide in preparation for new release

Alexey Golub
2019-12-07 21:06:00 +02:00
parent 5a11740abb
commit 2cdbe7c57b

@@ -0,0 +1,24 @@
In order to use DiscordChatExporter (ver. 2.16+) you need to install the .NET Core Runtime.
# Windows
[Download installer (x64)](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-desktop-3.1.0-windows-x64-installer)
[Download installer (x86)](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-desktop-3.1.0-windows-x86-installer)
# Linux
Open bash and run:
```bash
sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-runtime-3.1
```
Check out this link for more info: https://docs.microsoft.com/en-us/dotnet/core/install/linux-package-manager-ubuntu-1904#install-the-net-core-runtime (you can select your distribution in the menu on the left)
# macOS
[Download installer (x64)](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-3.1.0-macos-x64-installer)