I need to install the Visual Studio extension InstallerProjects.vsix
in the Azure Piplines to build my .vdproj
. But I can't find anything about how to install it.
I tried the following azure-pipelines.yml
configuration without success:
stages:
- stage: Foo
jobs:
- job: 'Bar'
pool:
vmImage: 'windows-2019'
demands:
- msbuild
- visualstudio
steps:
- script: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\VSIXInstaller.exe" InstallerProjects.vsix'
- task: VSBuild@1
inputs:
solution: ./MyProject.vdproj
Am I able to install extensions in the Pipeline and if yes how?
Thx in advance!