diff --git a/Install-.NET-Core-runtime.md b/Install-.NET-Core-runtime.md index 01d52ec..be740ae 100644 --- a/Install-.NET-Core-runtime.md +++ b/Install-.NET-Core-runtime.md @@ -33,3 +33,21 @@ Check out the instructions for your distro: * [Fedora 31](https://docs.microsoft.com/en-us/dotnet/core/install/linux-package-manager-fedora31) 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). + +## Verify installation + +You can check which version of **.NET Core** is installed by following these instructions: +### Step 1 +**Windows:** Open `cmd`
+**macOS and Linux:** Open `Terminal` +### Step 2 +Execute: `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 [/path/to/dotnet/shared/Microsoft.NETCore.App] +... +``` \ No newline at end of file