We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be5990 commit 7de8f9bCopy full SHA for 7de8f9b
scripts/package-releases.ps1
@@ -17,7 +17,7 @@ if ($Version -like "v*") {
17
}
18
19
Get-ChildItem -Path $Directory -Recurse -Filter $ProjectFilter |
20
- Where-Object { $_.Name -notlike "*Test*" } |
+ Where-Object { $_.Name -notlike "*Test*" -and $_.FullName -notmatch "games" } |
21
ForEach-Object {
22
Write-Host "Restoring $($_.FullName)"
23
dotnet restore $_
@@ -35,4 +35,4 @@ Get-ChildItem -Path $Directory -Recurse -Filter $ProjectFilter |
35
36
Write-Host "Pushing $PackageWithVersion.snupkg"
37
dotnet nuget push "$PackageWithVersion.snupkg" -s https://api.nuget.org/v3/index.json -k $ApiKey
38
- }
+ }
0 commit comments