25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
340 B

  1. param($installPath, $toolsPath, $package, $project)
  2. # Remove the reference to the .Design.dll, which is incorrectly referenced during
  3. # the NuGet package installation in .NET Framework applications (not .NET Core).
  4. $project.Object.References | Where-Object { $_.Name -eq 'Microsoft.Xaml.Behaviors.Design' } | ForEach-Object { $_.Remove() }