mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-10 00:09:39 +00:00
9 lines
252 B
PowerShell
9 lines
252 B
PowerShell
param($installPath, $toolsPath, $package, $project)
|
|
|
|
# Remove unnecessary references from the project
|
|
$project.Object.References |
|
|
where { $_.Name -like 'NDceRpc.*' -or $_.Name -in 'protobuf-net','DSInternals.Common' } |
|
|
foreach { $_.Remove() }
|
|
|
|
|