Removing test programs, adding simple package script
This commit is contained in:
10
csharp/nuget/NuGetPackageBuilder.ps1
Normal file
10
csharp/nuget/NuGetPackageBuilder.ps1
Normal 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"
|
||||
}
|
Reference in New Issue
Block a user