Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Release your Dynamics 365 for Finance and Operation packages to LCS with Azure DevOps Pipelines

The first automation task to close the continuous integration cycle in Dynamics 365 for Finance and Operations with Azure DevOps pipelines was released recently as described on the official announcement.

These are some high-level instructions to set it up while the official documentation is released:

Prerequisites

To keep things simpler, these prerequisites should be prepared before starting this process:

  • You need a running Dynamics 365 for Finance and Operations build, and thus an LCS project linked to this DevOps instance. This article assumes a build is setup by deploying a Build Topology virtual machine from LCS as explained here.
  • Install the extension Dynamics 365 Unified Operations Tools from the Visual Studio Marketplace on this link: https://marketplace.visualstudio.com/items?itemName=Dyn365FinOps.dynamics365-finops-tools

Also prepare:

  • A user with enough permissions in your LCS project (you must know the user and password). Consider using a service account whose password does not expire and not using 2FA.
  • Access to the Azure Active Directory administration for your organization, with enough permissions to create the API connection (this needs to be done only once), as explained on the next step.

Register an Application in AAD

In order to authorize DevOps Pipelines to connect to the new Lifecycle Services (LCS) API, an Application must be created in the organization's Azure Active Directory. Elevated permissions are required for this operation.

  • Go to portal.azure.com and search or navigate to Azure Active Directory.
  • Navigate to the menu Manage > App registrations > New application registration.
    • Provide a name for the new application.
    • Select Application Type: Native.
    • Use any value as Redirect URI (for example: http://localhost).

  • Open the newly created app and click Settings.
  • Save the Application ID value, we will need it later.
  • Navigate to Required permissions > +Add.
  • Click Select an API and search for Dynamics Lifecycle services API, then Select and Done.
  • Click Grant permissions (this is a critical step, be sure you get a “Successfully granted permissions for application XXX” message or integration will not work).

More information about registering applications in AAD here:

  • QuickStart: Register an application with the Microsoft identity platform (Preview)

And about permission consent here:

  • Grant admin consent when registering an app in the Azure portal

Create the Azure Release Pipeline

A release pipeline will be used to connect the Build output with the Asset Library in LCS. New build packages will be uploaded to LCS automatically through this pipeline.

  • Login to your organization's Azure DevOps project and navigate to Pipelines > Releases.
  • Click New release pipeline (this is the only available option if you don’t have any pipeline already created).
  • Select a template: Empty job.
  • Click on Artifacts > +Add an artifact (this will connect this release pipeline with a Build).

  • Select Build as Source type, and select your Project, Source and Default version (use Latest if this release should be executed automatically) and finally click Add.
  • If you want this release to be executed immediately after the build ends (so the build output is uploaded to LCS each time) enable the Continuous Integration flag by using the small icon highlighted in blue on the next screenshot (C.I.).
  • Click on the Stage 1 or Tasks link to open the details.
  • Select the Agent job node and validate that Agent pool parameter is set to Hosted VS2017.
  • Click the [+] button on the Agent Job node.
  • Search for the Dynamics Lifecycle Services (LCS) Asset Upload task (it should be already installed or it can be installed at this point, click Refresh if the task does not appear in the list) and finally click Add to add the task to the pipeline.

  • Fill these properties on the newly created Task like:
    • LCS Connection: Select a connection or click [+New] if this is the first time:
      • Connection name: use a descriptive name (in case you have multiple LCS projects).
      • Authentication Endpoint: let the default value.
      • Lifecycle Services API Endpoint:
        • If your LCS URL is like: https://lcs.dynamics.com, use the value https://lcsapi.lcs.dynamics.com (by default, and most commonly).
        • If your LCS URL is like: https://eu.lcs.dynamics.com, use the value https://lcsapi.eu.lcs.dynamics.com.
      • Username and Password: use the credentials (fully qualified user name including domain and password) from a user with enough permissions to upload files to your LCS project.
      • Application (Client) ID: use the previously created AAD application's guid. You should have it saved from the first step.
  • LCS Project Id: this is the numeric value included in your LCS project URL.
    • Example: for the URL https://lcs.dynamics.com/V2/ProjectOverview/1234567, your Project Id is 1234567.
  • Type of asset: Software Deployable Package.
  • File to upload: click the […] button to select the AXDeployableRuntime_XXX_YYY file in your build artifact's Packages folder.
      • This is the default configuration, you might want to select a different file if your build definition is customized, but it must be a deployable package and its name should include the build number.
      • Back in the Pipeline properties, replace the build number with the variable $(Build.BuildNumber)
        • Example, for the filename: $(System.DefaultWorkingDirectory)/_ Unified Operations platform - Build Main/Packages/AXDeployableRuntime_7.0.5126.35370_ 2019.1.29.1.zip, use the property value: $(System.DefaultWorkingDirectory)/_ Unified Operations platform - Build Main/Packages/AXDeployableRuntime_7.0.5126.35370_$(Build.BuildNumber).zip
  • LCS Asset Name and LCS Asset Description: Use descriptive values to identify this package on the list when uploaded to the LCS Asset Library. More information about Azure Pipeline variables on the docs here for the build and here for the release.
    • For example: $(Release.ReleaseName)_$(Build.BuildNumber)

Done! now what?

Use the Create a release button to create a new release manually (or launch a build, if you configured the Continuous Integration trigger):

Hopefully your results will look like that (otherwise check the logs to understand what’s happening, most common error so far is authentication with the AAD app):

If everything went well, you have a new file in the Software deployable package folder on the LCS Asset Library.

To get more information about this release and the setup process check the official announcement here and this blog post.

Hope these instructions are useful to understand how to setup this first automation task, that hopefully won’t be the last one. Check the documentation for upcoming changes regarding Developer tools and application lifecycle management.

Share the post

Release your Dynamics 365 for Finance and Operation packages to LCS with Azure DevOps Pipelines

×

Subscribe to Msdn Blogs | Get The Latest Information, Insights, Announcements, And News From Microsoft Experts And Developers In The Msdn Blogs.

Get updates delivered right to your inbox!

Thank you for your subscription

×