diff --git a/CHANGELOG.md b/CHANGELOG.md index f2d1c8042..6aa689431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ - 👮‍ 🐛 [vscode-powershell #2288](https://github.com/PowerShell/PowerShellEditorServices/pull/1094) - Use RootUri.LocalPath for workspace path. - 🐛 👮‍ [PowerShellEditorServices #1101](https://github.com/PowerShell/PowerShellEditorServices/pull/1101) - - Add PSAvoidAssignmentToAutomaticVariable to the default set of PSSA rules. (Thanks @bergmeister!) + Add `PSAvoidAssignmentToAutomaticVariable` to the default set of PSSA rules. (Thanks @bergmeister!) - 👮‍ 🔗 🐛 [vscode-powershell #2290](https://github.com/PowerShell/PowerShellEditorServices/pull/1098) - Fix diagnostics not showing in untitled files and now also show CodeLens. - 🔍 🐛 [vscode-powershell #1850](https://github.com/PowerShell/PowerShellEditorServices/pull/1097) - diff --git a/PowerShellEditorServices.build.ps1 b/PowerShellEditorServices.build.ps1 index c7431abd1..612ba27bf 100644 --- a/PowerShellEditorServices.build.ps1 +++ b/PowerShellEditorServices.build.ps1 @@ -287,8 +287,8 @@ task LayoutModule -After Build { Copy-Item -Force -Path "$PSScriptRoot\Third Party Notices.txt" -Destination $psesOutputPath # Copy UnixConsoleEcho native libraries - Copy-Item -Path "$script:PsesOutput/runtimes/osx-64/native/*" -Destination $psesDepsPath - Copy-Item -Path "$script:PsesOutput/runtimes/linux-64/native/*" -Destination $psesDepsPath + Copy-Item -Path "$script:PsesOutput/runtimes/osx-64/native/*" -Destination $psesDepsPath -Force + Copy-Item -Path "$script:PsesOutput/runtimes/linux-64/native/*" -Destination $psesDepsPath -Force # Assemble PSES module @@ -307,7 +307,7 @@ task LayoutModule -After Build { if ($psesComponent.Extension) { [void]$includedDlls.Add($psesComponent.Name) - Copy-Item -Path $psesComponent.FullName -Destination $psesDepsPath + Copy-Item -Path $psesComponent.FullName -Destination $psesDepsPath -Force } } @@ -316,7 +316,7 @@ task LayoutModule -After Build { { if (-not $includedDlls.Contains($hostComponent.Name)) { - Copy-Item -Path $hostComponent.FullName -Destination $psesCoreHostPath + Copy-Item -Path $hostComponent.FullName -Destination $psesCoreHostPath -Force } } @@ -327,7 +327,7 @@ task LayoutModule -After Build { { if (-not $includedDlls.Contains($hostComponent.Name)) { - Copy-Item -Path $hostComponent.FullName -Destination $psesDeskHostPath + Copy-Item -Path $hostComponent.FullName -Destination $psesDeskHostPath -Force } } } @@ -338,7 +338,7 @@ task LayoutModule -After Build { { if (-not $includedDlls.Contains($vscodeComponent.Name)) { - Copy-Item -Path $vscodeComponent.FullName -Destination $psesVSCodeBinOutputPath + Copy-Item -Path $vscodeComponent.FullName -Destination $psesVSCodeBinOutputPath -Force } } } @@ -418,7 +418,7 @@ task PackageModule { } task UploadArtifacts -If ($null -ne $env:TF_BUILD) { - Copy-Item -Path .\PowerShellEditorServices-$($script:FullVersion).zip -Destination $env:BUILD_ARTIFACTSTAGINGDIRECTORY + Copy-Item -Path .\PowerShellEditorServices-$($script:FullVersion).zip -Destination $env:BUILD_ARTIFACTSTAGINGDIRECTORY -Force } # The default task is to run the entire CI build diff --git a/src/PowerShellEditorServices.Hosting/Internal/EditorServicesRunner.cs b/src/PowerShellEditorServices.Hosting/Internal/EditorServicesRunner.cs index 73b869d5a..7d9a924da 100644 --- a/src/PowerShellEditorServices.Hosting/Internal/EditorServicesRunner.cs +++ b/src/PowerShellEditorServices.Hosting/Internal/EditorServicesRunner.cs @@ -251,7 +251,6 @@ private void WriteStartupBanner() _\///________________\///////////_____\///////////________\/////////__ - =====> PowerShell Integrated Console <===== ");