Skip to content

Commit

Permalink
add build script and nuget tool
Browse files Browse the repository at this point in the history
  • Loading branch information
cbilson committed May 8, 2011
1 parent c80c213 commit 704b1ec
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions default.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
$framework = '4.0'
Set-StrictMode -Version Latest

properties {
$solutionDir = Resolve-Path .
$toolsDir = "$solutionDir\tools"
$nuget = "$toolsDir\nuget.exe"
}

task default -depends package

task ? -Description "Helper to display task info" {
Write-Documentation
}

task package {
exec { & $nuget pack Git-Got.nuspec }
}
Binary file added tools/NuGet.exe
Binary file not shown.

0 comments on commit 704b1ec

Please sign in to comment.