Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Add Source support #3

Merged
merged 16 commits into from
Dec 23, 2024
Prev Previous commit
Next Next commit
Filter out more types
Chris Hunt committed Dec 12, 2024
commit a5b2e339d6aa536705ae596357d91d6dbe8779c0
2 changes: 1 addition & 1 deletion src/internal/Add-PackageTypes.ps1
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ function Add-PackageTypes {
}

process {
$files = Get-ChildItem $target | Where-Object { $_.Name -like '*.dll' -and $_.BaseName -ne "grpc_csharp_ext.x64" -and $_.BaseName -ne 'Microsoft.Bcl.AsyncInterfaces' } | Select-Object -ExpandProperty FullName
$files = Get-ChildItem $target | Where-Object { $_.Name -like '*.dll' -and $_.BaseName -ne "grpc_csharp_ext.x64" -and $_.BaseName -ne 'Microsoft.Bcl.AsyncInterfaces' -and $_.BaseName -notlike 'System.*' } | Select-Object -ExpandProperty FullName
foreach ($path in ($files)) {
Add-Type -Path $path
}