@@ -59,7 +59,6 @@ $script:NetFramework = @{
59
59
$script :HostCoreOutput = " $PSScriptRoot /src/PowerShellEditorServices.Hosting/bin/$Configuration /$ ( $script :NetFramework.PS72 ) /publish"
60
60
$script :HostDeskOutput = " $PSScriptRoot /src/PowerShellEditorServices.Hosting/bin/$Configuration /$ ( $script :NetFramework.PS51 ) /publish"
61
61
$script :PsesOutput = " $PSScriptRoot /src/PowerShellEditorServices/bin/$Configuration /$ ( $script :NetFramework.Standard ) /publish"
62
- $script :VSCodeOutput = " $PSScriptRoot /src/PowerShellEditorServices.VSCode/bin/$Configuration /$ ( $script :NetFramework.Standard ) /publish"
63
62
64
63
if (Get-Command git - ErrorAction SilentlyContinue) {
65
64
# ignore changes to this file
@@ -79,7 +78,6 @@ Task FindDotNet {
79
78
Task BinClean {
80
79
Remove-BuildItem $PSScriptRoot \.tmp
81
80
Remove-BuildItem $PSScriptRoot \module\PowerShellEditorServices\bin
82
- Remove-BuildItem $PSScriptRoot \module\PowerShellEditorServices.VSCode\bin
83
81
}
84
82
85
83
Task Clean FindDotNet, BinClean, {
@@ -170,9 +168,6 @@ Task Build FindDotNet, CreateBuildInfo, {
170
168
if (-not $script :IsNix ) {
171
169
Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs .\src\PowerShellEditorServices.Hosting\PowerShellEditorServices.Hosting.csproj -f $script :NetFramework.PS51 }
172
170
}
173
-
174
- # Build PowerShellEditorServices.VSCode module
175
- Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs .\src\PowerShellEditorServices.VSCode\PowerShellEditorServices.VSCode.csproj -f $script :NetFramework.Standard }
176
171
}
177
172
178
173
# The concise set of tests (for pull requests)
@@ -291,14 +286,13 @@ Task TestE2EPowerShellCLM -If (-not $script:IsNix) Build, SetupHelpForTests, {
291
286
292
287
Task LayoutModule - After Build {
293
288
$modulesDir = " $PSScriptRoot /module"
294
- $psesVSCodeBinOutputPath = " $modulesDir /PowerShellEditorServices.VSCode/bin"
295
289
$psesOutputPath = " $modulesDir /PowerShellEditorServices"
296
290
$psesBinOutputPath = " $PSScriptRoot /module/PowerShellEditorServices/bin"
297
291
$psesDepsPath = " $psesBinOutputPath /Common"
298
292
$psesCoreHostPath = " $psesBinOutputPath /Core"
299
293
$psesDeskHostPath = " $psesBinOutputPath /Desktop"
300
294
301
- foreach ($dir in $psesDepsPath , $psesCoreHostPath , $psesDeskHostPath , $psesVSCodeBinOutputPath ) {
295
+ foreach ($dir in $psesDepsPath , $psesCoreHostPath , $psesDeskHostPath ) {
302
296
New-Item - Force - Path $dir - ItemType Directory | Out-Null
303
297
}
304
298
@@ -338,13 +332,6 @@ Task LayoutModule -After Build {
338
332
}
339
333
}
340
334
}
341
-
342
- # Assemble the PowerShellEditorServices.VSCode module
343
- foreach ($vscodeComponent in Get-ChildItem $script :VSCodeOutput ) {
344
- if (-not $includedDlls.Contains ($vscodeComponent.Name )) {
345
- Copy-Item - Path $vscodeComponent.FullName - Destination $psesVSCodeBinOutputPath - Force
346
- }
347
- }
348
335
}
349
336
350
337
task RestorePsesModules - After Build {
@@ -400,7 +387,6 @@ task RestorePsesModules -After Build {
400
387
401
388
Task BuildCmdletHelp - After LayoutModule {
402
389
New-ExternalHelp - Path $PSScriptRoot \module\docs - OutputPath $PSScriptRoot \module\PowerShellEditorServices\Commands\en- US - Force | Out-Null
403
- New-ExternalHelp - Path $PSScriptRoot \module\PowerShellEditorServices.VSCode\docs - OutputPath $PSScriptRoot \module\PowerShellEditorServices.VSCode\en- US - Force | Out-Null
404
390
}
405
391
406
392
# The default task is to run the entire CI build
0 commit comments