Admin can install languages to Dataverse environment

Display table of contents

TPG Scheduler Changes >

Admin can install languages to Dataverse environment

With this new update an admin can install languages to a Dataverse environment as part of the PackageDeployer.

A new command line option has been added to the package deployer install.dll.

Example:

pac package deploy --package .\Installer.dll --settings lang=1033,1031

 

Or in Yaml for CI/CD:

- task: microsoft-IsvExpTools.PowerPlatform-BuildTools.deploy-package.PowerPlatformDeployPackage@2

 displayName: 'Power Platform Deploy Package with all languages'

 inputs:

   authenticationType: PowerPlatformSPN

   PowerPlatformSPN: 'PG AppId'

   Environment: 'https://xxx.crm17.dynamics.com/'

   PackageFile: '$(Agent.ReleaseDirectory)\_PPP-PackageDeployer-CI\drop\Installer.dll'

   Settings: 'lang=1033,1031,1036,1040,1025'

   logConsole: true