mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
17 lines
373 B
PowerShell
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
|
|
}
|
|
|
|
|