Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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