We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e012e44 commit bd1a01dCopy full SHA for bd1a01d
.vsts-ci/templates/ci-general.yml
@@ -55,6 +55,17 @@ steps:
55
version: 6.0.x
56
performMultiLevelLookup: true
57
58
+# Some modules like Pester have .NET DLLs that will require a new PowerShell instance, so we run this first prior to the build.
59
+- task: PowerShell@2
60
+ displayName: Install Prerequisites
61
+ inputs:
62
+ targetType: inline
63
+ script: |
64
+ Install-Module -Name InvokeBuild -Force -Scope CurrentUser -RequiredVersion 5.10.3
65
+ Invoke-Build -InstallPrerequisites -Configuration Release Prerequisites
66
+ workingDirectory: $(Build.SourcesDirectory)/vscode-powershell
67
+ pwsh: true
68
+
69
# The build script is always run with PowerShell Core
70
- task: PowerShell@2
71
displayName: Build and package
0 commit comments