NaverticAl is extension for every Microsoft Dynamics 365 Busines Central developer.
- Create new AL App folder from template by using "Navertical:Go!" command.
- Create/Remove docker environment
- Compile AL App with dependencies
- Install AL Apps with dependencies
- Uninstall AL Apps with dependencies
- Create new AL App folder by using
navertical:Go!
This command will:- Ask for empty folder path
- Ask for new App name (suggested the empty folder name)
- Ask for new Repository URL
- Clone template repository
- Update the app.json with new id and app name (including dependency of TestApp)
- Rename Workspace file based on App name
- Open the Workspace
- Create Docker environment by using
navertical:Create environment
This command will:- Create new docker container with name and image based on the settings in Settings.ps1
- Make alc.exe compiler available from outside the container to allow compilation of the apps (may be will be changed later to compile inside container)
- Import Test objects in the container to allow run App Tests
- Add dependency Apps into Dependencies folder as GIT Submodules (preffered) or directly
- Compile the Apps with
navertical:Compile App Tree
This command will:- Download system application app packages
- Download App packages for dependencies when source code is not found in the App folder tree (MISSING FUNCTIONALITY)
- Compile Apps in order to fullfill dependencies
- Sign the Apps with CodeSigning certificate if
navertical.CertPath
is set
- Publish the Apps with
navertical:Publish App Tree
This command will:- Install the Apps in order to fullfill the dependencies
- Publish the Apps
- To unpublish the Apps you can use
navertical:Unpublish App Tree
- To remove environment you can use
navertical:Remove Environment
If you want to have CI pipeline created in your Azure DevOps, just push the App repository to your Azure Repository. If the Pipeline is not created automaticaly, go to your Azure Build Pipelines, click New, and select the repo. The Pipeline will be created automatically for you. If you want to change something in the pipeline, edit the Azure-pipelines.yml
file accordingly. By pushing new version to the Azure Repo, new definition of the pipeline will be automatically used.
All needed powershell scripts are installed by the extension (navcontainerhelper and NVRAppDevOps).
As a template for new AL App is used MSDyn365BC_AppTemplate which uses MSDyn365BC_Yaml for Azure Pipeline creation.
This extension contributes the following settings:
navertical.CertPath
: set to path to CodeSigning certificatenavertical.IgnoreVerification
: set to false to enable signature verification when installing the apps
Missing possibility to pull missing dependencies from package server.
Removed unused configurations Downgraded dependency event-stream to version 3.3.4 to remove malicious dependency
Fixed bug when reopening NaverticAl terminal, it used default terminal shell instead powershell (if different used)
Updated dependencies
Initial public release of the extension