diff --git a/Install-.NET-Core-runtime.md b/Install-.NET-Core-runtime.md index 14b5618..5dc626e 100644 --- a/Install-.NET-Core-runtime.md +++ b/Install-.NET-Core-runtime.md @@ -8,9 +8,9 @@ ## Windows -[![](https://i.imgur.com/K6WdpaY.png)](https://dotnet.microsoft.com/download/dotnet/3.1/runtime) +[![](https://i.imgur.com/T4hUMYl.png)](https://dotnet.microsoft.com/download/dotnet/3.1/runtime) -The **x64** installer is for **64-bit** systems
+The **x64** installer is for **64-bit** systems The **x86** installer is for **32-bit** systems @@ -23,42 +23,42 @@ Direct download links: ## macOS -[Click the recommended version in this page](https://dotnet.microsoft.com/download/dotnet-core)
-Look for the download link in the '**.NET Core Runtime**' (not the preview version) table, under **Installers**:
+[Check out the latest version in this page](https://dotnet.microsoft.com/download/dotnet/3.1). +Look for the download link in the '**.NET Runtime**' section, under **Installers**: -![](https://i.imgur.com/d9GwLZn.png) +[![](https://i.imgur.com/8xQLem1.png)](https://dotnet.microsoft.com/download/dotnet/3.1) ## Linux -**You only need to install .NET Core v3.1 Runtime** +**You only need to install .NET Core Runtime v3.1** Check out the instructions for your distro: -* [Debian](https://docs.microsoft.com/dotnet/core/install/linux-debian#supported-distributions) * [Ubuntu](https://docs.microsoft.com/dotnet/core/install/linux-ubuntu#supported-distributions) +* [Debian](https://docs.microsoft.com/dotnet/core/install/linux-debian#supported-distributions) * [Fedora](https://docs.microsoft.com/dotnet/core/install/linux-fedora#supported-distributions) -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). +For other distros, please check the _'Install on Linux'_ menu on the left of [this page](https://docs.microsoft.com/dotnet/core/install/linux). ## Docker **Docker** users don't need to install .NET runtime. Please refer to the [Docker usage instructions](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Docker-usage-instructions) page for more information. -
+ ## Verify installation You can check which version of **.NET Core** is installed by following these instructions: ### Step 1 -**Windows:** Open Command Prompt (aka `cmd`)
+**Windows:** Open Command Prompt (aka `cmd`) **macOS and Linux:** Open `Terminal` ### Step 2 -Execute: `dotnet --info`
+Run: `dotnet --info` If **.NET Core Runtime** is correctly installed, the command will output the following: ``` ... -.NET Core runtimes installed: - 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] +.NET runtimes installed: + Microsoft.NETCore.App 3.1.x [C:\path\to\dotnet\shared\Microsoft.NETCore.App] + Microsoft.WindowsDesktop.App 3.1.x [C:\path\to\dotnet\shared\Microsoft.WindowsDesktop.App] ... ``` \ No newline at end of file