Skip to content

Commit

Permalink
Adding files to start using psake tools
Browse files Browse the repository at this point in the history
  • Loading branch information
lremedi committed Aug 19, 2014
1 parent d9a37b8 commit f33f6a0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
18 changes: 18 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
param(
[alias("t")]
[string]$tasks = ''
)

function DownloadSetup {
$source = "https://raw.github.com/openAgile/psake-tools/master/setup.ps1"
Invoke-WebRequest -Uri $source -OutFile setup.ps1
}

try {
DownloadSetup
.\setup.ps1 $tasks
}
Catch {
Write-Host $_.Exception.Message
exit 1
}

0 comments on commit f33f6a0

Please sign in to comment.