Removing test programs, adding simple package script

This commit is contained in:
Andrew Forster
2016-12-13 13:52:37 -08:00
parent e7618cc1f9
commit 7f8cdc5c38
71 changed files with 176 additions and 2576 deletions

View File

@@ -0,0 +1,10 @@
$solutionRoot = Resolve-Path ..\
# Delete any existing output.
Remove-Item *.nupkg
# Create new packages for any nuspec files that exist in this directory.
Foreach ($nuspec in $(Get-Item *.nuspec))
{
.\Tools\NuGet.exe pack "$nuspec"
}