We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b28de4c commit 64de64bCopy full SHA for 64de64b
build.psm1
@@ -597,7 +597,9 @@ function Start-BuildPowerShellNativePackage
597
$iconFileName = "Powershell_black_64.png"
598
$iconPath = Join-Path $PSScriptRoot -ChildPath "assets\$iconFileName" -Resolve
599
600
- $Nuspec -f $Version, $iconPath | Out-File -FilePath (Join-Path $PackageRoot -ChildPath 'Microsoft.PowerShell.Native.nuspec') -Force
+ Copy-Item $iconPath (Join-Path $PackageRoot -ChildPath $iconFileName) -Verbose
601
+
602
+ $Nuspec -f $Version, $iconFileName | Out-File -FilePath (Join-Path $PackageRoot -ChildPath 'Microsoft.PowerShell.Native.nuspec') -Force
603
604
if(-not (Test-Path $NuGetOutputPath))
605
{
0 commit comments