Skip to content

Commit 4e0ad0a

Browse files
committed
Move platyPS invocation out of the LayoutModule task
1 parent 0beff4d commit 4e0ad0a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PowerShellEditorServices.build.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ task LayoutModule -After Build {
197197
Copy-Item -Force -Path $PSScriptRoot\src\PowerShellEditorServices.Host\bin\$Configuration\net451\Newtonsoft.Json.dll -Destination $PSScriptRoot\module\PowerShellEditorServices\bin\Desktop\
198198
}
199199
Copy-Item -Force -Path $PSScriptRoot\src\PowerShellEditorServices.Host\bin\$Configuration\netstandard1.6\* -Filter Microsoft.PowerShell.EditorServices*.dll -Destination $PSScriptRoot\module\PowerShellEditorServices\bin\Core\
200+
}
200201

202+
task BuildCmdletHelp {
201203
New-ExternalHelp -Path $PSScriptRoot\module\docs -OutputPath $PSScriptRoot\module\PowerShellEditorServices\Commands\en-US -Force
202204
}
203205

@@ -225,4 +227,4 @@ task UploadArtifacts -If ($script:IsCIBuild) {
225227
}
226228

227229
# The default task is to run the entire CI build
228-
task . GetProductVersion, Clean, Build, TestPowerShellApi, CITest, PackageNuGet, PackageModule, UploadArtifacts
230+
task . GetProductVersion, Clean, Build, TestPowerShellApi, CITest, BuildCmdletHelp, PackageNuGet, PackageModule, UploadArtifacts

0 commit comments

Comments
 (0)