Determine the .NET CORE Version Installed
Using Powershell:
Runtimes:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'shared\Microsoft.NETCore.App')).Name 
SDK's:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'sdk')).Name 
Using Powershell:
Runtimes:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'shared\Microsoft.NETCore.App')).Name 
SDK's:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'sdk')).Name 
Coming soon...