Skip to content

Commit

Permalink
Add nuget helper script
Browse files Browse the repository at this point in the history
  • Loading branch information
Fitzchak Yitzchaki committed Jan 23, 2012
1 parent e7deb29 commit 3a16d65
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nuget.ps1
@@ -0,0 +1,9 @@

function Update-NuGet
{
$packageName = "Newtonsoft.Json";
Remove-Item */*.g.3.5.csproj
Remove-Item */*.g.csproj
(Get-ChildItem */packages.config) + (Get-ChildItem */*/packages.config) |
ForEach-Object { .\Tools\NuGet.exe update $_ -Id "$packageName" -RepositoryPath packages -Verbose }
}

0 comments on commit 3a16d65

Please sign in to comment.