Skip to content

Commit 37d1fe9

Browse files
committed
Added support for runspaces without FileSystem Providers
1 parent 00c7824 commit 37d1fe9

27 files changed

+227
-157
lines changed

.vsts-ci/templates/release-general.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ steps:
2121
certificateId: CP-230012 # Authenticode certificate
2222
shouldSign: true # We always want to sign
2323
useMinimatch: true # This enables the use of globbing
24+
shouldSign: true # We always want to sign
2425
pattern: |
2526
# PowerShellEditorServices Script
2627
PowerShellEditorServices/*.{ps1,psd1,psm1,ps1xml}
@@ -40,6 +41,7 @@ steps:
4041
certificateId: CP-231522 # Third-party certificate
4142
shouldSign: true # We always want to sign
4243
useMinimatch: true # This enables the use of globbing
44+
shouldSign: true # We always want to sign
4345
pattern: |
4446
**/MediatR.dll
4547
**/Nerdbank.Streams.dll

PowerShellEditorServices.build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ task Clean BinClean,{
134134
exec { & $script:dotnetExe clean }
135135
Get-ChildItem -Recurse $PSScriptRoot\src\*.nupkg | Remove-Item -Force -ErrorAction Ignore
136136
Get-ChildItem $PSScriptRoot\PowerShellEditorServices*.zip | Remove-Item -Force -ErrorAction Ignore
137-
Get-ChildItem $PSScriptRoot\module\PowerShellEditorServices\Commands\en-US\*-help.xml | Remove-Item -Force -ErrorAction Ignore
137+
Get-ChildItem $PSScriptRoot\module\PowerShellEditorServices.Commands\en-US\*-help.xml | Remove-Item -Force -ErrorAction Ignore
138138

139139
# Remove bundled component modules
140140
$moduleJsonPath = "$PSScriptRoot\modules.json"
@@ -406,7 +406,7 @@ task RestorePsesModules -After Build {
406406
}
407407

408408
task BuildCmdletHelp {
409-
New-ExternalHelp -Path $PSScriptRoot\module\docs -OutputPath $PSScriptRoot\module\PowerShellEditorServices\Commands\en-US -Force
409+
New-ExternalHelp -Path $PSScriptRoot\module\docs -OutputPath $PSScriptRoot\module\PowerShellEditorServices.Commands\en-US -Force
410410
New-ExternalHelp -Path $PSScriptRoot\module\PowerShellEditorServices.VSCode\docs -OutputPath $PSScriptRoot\module\PowerShellEditorServices.VSCode\en-US -Force
411411
}
412412

module/PowerShellEditorServices/Commands/PowerShellEditorServices.Commands.types.ps1xml renamed to module/PowerShellEditorServices.Commands/PowerShellEditorServices.Commands.types.ps1xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
</MemberSet>
2626
</Members>
2727
</Type>
28-
</Types>
28+
</Types>

0 commit comments

Comments
 (0)