We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aea90eb commit 63e99d2Copy full SHA for 63e99d2
Scripts/delist-nuget.ps1
@@ -1,8 +1,8 @@
1
-$apiKey = "key" # Replace with your actual API key
+$apiKey = "" # Replace with your actual API key
2
# Unlist all packages matching "2.0.0-v2-develop.*"
3
# PowerShell script to unlist NuGet packages using dotnet CLI
4
$packageId = "terminal.gui" # Ensure this is the correct package name (case-sensitive)
5
-$packagePattern = "^2\.0\.0-v2-develop\..*$" # Regex pattern for filtering versions
+$packagePattern = "^2\.0\.0-develop\..*$" # Regex pattern for filtering versions
6
$nugetSource = "https://api.nuget.org/v3/index.json"
7
8
# Fetch package versions from NuGet API
0 commit comments