Files
runner-images/images/win/scripts/Installers/Validate-DotnetSDK.ps1
2020-06-02 20:07:12 +03:00

17 lines
373 B
PowerShell

################################################################################
## File: Validate-DotnetSDK.ps1
## Desc: Validate dotnet
################################################################################
if (Get-Command -Name 'dotnet')
{
Write-Host "dotnet $(dotnet --version) on path"
}
else
{
Write-Host "dotnet is not on path"
exit 1
}