Created
February 12, 2016 15:59
-
-
Save swade1987/bd0f4342194ddd88566b to your computer and use it in GitHub Desktop.
random
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
properties { | |
$testMessage = 'Executed Test!' | |
$compileMessage = 'Executed Compile!' | |
$cleanMessage = 'Executed Clean!' | |
} | |
task default -depends Test | |
task Test -depends Compile, Clean { | |
$testMessage | |
} | |
task Compile -depends Clean { | |
$compileMessage | |
} | |
task Clean { | |
$cleanMessage | |
} | |
task ? -Description "Helper to display task info" { | |
Write-Documentation | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment