DSInternals/Src/DSInternals.Replication/package/install.ps1
2016-02-23 01:22:14 +01:00

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() }