You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
340 B
PowerShell
5 lines
340 B
PowerShell
6 months ago
|
param($installPath, $toolsPath, $package, $project)
|
||
|
|
||
|
# Remove the reference to the .Design.dll, which is incorrectly referenced during
|
||
|
# the NuGet package installation in .NET Framework applications (not .NET Core).
|
||
|
$project.Object.References | Where-Object { $_.Name -eq 'Microsoft.Xaml.Behaviors.Design' } | ForEach-Object { $_.Remove() }
|