Files
yoga/csharp/nuget/NuGetPackageBuilder.ps1

10 lines
240 B
PowerShell
Raw Normal View History

$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"
}