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