May 2019
Beginner to intermediate
456 pages
10h 37m
English
Next, we will create a quick build pipeline and produce a dacpac package for this database. A database package is a deployable package from your version-controlled database project. You can read more about it at http://bit.ly/2tr5Bon.
We will add the new YAML-based pipeline, so add a new file named azure-pipelines.yml in the repository and add the following content:
resources:- repo: selfqueue:name: Defaultdemands:- msbuild- visualstudiosteps:- task: VSBuild@1displayName: 'Build solution AdventureWorks2017.sln'inputs:solution: AdventureWorks2017.slnmsbuildArgs: '/p:CmdLineInMemoryStorage=True'platform: 'any ...
Read now
Unlock full access