Skip to content

Commit

Permalink
Defaulted psake to .NET 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesKovacs committed Mar 21, 2012
1 parent 138296d commit 27cd8a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion psake-config.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Defaults
-------------------------------------------------------------------
$config.buildFileName="default.ps1"
$config.framework = "3.5"
$config.framework = "4.0"
$config.taskNameFormat="Executing {0}"
$config.verboseError=$false
$config.coloredOutput = $true
Expand Down
2 changes: 1 addition & 1 deletion psake.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ $psake.context = new-object system.collections.stack # holds onto the current st
$psake.run_by_psake_build_tester = $false # indicates that build is being run by psake-BuildTester
$psake.config_default = new-object psobject -property @{
buildFileName = "default.ps1";
framework = "3.5";
framework = "4.0";
taskNameFormat = "Executing {0}";
verboseError = $false;
coloredOutput = $true;
Expand Down

0 comments on commit 27cd8a7

Please sign in to comment.