Added Verify installation

Yudi
2020-04-09 18:35:46 -03:00
parent 9c9bfab129
commit fd1145215b

@@ -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`<br/>
**macOS and Linux:** Open `Terminal`
### Step 2
Execute: `dotnet --info`<br/>
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]
...
```