PSTeedy/psakeFile.ps1
2020-12-22 22:56:52 +11:00

11 lines
320 B
PowerShell

properties {
# Disable "compiling" module into monolithinc PSM1.
# This modifies the default behavior from the "Build" task
# in the PowerShellBuild shared psake task module
$PSBPreference.Build.CompileModule = $false
}
task default -depends Test
task Test -FromModule PowerShellBuild -Version '0.4.0'