2

While converting an Azure DevOps Pipeline YAML file, I came across a task that utilizes VSBuild@1 in the following snippet as follows:

-task: VSBuild@1
    inputs: 
        solution: '**\**\*.sqlproj'
        configuration: '$BuildConfiguration'
        displayName: 'Visual Studio Build Database Project'

I am migrating such pipelines to Github Actions YAML Format. How do I translate it to Github Actions?

What is the GitHub Action equivalent of VSBuild@1?

James Z
  • 12,104
  • 10
  • 27
  • 43
aryashah2k
  • 568
  • 1
  • 2
  • 16
  • 2
    https://stackoverflow.com/questions/15556339/how-to-build-sqlproj-projects-on-a-build-server With some modification you can use MSBuild to compile it. – Lex Li May 09 '22 at 05:39

0 Answers0