mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-02-18 03:56:54 +00:00
9 lines
270 B
PowerShell
9 lines
270 B
PowerShell
param($installPath, $toolsPath, $package, $project)
|
|
|
|
# Remove unnecessary references from the project
|
|
$project.Object.References |
|
|
where { ($_.Name -like 'NDceRpc.*' -and $_.Name -ne 'NDceRpc.Microsoft') -or $_.Name -eq 'protobuf-net' } |
|
|
foreach { $_.Remove() }
|
|
|
|
|