1、判断.Net Core runtime是否安装以及安装的版本
下面命令在Powershell中执行:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'shared\Microsoft.NETCore.App')).Name
2、判断.Net Core sdk是否安装以及安装的版本
下面命令在Powershell中执行:
(dir (Get-Command dotnet).Path.Replace('dotnet.exe', 'sdk')).Name