From 2cdbe7c57b93ee36ca5cccad9480a3327e9a1102 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Sat, 7 Dec 2019 21:06:00 +0200 Subject: [PATCH] Add .NET Core runtime installation guide in preparation for new release --- Install-.NET-Core-runtime.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Install-.NET-Core-runtime.md diff --git a/Install-.NET-Core-runtime.md b/Install-.NET-Core-runtime.md new file mode 100644 index 0000000..13efc72 --- /dev/null +++ b/Install-.NET-Core-runtime.md @@ -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) \ No newline at end of file