Step 4 - Build Solution - Build
  • 18 Nov 2019
  • 1 Minute to read
  • Contributors
  • Comment
  • Dark
    Light
  • PDF

Step 4 - Build Solution - Build

  • Comment
  • Dark
    Light
  • PDF

Article Summary

In this task we are doing a default build of the solution using the Visual Studio task.

A picture of the configuration of this task is

image.png

YAML

The yaml for this task is below.

variables:
  BuildConfiguration: 'Release'

steps:
- task: VSBuild@1
  displayName: 'Build solution **\*.sln'
  inputs:
    vsVersion: 16.0
    configuration: '$(BuildConfiguration)'


Was this article helpful?