mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
18 lines
526 B
PowerShell
18 lines
526 B
PowerShell
################################################################################
|
|
## File: Validate-ServiceFabricSDK.ps1
|
|
## Desc: Validate ServiceFabricSDK
|
|
################################################################################
|
|
|
|
$modules = Get-Module -Name ServiceFabric -ListAvailable
|
|
|
|
if (($modules | Measure-Object).Count -gt 0)
|
|
{
|
|
$modules
|
|
}
|
|
else
|
|
{
|
|
Write-Host "ServiceFabric Module is not present, it might not be installed"
|
|
throw "ServiceFabric Module is not present, it might not be installed"
|
|
}
|
|
|