Merge pull request #788 from krwq/excl_symbol_pkgs
Exclude symbols packages from upload
This commit is contained in:
commit
98cdbf1cbd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue