diff --git a/nupkg/common.ps1 b/nupkg/common.ps1 index 9be109e779..f47d94f9d7 100644 --- a/nupkg/common.ps1 +++ b/nupkg/common.ps1 @@ -112,7 +112,6 @@ $projects = ( "framework/src/Volo.Abp.AspNetCore.Components.WebAssembly", "framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming", "framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling", - "framework/src/Volo.Abp.AspNetCore.Components.Server", "framework/src/Volo.Abp.AspNetCore.Components.Server.Theming", "framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Bundling", "framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming", diff --git a/nupkg/push_packages.ps1 b/nupkg/push_packages.ps1 index f192c2a560..4ad4d46a90 100644 --- a/nupkg/push_packages.ps1 +++ b/nupkg/push_packages.ps1 @@ -35,8 +35,13 @@ foreach($project in $projects) { if ($maxPushesPerHour -gt 0) { $windowStart = (Get-Date).AddHours(-1) - $recentPushes = $pushTimestamps | Where-Object { $_ -gt $windowStart } - $pushTimestamps = [System.Collections.Generic.List[datetime]]$recentPushes + $recentPushes = @($pushTimestamps | Where-Object { $_ -gt $windowStart }) + $trimmedPushTimestamps = [System.Collections.Generic.List[datetime]]::new() + foreach ($timestamp in $recentPushes) + { + [void]$trimmedPushTimestamps.Add($timestamp) + } + $pushTimestamps = $trimmedPushTimestamps if ($pushTimestamps.Count -ge $maxPushesPerHour) {