Skip to content

Build touchups #1133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) -
Expand Down
14 changes: 7 additions & 7 deletions PowerShellEditorServices.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
}
}

Expand All @@ -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
}
}

Expand All @@ -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
}
}
}
Expand All @@ -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
}
}
}
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ private void WriteStartupBanner()
_\///________________\///////////_____\///////////________\/////////__



=====> PowerShell Integrated Console <=====

");
Expand Down