exclude symbols packages from upload

This commit is contained in:
Krzysztof Wicher 2016-01-11 13:53:47 -08:00
parent 44027c2969
commit acac8d0063

View file

@ -44,4 +44,4 @@ foreach ($ProjectName in $Projects) {
}
}
Get-ChildItem $IntermediatePackagesDir -Filter *.nupkg | Copy-Item -Destination $PackagesDir
Get-ChildItem $IntermediatePackagesDir -Filter *.nupkg | ? {$_.Name -NotLike "*.symbols.nupkg"} | Copy-Item -Destination $PackagesDir