Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
psake
4.9.1
examples/nested/nested1.ps1
Properties
{
$x
=
100
}
Task
default
-Depends
Nested1CheckX
Task
Nested1CheckX
{
Assert
(
$x
-eq
100
)
'$x was not 100'
}