Azure DevOps extension
ALbuild for Azure DevOps provides granular, composable pipeline tasks for Microsoft Dynamics 365 Business Central AL development. Every task is a thin wrapper that imports the businessdev.ALbuild module and calls a single cmdlet, so the same behaviour runs locally and in CI, with no dependency on BcContainerHelper.
- Marketplace name: ALbuild for Azure DevOps
- Publisher:
365businessdevelopment - Tasks: build, release and frozen V1-legacy tasks — see the reference pages below for the complete, always-current list
- Free trial: 30 days for the licensed deployment tasks
Install
- Open the Azure DevOps Marketplace and search for ALbuild for Azure DevOps.
- Select the extension and choose Get it free to install it into your organization.
- Add the tasks to your build and release pipelines.
The free-of-license tasks work immediately, no license key required. To use the licensed deployment tasks, acquire a license for your Azure DevOps organization at 365businessdev.com. Licensing is verified automatically per organization, and a free trial is available.
Supported environments
Business Central On-Premises · Business Central Online (SaaS) · Business Central on Docker.
Design
- Granular tasks. The monolithic "Create Build Container" of the previous generation is split into small, reusable steps you arrange freely: Get BC Artifact → Create BC Container → Resolve Dependencies → Compile → Sign → Publish → Run Tests → Remove BC Container.
- No BcContainerHelper. The extension depends only on the
businessdev.ALbuildmodule. - Each task =
task.json(inputs/outputs) +task.ps1→ imports the pinned module → maps inputs → calls one cmdlet → reports results.
Task categories
| Category | Tier | Reference |
|---|---|---|
| Build tasks | Free | Resolve, version, container, dependencies, compile, sign, publish, test, clean up |
| Release tasks | Free + Licensed | NuGet publish (free); PTE, on-prem, dev, Marketplace, runtime packages (licensed) |
| Legacy (V1) tasks | Free | Frozen V1 compatibility tasks; see migration |
Each reference page is generated from the shipped task.json files, so it lists every task and
every input as actually released.
The license check runs only on entry to a licensed task. Free-of-license tasks never perform a license check.
Example pipeline
A minimal build pipeline that resolves the BC artifact, creates a container, restores dependencies, compiles, signs, installs, runs the tests, and removes the container:
Code
Ready-to-use templates ship in the templates/ folder, and you can run any of these tasks locally with the local pipeline runner.
Migrating from ALbuild V1
To keep existing pipelines running, the extension also ships the ALbuild V1 tasks (CreateBuildContainer, Compile, Install, AppVersioning, SignApp, ReleaseAppSource, …). They keep their original name, version and inputs, reproduce the V1 behaviour on top of the module, and emit a deprecation warning while still succeeding. They are frozen: migrate at your own pace. See Migrating from V1.


