HodorNV / ALOps

ALOps
59 stars 24 forks source link

ALOps Publish App fails when installing test tool #280

Closed kaspermoerch closed 3 years ago

kaspermoerch commented 3 years ago

Describe the bug When trying to install the test tool on an image using artifact version sandbox-17.2.19367.20025-dk an error occurs because the Test Runner app is already installed. Removing it from install_al_app_names results in a new error when trying to compile the test app, because Test Runner is installed but not synchronized.

the used yaml please provide the yaml that you used. It helps you put the yaml like this:

name: $(Build.BuildId)

variables:
#- name: 'BC_Version'
#  value: '16.2'
- name: 'BC_Localization'
  value: 'dk'
- name: 'BC_Type'
  value: 'sandbox'
- name: 'RunTests'
  value: '1'
- name: 'TestSuite'
  value: 'DEFAULT'
- name: 'bc_license'
  value: '***'
- name: 'CodeAnalyzers'
  value: 'CodeCop,UICop,PerTenantExtensionCop'
- name: 'ALOps_LicenseId'
  value: ''  
- name: 'PublishDependencies'
  value: '0'  

pool:
  name: EV_OnPremise

resources:
  repositories:
    - repository: 'yamltemplates'
      type: 'git'
      name: 'Templates/Templates'
      ref:  'refs/heads/master'

steps:
- checkout: self
  clean: true

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
# EV: ALOps License Key handling
- template: 'OnPrem-Builds/GetALOPLicenseKey.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
# EV: Move Unit Tests to Test app if needed
- template: 'OnPrem-Builds/MoveUnitTestToTest.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
# EV: Copy EVBusinessCentralDevelopmentHelper to Build Agent
- template: 'OnPrem-Builds/CopyEVBCDevHelperToBuildAgent.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
- task: ALOpsDockerCreate@1
  inputs:
    #artifactversion: $(BC_Version)
    artifactcountry: $(BC_Localization)
    artifacttype: $(BC_Type)
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
- task: ALOpsDockerStart@1
  inputs:
    docker_pull: false
    accept_image_eula: true
    accept_image_outdated: true
    docker_parameters: '--isolation=hyperv --env customNavSettings=EnableTaskScheduler=False'
    memory_gb: 16  
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsDockerWait@1
  inputs:
    search_string: 'Ready for connections!'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsLicenseImport@1
  inputs:
    usedocker: true
    license_path: $(bc_license)

#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Install AL TestTool'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    installaltesttool: true
    skip_verification: true
    install_al_app_names: |
     Tests-TestLibraries
     System Application Test
     System Application Test Library
     Any
     Library Assert
     Test Runner
     Library Variable Storage
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'EV: Install ISV and dependencies apps'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*.app'
    batch_publish_folder: '.\app\Dependencies'
    #batch_publish_folder: 'C:\Run\DevOps\app\Dependencies'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
# EV: Install EVBusinessCentralDevelopmentHelper
- template: 'OnPrem-Builds/InstallEVBCDevHelperInDocker.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# Breaking changes - compare with master
#- task: DownloadBuildArtifacts@0
#  inputs:
#    buildType: 'specific'
#    project: '9f67f062-53be-47a5-bdd7-08a6af20386f'
#    pipeline: '17'
#    buildVersionToDownload: 'latestFromBranch'
#    branchName: 'refs/heads/master'
#    downloadType: 'specific'
#    itemPattern: '**/*APP.app'
#    downloadPath: '$(System.ArtifactsDirectory)'

#- task: ALOpsAppPublish@1
#  displayName: 'ALOps Previous master Publish AL-App'
#  inputs:
#    usedocker: true
#    nav_artifact_app_filter: '*_APP.app'   
#    skip_verification: true    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile App'
  inputs:
    usedocker: true
    targetproject: 'app/app.json'
    nav_app_version: '?.?.?.*'
    al_analyzer: $(CodeAnalyzers)
    app_file_suffix: '_APP'
    failed_on_warnings: true    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Generate Xliff files
- template: 'OnPrem-Builds/GenerateXliffFiles.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Re-Compile App with xliff'
  inputs:
    usedocker: true
    targetproject: 'app/app.json'
    nav_app_version: '?.?.?.?'
    app_file_suffix: '_APP'
    failed_on_warnings: true    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish AL-App'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_APP.app'   
    skip_verification: true 
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile Test App'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    targetproject: 'Test/app.json'
    nav_app_version: '?.?.?.?'
    app_file_suffix: '_TEST'
    failed_on_warnings: true    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish AL-TEST App'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_TEST.app'   
    skip_verification: true 
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppTest@1
  displayName: 'EV: Run Custom Tests'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    import_action: "Skip"
    import_testtoolkit: false
    testpage: '130455'
    testsuite: $(TestSuite) 
    failed_test_action: 'Error'
  continueOnError: false   
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: PublishTestResults@2
  displayName: 'ALOps Publish Test Results **/TestResults.xml'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    testResultsFormat: XUnit
    testResultsFiles: '**/TestResults.xml'
    testRunTitle: 'BC Test Results: $(Build.BuildId)'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: PublishBuildArtifacts@1
  displayName: 'Publish App Dependencies'
  condition: and(succeeded(), eq(variables['PublishDependencies'], '1'))
  inputs:
    PathtoPublish: '.\app\Dependencies'
    ArtifactName: 'Dependencies'
    publishLocation: 'Container'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsDockerRemove@1
  displayName: 'ALOps Remove Docker Container'
  enabled: true
  condition: always()
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

the output Also the complete output is necessary for us to see what is going on. Also use backtics:

*** Substitute Extension: [Microsoft / Tests-Reverse]
*** Substitute Extension: [Microsoft / French language (Switzerland)]
*** Substitute Extension: [Microsoft / German language (Austria)]
*** Substitute Extension: [Microsoft / French language (France)]
*** Substitute Extension: [Microsoft / French language (Canada)]
*** Substitute Extension: [Microsoft / Spanish language (Spain)]
*** Substitute Extension: [Microsoft / Performance Toolkit Samples]
*** Substitute Extension: [Microsoft / Spanish language (Mexico)]
*** Substitute Extension: [Microsoft / Norwegian language (Norway)]
*** Substitute Extension: [Microsoft / Russian language (Russia)]
*** Substitute Extension: [Microsoft / Send To Email Printer]
*** Substitute Extension: [Microsoft / Swedish language (Sweden)]
*** Substitute Extension: [Microsoft / German language (Switzerland)]
*** Substitute Extension: [Microsoft / German language (Germany)]
*** Substitute Extension: [Microsoft / Italian language (Switzerland)]
*** Substitute Extension: [Microsoft / Italian language (Italy)]
*** Substitute Extension: [Microsoft / Icelandic language (Iceland)]
*** Available Applications:
*** Installing Applications:
*** Get App Info: C:\Applications.DK\Microsoft_Library Assert_17.2.19367.20000.app
*** Publish App: [Microsoft / Library Assert]
*** Sync App: [Microsoft / Library Assert]
*** Install App: [Microsoft / Library Assert]
***
*** Get App Info: C:\Applications.DK\Microsoft_Any_17.2.19367.20000.app
*** Publish App: [Microsoft / Any]
*** Sync App: [Microsoft / Any]
*** Install App: [Microsoft / Any]
***
*** Get App Info: C:\Applications.DK\Microsoft_Library Variable Storage_17.2.19367.20000.app
*** Publish App: [Microsoft / Library Variable Storage]
*** Sync App: [Microsoft / Library Variable Storage]
*** Install App: [Microsoft / Library Variable Storage]
***
*** Get App Info: C:\Applications.DK\Microsoft_System Application Test Library_17.2.19367.20000.app
*** Publish App: [Microsoft / System Application Test Library]
*** Sync App: [Microsoft / System Application Test Library]
*** Install App: [Microsoft / System Application Test Library]
***
*** Get App Info: C:\Applications.DK\Microsoft_Tests-TestLibraries_17.2.19367.20000.app
*** Publish App: [Microsoft / Tests-TestLibraries]
*** Sync App: [Microsoft / Tests-TestLibraries]
*** Install App: [Microsoft / Tests-TestLibraries]
***
*** Get App Info: C:\Applications.DK\Microsoft_Test Runner_17.2.19367.20000.app
*** Publish App: [Microsoft / Test Runner]
##[error]AL-TestTool installation failed: This Extension cannot be published as it has the same Publisher, Name, and Version as a previously published Extension.
*** AL-TestTool installation finished.

*** Disconnect Docker session.
*** Remove Docker session.
*** Docker session removed.
*** AL-Extension Published to ALOps Repository
*** Cleanup VSTS Environment: True
Finishing: ALOps Install AL TestTool

Expected behavior Remove the currently installed app and reinstall the app from the current artifacts.

waldo1001 commented 3 years ago

Can you please provide the complete yaml?

kaspermoerch commented 3 years ago

Yes, I have added the full yml file.

waldo1001 commented 3 years ago

I will have a look - I'm afraid it's a "bug" in the artifacts. Can you try the OnPrem-version of the artifacts? I think those work.

I'll try to find a solution...

kaspermoerch commented 3 years ago

I think you are right. I have posted an issue on navcontainerhelper as well.

I would rather not use the OnPrem image, but I guess it is a workaround for now.

freddydk commented 3 years ago

https://github.com/microsoft/navcontainerhelper/blob/01ee9a6286e7dd7812902569a7a5d85b78748912/ObjectHandling/Import-TestToolkitToNavContainer.ps1#L144

This is the way I install the test apps. That seems to work.

freddydk commented 3 years ago

I can see that it also fails when building an image with -includetesttoolkit - the generic image seems to not follow the checks from containerhelper. Will fix the generic image.

waldo1001 commented 3 years ago

@kaspermoerch , I'll have to try to set up a repro for this, because I can't repro this myself with the BcContainerHelper you you described in the navcontainerhelper-issue. And since there seems to be something wrong with the generic image, I'm not sure it's for me to fix or not. We use BcContainerHelper to set up the image, so I assume when fixed by Freddy, it's going to be fixed for us as well - but I would love to repro this first, before it's fixed...

freddydk commented 3 years ago

Generic image is now updated to 1.0.1.2 which includes this fix. I will also apply the fix to the SQL 2017 version later.

freddydk commented 3 years ago

Please note that performance toolkit doesn't work in 17.2 - and that is not something I can fix:-(

waldo1001 commented 3 years ago

Thanks, @freddydk .

@kaspermoerch , could you test and make sure you rebuild the image (by using the "forcecreateimage: true" in the ALOpsDockerCreate step)?

kaspermoerch commented 3 years ago

Thanks, @freddydk .

@kaspermoerch , could you test and make sure you rebuild the image (by using the "forcecreateimage: true" in the ALOpsDockerCreate step)?

I got a successful build by overriding the navinstall script (as suggested by Freddy) and adding these parameters to ALOpsDockerCreate:

includetesttoolkit: true
includetestframeworkonly: true

However this only worked because the previously built image was removed as we use image tags to shorten the time spent running our individual pipelines. If someone comes along and builds an image without the above mentioned parameters for the same version before my pipeline runs then my pipeline would once again fail. Maybe we could solve that by extending the image tag with information about which parts of the test tool is installed, but that is not for me to decide.

It would be nice though if ALOps App Publish could mimic the behavior of the new generic image with the split of Publish and Sync/Install. Then any pre-published app would just be synced and installed rather than failing on publish.

waldo1001 commented 3 years ago

We need to look into this, indeed. And we will. Though .. still struggling with setting up a repro.. :(

freddydk commented 3 years ago

In New-BcImage I use image tags but I also compare Windows Version and Generic tag

Arthurvdv commented 3 years ago

@waldo1001, Are you still struggling to setting up a repro?

I'm experiencing the same issue with the BE-localization. I've created an example here. Will this help?

The workaround @kaspermoerch mentioned, adding the includetesttoolkit and includetestframeworkonly, also works in my case.

name: $(Build.BuildId)

variables:
- name: 'AppVersion'
  value: '1.0.[yyyyWW].*'
- name: 'bc_license'
  value: 'C:\vsts-agent-azure\license.flf'

pool:
  name: Default

steps:
- checkout: self
  clean: true

- task: ALOpsDockerCreate@1
  displayName: 'ALOPS - Create Docker Image' # It will reuse the image if already exists, or build one if it doesn't.
  inputs:
    artifacttype: 'Sandbox'
    artifactcountry: 'BE'

- task: ALOpsDockerStart@1
  displayName: 'ALOPS - Start Docker Container' # No need to provide any details - it will get the details from previous step

- task: ALOpsDockerWait@1
  inputs:
    search_string: 'Ready for connections!'

- task: ALOpsLicenseImport@1
  inputs:
    usedocker: true
    license_path: $(LicenseFile)

- task: ALOpsAppPublish@1
  displayName: 'ALOPS - Install AL TestTool' # install necessary dependent apps for testability
  inputs:
    usedocker: true
    installaltesttool: true
    skip_verification: true    
    install_al_app_names: |
     Tests-TestLibraries
     System Application Test
     System Application Test Library
     Any
     Library Assert
     Test Runner

- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile Extension: App'
  inputs:
    usedocker: true
    nav_app_version: '1.0.[yyyyWW].*'
    targetproject: 'app/app.json'                           # The App
    failed_on_warnings: true
    app_file_suffix: '_APP'                                 # A trick to uniquely identify the APP (from the TEST-app)

- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish Extension'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_APP.app'
    skip_verification: true   

- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile Extension: Test-App'
  inputs:
    usedocker: true
    nav_app_version: '1.0.[yyyyWW].*'
    targetproject: 'test/app.json'                     # The Test-App
    failed_on_warnings: true
    app_file_suffix: '_TEST'                                 # A trick to uniquely identify the Test-App (from the App)

- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish Extension'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_TEST.app'
    skip_verification: true  

- task: ALOpsAppTest@1
  displayName: 'ALOps Run TestSuite'
  inputs:
    usedocker: true
    import_action: "Skip"
    import_testtoolkit: false
    testpage: '130455'
    testsuite: 'DEFAULT'
    failed_test_action: 'Error'
  continueOnError: false

- task: PublishTestResults@2
  inputs:
    testResultsFormat: XUnit
    testResultsFiles: '**/TestResults.xml'
    testRunTitle: 'BC Test Results: $(Build.BuildId)'

- task: ALOpsAppRuntimePackage@1
  inputs:
    usedocker: true
    targetproject: './app/app.json'

- task: ALOpsDockerRemove@1
  enabled: true
  condition: always()    

Output of ALOPS - Install AL TestTool

2021-01-14T05:01:48.0941246Z ##[section]Starting: ALOPS - Install AL TestTool
2021-01-14T05:01:48.1110312Z ==============================================================================
2021-01-14T05:01:48.1110708Z Task         : ALOps App Publish
2021-01-14T05:01:48.1111031Z Description  : Publish AL Extension to Business Central
2021-01-14T05:01:48.1111356Z Version      : 1.437.1990
2021-01-14T05:01:48.1111590Z Author       : Hodor
2021-01-14T05:01:48.1111917Z Help         : Publish Business Central extension to service tier.
2021-01-14T05:01:48.1112356Z ==============================================================================
2021-01-14T05:01:49.3462683Z *** Validate configuration
2021-01-14T05:01:49.6193563Z *** Task Inputs:
2021-01-14T05:01:49.6245986Z 
2021-01-14T05:01:49.6360912Z name                                                                                                              value
2021-01-14T05:01:49.6361961Z ----                                                                                                              -----
2021-01-14T05:01:49.6363112Z usedocker                                                                                                          True
2021-01-14T05:01:49.6364510Z fixed_tag                                                                                                              
2021-01-14T05:01:49.6365234Z installpublishedapps                                                                                               True
2021-01-14T05:01:49.6366480Z installaltesttool                                                                                                  True
2021-01-14T05:01:49.6367936Z install_al_app_names                                                                             Tests-TestLibraries...
2021-01-14T05:01:49.6368626Z strictappnames                                                                                                    False
2021-01-14T05:01:49.6369671Z nav_serverinstance                                                                                                BC140
2021-01-14T05:01:49.6370591Z artifact_path                                                                                                          
2021-01-14T05:01:49.6371489Z nav_artifact_app_filter                                                                                           *.app
2021-01-14T05:01:49.6372395Z skip_verification                                                                                                  True
2021-01-14T05:01:49.6373309Z forcesync                                                                                                         False
2021-01-14T05:01:49.6374391Z publish_scope                                                                                                    Global
2021-01-14T05:01:49.6378457Z tenant                                                                                                          default
2021-01-14T05:01:49.6379556Z batch_publish_folder                                                                                                   
2021-01-14T05:01:49.6380004Z 
2021-01-14T05:01:49.6400901Z 
2021-01-14T05:01:49.6405784Z 
2021-01-14T05:01:49.6580128Z 
2021-01-14T05:01:49.6590672Z *** No ALOps License found. Set License with the [alops-licenseid] or [alops_licenseid] variables.
2021-01-14T05:01:49.6599343Z *** To acquire a license, please visit: https://www.alops.be/getlicense
2021-01-14T05:01:49.6609389Z *** For pricing options, please visit : https://www.alops.be/pricing
2021-01-14T05:01:49.6619553Z *** For documentation, please visit   : https://www.alops.be/documentation
2021-01-14T05:01:49.6622104Z 
2021-01-14T05:01:49.9866421Z *** ALOps License:
2021-01-14T05:01:49.9889966Z   * Trial Key  : *
2021-01-14T05:01:49.9913863Z   * Licensed To: ALOps Trial [2/30] days remaining. Trial ends: Saturday, 16 January 2021
2021-01-14T05:01:49.9916726Z 
2021-01-14T05:01:49.9965922Z ##[warning]ALOps Trial is about to expire [Saturday, 16 January 2021]. Please aquire a ALOps license: https://www.alops.be/getlicense
2021-01-14T05:01:49.9969098Z 
2021-01-14T05:01:50.0049548Z *** Importing required PS-Functions
2021-01-14T05:01:50.3377642Z *** Initiate Docker Session
2021-01-14T05:01:50.6272136Z *** Set Docker Container ErrorActionPreference = Stop
2021-01-14T05:01:50.8540931Z *** Install AL TestTool: True
2021-01-14T05:01:50.8549369Z *** Start AL-TestTool installation
2021-01-14T05:01:51.3283006Z *** Import NAV/BC Management DLL's
2021-01-14T05:01:51.3295429Z *** Loading assemblies for ServiceTier [BC].
2021-01-14T05:01:51.5044504Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\170\service]
2021-01-14T05:01:51.5150053Z *** Selected module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2021-01-14T05:01:51.5158837Z *** Loading module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2021-01-14T05:01:51.5372263Z *** Selected module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Management.dll]
2021-01-14T05:01:51.5385152Z *** Loading module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Management.dll]
2021-01-14T05:01:51.7675690Z *** Check MockAssemblies.
2021-01-14T05:01:51.7752234Z *** Application requested for installation:
2021-01-14T05:01:51.7785987Z   * Any
2021-01-14T05:01:51.7795671Z   * Library Assert
2021-01-14T05:01:51.7813312Z   * Library Variable Storage
2021-01-14T05:01:51.7821056Z   * System Application Test
2021-01-14T05:01:51.7823709Z   * System Application Test Library
2021-01-14T05:01:51.7831761Z   * Test Runner
2021-01-14T05:01:51.8074248Z   * Tests-TestLibraries
2021-01-14T05:01:51.8074835Z 
2021-01-14T05:01:51.8136815Z *** Get Available Applications from [C:\Applications*\ C:\Extension*\].
2021-01-14T05:01:51.8239312Z *** Get [*.app] files recursive from [C:\Applications*\ C:\Extension*\]
2021-01-14T05:01:52.0115425Z *** Found [196] files.
2021-01-14T05:01:52.0129920Z *** Extract App detail from [C:\Applications\APIV1\Source\Microsoft__Exclude_APIV1_.app]
2021-01-14T05:01:52.0850748Z *** Extract App detail from [C:\Applications\APIV1\Test\Microsoft__Exclude_APIV1_ Tests.app]
2021-01-14T05:01:52.0983372Z *** Extract App detail from [C:\Applications\APIV2\Source\Microsoft__Exclude_APIV2_.app]
2021-01-14T05:01:52.1092791Z *** Extract App detail from [C:\Applications\APIV2\Test\Microsoft__Exclude_APIV2_ Tests.app]
2021-01-14T05:01:52.1130543Z *** Extract App detail from [C:\Applications\Application\Source\Microsoft_Application.app]
2021-01-14T05:01:52.1150596Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Base Application.app]
2021-01-14T05:01:52.4666766Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Czech language (Czechia).app]
2021-01-14T05:01:52.4712235Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Danish language (Denmark).app]
2021-01-14T05:01:52.4739980Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Dutch language (Belgium).app]
2021-01-14T05:01:52.4768357Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Dutch language (Netherlands).app]
2021-01-14T05:01:52.4798725Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (Australia).app]
2021-01-14T05:01:52.4829453Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (Canada).app]
2021-01-14T05:01:52.4864780Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (New Zealand).app]
2021-01-14T05:01:52.4894304Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (United Kingdom).app]
2021-01-14T05:01:52.4930456Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (United States).app]
2021-01-14T05:01:52.4966230Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Finnish language (Finland).app]
2021-01-14T05:01:52.5034161Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Belgium).app]
2021-01-14T05:01:52.5081635Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Canada).app]
2021-01-14T05:01:52.5124484Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (France).app]
2021-01-14T05:01:52.5170082Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Switzerland).app]
2021-01-14T05:01:52.5205585Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Austria).app]
2021-01-14T05:01:52.5240530Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Germany).app]
2021-01-14T05:01:52.5271195Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Switzerland).app]
2021-01-14T05:01:52.5298356Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Icelandic language (Iceland).app]
2021-01-14T05:01:52.5327369Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Italian language (Italy).app]
2021-01-14T05:01:52.5355274Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Italian language (Switzerland).app]
2021-01-14T05:01:52.5386652Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Norwegian language (Norway).app]
2021-01-14T05:01:52.5417223Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Russian language (Russia).app]
2021-01-14T05:01:52.5446762Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Spanish language (Mexico).app]
2021-01-14T05:01:52.5476622Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Spanish language (Spain).app]
2021-01-14T05:01:52.5506559Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Swedish language (Sweden).app]
2021-01-14T05:01:52.5536391Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Library-NoTransactions.app]
2021-01-14T05:01:52.5562593Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Bank.app]
2021-01-14T05:01:52.5619539Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Cash Flow.app]
2021-01-14T05:01:52.5648142Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Cost Accounting.app]
2021-01-14T05:01:52.5672549Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-CRM integration.app]
2021-01-14T05:01:52.5737327Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Data Exchange.app]
2021-01-14T05:01:52.5768557Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Dimension.app]
2021-01-14T05:01:52.5809544Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-ERM.app]
2021-01-14T05:01:52.6259151Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Fixed Asset.app]
2021-01-14T05:01:52.6291499Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-General Journal.app]
2021-01-14T05:01:52.6324993Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Graph.app]
2021-01-14T05:01:52.6374299Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Integration.app]
2021-01-14T05:01:52.6401856Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Invoicing.app]
2021-01-14T05:01:52.6445554Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Job.app]
2021-01-14T05:01:52.6516322Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Local.app]
2021-01-14T05:01:52.6539084Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Marketing.app]
2021-01-14T05:01:52.6617361Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Misc.app]
2021-01-14T05:01:52.6790293Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Monitor Sensitive Fields.app]
2021-01-14T05:01:52.6808278Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Permissions.app]
2021-01-14T05:01:52.6838929Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Physical Inventory.app]
2021-01-14T05:01:52.6861707Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Prepayment.app]
2021-01-14T05:01:52.6898817Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Rapid Start.app]
2021-01-14T05:01:52.6925184Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Report.app]
2021-01-14T05:01:52.6989393Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Resource.app]
2021-01-14T05:01:52.7020628Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Reverse.app]
2021-01-14T05:01:52.7048074Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SCM.app]
2021-01-14T05:01:52.7592195Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SINGLESERVER.app]
2021-01-14T05:01:52.7640070Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SMB.app]
2021-01-14T05:01:52.7684683Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SMTP.app]
2021-01-14T05:01:52.7716773Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-TestLibraries.app]
2021-01-14T05:01:52.7869970Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Upgrade.app]
2021-01-14T05:01:52.7912956Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-User.app]
2021-01-14T05:01:52.7931505Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-VAT.app]
2021-01-14T05:01:52.7996788Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Workflow.app]
2021-01-14T05:01:52.8103333Z *** Extract App detail from [C:\Applications\ClientAddIns\Source\Microsoft__Exclude_ClientAddIns_.app]
2021-01-14T05:01:52.8125747Z *** Extract App detail from [C:\Applications\CompanyHub\Source\Microsoft_Company Hub.app]
2021-01-14T05:01:52.8281192Z *** Extract App detail from [C:\Applications\Email - Current User Connector\Source\Microsoft_Email - Current User Connector.app]
2021-01-14T05:01:52.8301893Z *** Extract App detail from [C:\Applications\Email - Current User Connector\Test\Microsoft_Email - Current User Connector Tests.app]
2021-01-14T05:01:52.8335392Z *** Extract App detail from [C:\Applications\Email - Microsoft 365 Connector\Source\Microsoft_Email - Microsoft 365 Connector.app]
2021-01-14T05:01:52.8362211Z *** Extract App detail from [C:\Applications\Email - Microsoft 365 Connector\Test\Microsoft_Email - Microsoft 365 Connector Tests.app]
2021-01-14T05:01:52.8386083Z *** Extract App detail from [C:\Applications\Email - Outlook REST API\Source\Microsoft_Email - Outlook REST API.app]
2021-01-14T05:01:52.8414768Z *** Extract App detail from [C:\Applications\Email - Outlook REST API\Test\Microsoft_Library Outlook REST API.app]
2021-01-14T05:01:52.8452893Z *** Extract App detail from [C:\Applications\Email - SMTP Connector\Source\Microsoft_Email - SMTP Connector.app]
2021-01-14T05:01:52.8482520Z *** Extract App detail from [C:\Applications\Email - SMTP Connector\Test\Microsoft_Email - SMTP Connector Tests.app]
2021-01-14T05:01:52.8515948Z *** Extract App detail from [C:\Applications\EssentialBusinessHeadlines\Source\Microsoft_Essential Business Headlines.app]
2021-01-14T05:01:52.8552665Z *** Extract App detail from [C:\Applications\EssentialBusinessHeadlines\Test\Microsoft_Essential Business Headlines Test.app]
2021-01-14T05:01:52.8574926Z *** Extract App detail from [C:\Applications\LatePaymentPredictor\Source\Microsoft_Late Payment Prediction.app]
2021-01-14T05:01:52.8644622Z *** Extract App detail from [C:\Applications\LatePaymentPredictor\Test\Microsoft_Late Payment Prediction Tests.app]
2021-01-14T05:01:52.8667650Z *** Extract App detail from [C:\Applications\paypalpaymentsstandard\source\Microsoft_PayPal Payments Standard.app]
2021-01-14T05:01:52.8746835Z *** Extract App detail from [C:\Applications\paypalpaymentsstandard\test\Microsoft_PayPal Payments Standard Tests.app]
2021-01-14T05:01:52.8778582Z *** Extract App detail from [C:\Applications\salesandinventoryforecast\source\Microsoft_Sales and Inventory Forecast.app]
2021-01-14T05:01:52.8862658Z *** Extract App detail from [C:\Applications\salesandinventoryforecast\test\Microsoft_Sales and Inventory Forecast Tests.app]
2021-01-14T05:01:52.8887204Z *** Extract App detail from [C:\Applications\sendtoemailprinter\source\Microsoft_Send To Email Printer.app]
2021-01-14T05:01:52.8920178Z *** Extract App detail from [C:\Applications\system application\source\Microsoft_System Application.app]
2021-01-14T05:01:52.9183313Z *** Extract App detail from [C:\Applications\system application\test\Microsoft_System Application Test Library.app]
2021-01-14T05:01:52.9219355Z *** Extract App detail from [C:\Applications\system application\test\Microsoft_System Application Test.app]
2021-01-14T05:01:52.9273531Z *** Extract App detail from [C:\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit Samples.app]
2021-01-14T05:01:52.9304319Z *** Extract App detail from [C:\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit.app]
2021-01-14T05:01:52.9333481Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Any\Microsoft_Any.app]
2021-01-14T05:01:52.9357133Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Assert\Microsoft_Library Assert.app]
2021-01-14T05:01:52.9373759Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Variable Storage\Microsoft_Library Variable Storage.app]
2021-01-14T05:01:52.9396512Z *** Extract App detail from [C:\Applications\testframework\TestRunner\Microsoft_Test Runner.app]
2021-01-14T05:01:52.9437501Z *** Extract App detail from [C:\Applications\uksendremittanceadvice\source\Microsoft_Send remittance advice by email.app]
2021-01-14T05:01:52.9467917Z *** Extract App detail from [C:\Applications.BE\Microsoft_Any_17.2.19367.20828.app]
2021-01-14T05:01:52.9487393Z *** Extract App detail from [C:\Applications.BE\Microsoft_Application_17.2.19367.20828.app]
2021-01-14T05:01:52.9510194Z *** Extract App detail from [C:\Applications.BE\Microsoft_Base Application_17.2.19367.20828.app]
2021-01-14T05:01:53.2943928Z *** Extract App detail from [C:\Applications.BE\Microsoft_BuildTools_17.2.19367.20828.app]
2021-01-14T05:01:53.2963005Z *** Extract App detail from [C:\Applications.BE\Microsoft_DemoTool_17.2.19367.20828.app]
2021-01-14T05:01:53.3118571Z *** Extract App detail from [C:\Applications.BE\Microsoft_Library Assert_17.2.19367.20828.app]
2021-01-14T05:01:53.3150453Z *** Extract App detail from [C:\Applications.BE\Microsoft_Library Variable Storage_17.2.19367.20828.app]
2021-01-14T05:01:53.3175060Z *** Extract App detail from [C:\Applications.BE\Microsoft_Performance Toolkit Samples_17.2.19367.20828.app]
2021-01-14T05:01:53.3200197Z *** Extract App detail from [C:\Applications.BE\Microsoft_Performance Toolkit_17.2.19367.20828.app]
2021-01-14T05:01:53.3224306Z *** Extract App detail from [C:\Applications.BE\Microsoft_System Application Test Library_17.2.19367.20828.app]
2021-01-14T05:01:53.3259315Z *** Extract App detail from [C:\Applications.BE\Microsoft_System Application_17.2.19367.20828.app]
2021-01-14T05:01:53.4095399Z *** Extract App detail from [C:\Applications.BE\Microsoft_Test Runner_17.2.19367.20828.app]
2021-01-14T05:01:53.4126943Z *** Extract App detail from [C:\Applications.BE\Microsoft_TestRunner-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.4153936Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Bank_17.2.19367.20828.app]
2021-01-14T05:01:53.4188134Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Cash Flow_17.2.19367.20828.app]
2021-01-14T05:01:53.4213937Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Cost Accounting_17.2.19367.20828.app]
2021-01-14T05:01:53.4240315Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-CRM integration_17.2.19367.20828.app]
2021-01-14T05:01:53.4296279Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Data Exchange_17.2.19367.20828.app]
2021-01-14T05:01:53.4317461Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Dimension_17.2.19367.20828.app]
2021-01-14T05:01:53.4358203Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-DotNet-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.4381354Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-ERM_17.2.19367.20828.app]
2021-01-14T05:01:53.4775199Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Fixed Asset_17.2.19367.20828.app]
2021-01-14T05:01:53.4801176Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-General Journal_17.2.19367.20828.app]
2021-01-14T05:01:53.4831656Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Graph_17.2.19367.20828.app]
2021-01-14T05:01:53.4877868Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Integration-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.4898201Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Integration_17.2.19367.20828.app]
2021-01-14T05:01:53.4929756Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Invoicing_17.2.19367.20828.app]
2021-01-14T05:01:53.4961772Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Job_17.2.19367.20828.app]
2021-01-14T05:01:53.5014135Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Local_17.2.19367.20828.app]
2021-01-14T05:01:53.5048742Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Marketing_17.2.19367.20828.app]
2021-01-14T05:01:53.5086356Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Misc_17.2.19367.20828.app]
2021-01-14T05:01:53.5230257Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-MOCKSERVICETESTS-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.5251466Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Monitor Sensitive Fields_17.2.19367.20828.app]
2021-01-14T05:01:53.5276018Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-NATIVEINVOICINGTEST-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.5301048Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Performance-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.5325205Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Permissions_17.2.19367.20828.app]
2021-01-14T05:01:53.5345497Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Physical Inventory_17.2.19367.20828.app]
2021-01-14T05:01:53.5369796Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Prepayment_17.2.19367.20828.app]
2021-01-14T05:01:53.5389269Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Rapid Start_17.2.19367.20828.app]
2021-01-14T05:01:53.5416452Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Report_17.2.19367.20828.app]
2021-01-14T05:01:53.5458386Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Resource_17.2.19367.20828.app]
2021-01-14T05:01:53.5487575Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Reverse_17.2.19367.20828.app]
2021-01-14T05:01:53.5510642Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-SCM_17.2.19367.20828.app]
2021-01-14T05:01:53.5993653Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-SINGLESERVER-Internal_17.2.19367.20828.app]
2021-01-14T05:01:53.6012761Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-SINGLESERVER_17.2.19367.20828.app]
2021-01-14T05:01:53.6056732Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-SMB_17.2.19367.20828.app]
2021-01-14T05:01:53.6098032Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-SMTP_17.2.19367.20828.app]
2021-01-14T05:01:53.6115762Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-TestLibraries_17.2.19367.20828.app]
2021-01-14T05:01:53.6251918Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Upgrade_17.2.19367.20828.app]
2021-01-14T05:01:53.6269643Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-User_17.2.19367.20828.app]
2021-01-14T05:01:53.6298672Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-VAT_17.2.19367.20828.app]
2021-01-14T05:01:53.6338198Z *** Extract App detail from [C:\Applications.BE\Microsoft_Tests-Workflow_17.2.19367.20828.app]
2021-01-14T05:01:53.6389853Z *** Extract App detail from [C:\Extensions\Microsoft_AMC Banking 365 Fundamentals_17.2.19367.20828.app]
2021-01-14T05:01:53.6512131Z *** Extract App detail from [C:\Extensions\Microsoft_Application_17.2.19367.20828.app]
2021-01-14T05:01:53.6554166Z *** Extract App detail from [C:\Extensions\Microsoft_Base Application_17.2.19367.20828.app]
2021-01-14T05:01:53.9947643Z *** Extract App detail from [C:\Extensions\Microsoft_Company Hub_17.2.19367.20828.app]
2021-01-14T05:01:54.0048421Z *** Extract App detail from [C:\Extensions\Microsoft_Czech language (Czechia)_17.2.19367.20828.app]
2021-01-14T05:01:54.0077434Z *** Extract App detail from [C:\Extensions\Microsoft_Danish language (Denmark)_17.2.19367.20828.app]
2021-01-14T05:01:54.0107392Z *** Extract App detail from [C:\Extensions\Microsoft_Dutch language (Belgium)_17.2.19367.20828.app]
2021-01-14T05:01:54.0136068Z *** Extract App detail from [C:\Extensions\Microsoft_Dutch language (Netherlands)_17.2.19367.20828.app]
2021-01-14T05:01:54.0165814Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Current User Connector_17.2.19367.20828.app]
2021-01-14T05:01:54.0192172Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Microsoft 365 Connector_17.2.19367.20828.app]
2021-01-14T05:01:54.0218520Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Outlook REST API_17.2.19367.20828.app]
2021-01-14T05:01:54.0243410Z *** Extract App detail from [C:\Extensions\Microsoft_Email - SMTP Connector_17.2.19367.20828.app]
2021-01-14T05:01:54.0279935Z *** Extract App detail from [C:\Extensions\Microsoft_English language (Australia)_17.2.19367.20828.app]
2021-01-14T05:01:54.0309076Z *** Extract App detail from [C:\Extensions\Microsoft_English language (Canada)_17.2.19367.20828.app]
2021-01-14T05:01:54.0338229Z *** Extract App detail from [C:\Extensions\Microsoft_English language (New Zealand)_17.2.19367.20828.app]
2021-01-14T05:01:54.0448356Z *** Extract App detail from [C:\Extensions\Microsoft_English language (United Kingdom)_17.2.19367.20828.app]
2021-01-14T05:01:54.0457718Z *** Extract App detail from [C:\Extensions\Microsoft_English language (United States)_17.2.19367.20828.app]
2021-01-14T05:01:54.0458400Z *** Extract App detail from [C:\Extensions\Microsoft_Essential Business Headlines_17.2.19367.20828.app]
2021-01-14T05:01:54.0462060Z *** Extract App detail from [C:\Extensions\Microsoft_Finnish language (Finland)_17.2.19367.20828.app]
2021-01-14T05:01:54.0504559Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Belgium)_17.2.19367.20828.app]
2021-01-14T05:01:54.0527577Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Canada)_17.2.19367.20828.app]
2021-01-14T05:01:54.0557580Z *** Extract App detail from [C:\Extensions\Microsoft_French language (France)_17.2.19367.20828.app]
2021-01-14T05:01:54.0589505Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Switzerland)_17.2.19367.20828.app]
2021-01-14T05:01:54.0613511Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Austria)_17.2.19367.20828.app]
2021-01-14T05:01:54.0650508Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Germany)_17.2.19367.20828.app]
2021-01-14T05:01:54.0672400Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Switzerland)_17.2.19367.20828.app]
2021-01-14T05:01:54.0702476Z *** Extract App detail from [C:\Extensions\Microsoft_Icelandic language (Iceland)_17.2.19367.20828.app]
2021-01-14T05:01:54.0730300Z *** Extract App detail from [C:\Extensions\Microsoft_Italian language (Italy)_17.2.19367.20828.app]
2021-01-14T05:01:54.0759170Z *** Extract App detail from [C:\Extensions\Microsoft_Italian language (Switzerland)_17.2.19367.20828.app]
2021-01-14T05:01:54.0792726Z *** Extract App detail from [C:\Extensions\Microsoft_Late Payment Prediction_17.2.19367.20828.app]
2021-01-14T05:01:54.0840044Z *** Extract App detail from [C:\Extensions\Microsoft_Microsoft Pay Payments_17.2.19367.20828.app]
2021-01-14T05:01:54.0922618Z *** Extract App detail from [C:\Extensions\Microsoft_Norwegian language (Norway)_17.2.19367.20828.app]
2021-01-14T05:01:54.0964624Z *** Extract App detail from [C:\Extensions\Microsoft_PayPal Payments Standard_17.2.19367.20828.app]
2021-01-14T05:01:54.1022374Z *** Extract App detail from [C:\Extensions\Microsoft_Performance Toolkit_17.2.19367.20828.app]
2021-01-14T05:01:54.1045491Z *** Extract App detail from [C:\Extensions\Microsoft_Russian language (Russia)_17.2.19367.20828.app]
2021-01-14T05:01:54.1076510Z *** Extract App detail from [C:\Extensions\Microsoft_Sales and Inventory Forecast_17.2.19367.20828.app]
2021-01-14T05:01:54.1144499Z *** Extract App detail from [C:\Extensions\Microsoft_Send To Email Printer_17.2.19367.20828.app]
2021-01-14T05:01:54.1167100Z *** Extract App detail from [C:\Extensions\Microsoft_Spanish language (Mexico)_17.2.19367.20828.app]
2021-01-14T05:01:54.1195704Z *** Extract App detail from [C:\Extensions\Microsoft_Spanish language (Spain)_17.2.19367.20828.app]
2021-01-14T05:01:54.1226864Z *** Extract App detail from [C:\Extensions\Microsoft_Swedish language (Sweden)_17.2.19367.20828.app]
2021-01-14T05:01:54.1256955Z *** Extract App detail from [C:\Extensions\Microsoft_System Application_17.2.19367.20828.app]
2021-01-14T05:01:54.1504105Z *** Extract App detail from [C:\Extensions\Microsoft_Test Runner_17.2.19367.20828.app]
2021-01-14T05:01:54.1522851Z *** Extract App detail from [C:\Extensions\Microsoft_VAT Group Management_17.2.19367.20828.app]
2021-01-14T05:01:54.1594212Z *** Extract App detail from [C:\Extensions\Microsoft_WorldPay Payments Standard_17.2.19367.20828.app]
2021-01-14T05:01:54.1652057Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_AnonymizedDataSharing__17.2.19367.20828.app]
2021-01-14T05:01:54.1678147Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_APIV1__17.2.19367.20828.app]
2021-01-14T05:01:54.1766104Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_APIV2__17.2.19367.20828.app]
2021-01-14T05:01:54.1877561Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_ClientAddIns__17.2.19367.20828.app]
2021-01-14T05:01:54.1896101Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_Microsoft Dynamics 365 - SmartList_17.2.19367.20828.app]
2021-01-14T05:01:54.1979986Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_SyncBaseApp__17.2.19367.20828.app]
2021-01-14T05:01:59.1387497Z *** Substitute W1 extensions with localised versions if available
2021-01-14T05:01:59.1603117Z *** Substitute Extension: [Microsoft / System Application]
2021-01-14T05:01:59.1612756Z *** Substitute Extension: [Microsoft / Library Assert]
2021-01-14T05:01:59.1661241Z *** Substitute Extension: [Microsoft / Any]
2021-01-14T05:01:59.1684313Z *** Substitute Extension: [Microsoft / Library Variable Storage]
2021-01-14T05:01:59.1723938Z *** Substitute Extension: [Microsoft / System Application Test Library]
2021-01-14T05:01:59.1755385Z *** Substitute Extension: [Microsoft / Tests-TestLibraries]
2021-01-14T05:01:59.1789686Z *** Substitute Extension: [Microsoft / Email - Outlook REST API]
2021-01-14T05:01:59.1890202Z *** Substitute Extension: [Microsoft / Test Runner]
2021-01-14T05:01:59.1890984Z *** Substitute Extension: [Microsoft / Base Application]
2021-01-14T05:01:59.2110579Z *** Substitute Extension: [Microsoft / Performance Toolkit]
2021-01-14T05:01:59.2114842Z *** Substitute Extension: [Microsoft / Sales and Inventory Forecast]
2021-01-14T05:01:59.2119079Z *** Substitute Extension: [Microsoft / Email - Microsoft 365 Connector]
2021-01-14T05:01:59.2122147Z *** Substitute Extension: [Microsoft / Late Payment Prediction]
2021-01-14T05:01:59.2125135Z *** Substitute Extension: [Microsoft / Email - Current User Connector]
2021-01-14T05:01:59.2143961Z *** Substitute Extension: [Microsoft / Email - SMTP Connector]
2021-01-14T05:01:59.2174088Z *** Substitute Extension: [Microsoft / PayPal Payments Standard]
2021-01-14T05:01:59.2206518Z *** Substitute Extension: [Microsoft / Essential Business Headlines]
2021-01-14T05:01:59.2243899Z *** Substitute Extension: [Microsoft / _Exclude_APIV2_]
2021-01-14T05:01:59.2276225Z *** Substitute Extension: [Microsoft / _Exclude_APIV1_]
2021-01-14T05:01:59.2308844Z *** Substitute Extension: [Microsoft / Swedish language (Sweden)]
2021-01-14T05:01:59.2341400Z *** Substitute Extension: [Microsoft / Spanish language (Spain)]
2021-01-14T05:01:59.2396156Z *** Substitute Extension: [Microsoft / Tests-Cash Flow]
2021-01-14T05:01:59.2430904Z *** Substitute Extension: [Microsoft / Tests-Bank]
2021-01-14T05:01:59.2453109Z *** Substitute Extension: [Microsoft / Italian language (Switzerland)]
2021-01-14T05:01:59.2500061Z *** Substitute Extension: [Microsoft / Italian language (Italy)]
2021-01-14T05:01:59.2522798Z *** Substitute Extension: [Microsoft / Norwegian language (Norway)]
2021-01-14T05:01:59.2555019Z *** Substitute Extension: [Microsoft / Spanish language (Mexico)]
2021-01-14T05:01:59.2588391Z *** Substitute Extension: [Microsoft / Russian language (Russia)]
2021-01-14T05:01:59.2621743Z *** Substitute Extension: [Microsoft / Tests-Cost Accounting]
2021-01-14T05:01:59.2643389Z *** Substitute Extension: [Microsoft / Tests-Graph]
2021-01-14T05:01:59.2687972Z *** Substitute Extension: [Microsoft / Tests-General Journal]
2021-01-14T05:01:59.2710779Z *** Substitute Extension: [Microsoft / Tests-Integration]
2021-01-14T05:01:59.2744053Z *** Substitute Extension: [Microsoft / Tests-Job]
2021-01-14T05:01:59.2775843Z *** Substitute Extension: [Microsoft / Tests-Invoicing]
2021-01-14T05:01:59.2808160Z *** Substitute Extension: [Microsoft / Tests-Data Exchange]
2021-01-14T05:01:59.2830348Z *** Substitute Extension: [Microsoft / Tests-CRM integration]
2021-01-14T05:01:59.2873683Z *** Substitute Extension: [Microsoft / Tests-Dimension]
2021-01-14T05:01:59.2898729Z *** Substitute Extension: [Microsoft / Tests-Fixed Asset]
2021-01-14T05:01:59.2931752Z *** Substitute Extension: [Microsoft / Tests-ERM]
2021-01-14T05:01:59.2964242Z *** Substitute Extension: [Microsoft / Dutch language (Netherlands)]
2021-01-14T05:01:59.2998221Z *** Substitute Extension: [Microsoft / Dutch language (Belgium)]
2021-01-14T05:01:59.3021186Z *** Substitute Extension: [Microsoft / English language (Australia)]
2021-01-14T05:01:59.3065341Z *** Substitute Extension: [Microsoft / English language (New Zealand)]
2021-01-14T05:01:59.3087989Z *** Substitute Extension: [Microsoft / English language (Canada)]
2021-01-14T05:01:59.3172958Z *** Substitute Extension: [Microsoft / Application]
2021-01-14T05:01:59.3196715Z *** Substitute Extension: [Microsoft / Danish language (Denmark)]
2021-01-14T05:01:59.3235059Z *** Substitute Extension: [Microsoft / Czech language (Czechia)]
2021-01-14T05:01:59.3263404Z *** Substitute Extension: [Microsoft / English language (United Kingdom)]
2021-01-14T05:01:59.3296366Z *** Substitute Extension: [Microsoft / German language (Austria)]
2021-01-14T05:01:59.3328672Z *** Substitute Extension: [Microsoft / French language (Switzerland)]
2021-01-14T05:01:59.3361165Z *** Substitute Extension: [Microsoft / German language (Germany)]
2021-01-14T05:01:59.3394226Z *** Substitute Extension: [Microsoft / Icelandic language (Iceland)]
2021-01-14T05:01:59.3426989Z *** Substitute Extension: [Microsoft / German language (Switzerland)]
2021-01-14T05:01:59.3449152Z *** Substitute Extension: [Microsoft / Finnish language (Finland)]
2021-01-14T05:01:59.3494240Z *** Substitute Extension: [Microsoft / English language (United States)]
2021-01-14T05:01:59.3517213Z *** Substitute Extension: [Microsoft / French language (Belgium)]
2021-01-14T05:01:59.3549225Z *** Substitute Extension: [Microsoft / French language (France)]
2021-01-14T05:01:59.3580712Z *** Substitute Extension: [Microsoft / French language (Canada)]
2021-01-14T05:01:59.3664450Z *** Substitute Extension: [Microsoft / Send To Email Printer]
2021-01-14T05:01:59.3694655Z *** Substitute Extension: [Microsoft / Performance Toolkit Samples]
2021-01-14T05:01:59.3893432Z *** Substitute Extension: [Microsoft / Tests-Prepayment]
2021-01-14T05:01:59.3925297Z *** Substitute Extension: [Microsoft / Tests-Physical Inventory]
2021-01-14T05:01:59.3960184Z *** Substitute Extension: [Microsoft / Tests-Rapid Start]
2021-01-14T05:01:59.3982759Z *** Substitute Extension: [Microsoft / Tests-Resource]
2021-01-14T05:01:59.4026890Z *** Substitute Extension: [Microsoft / Tests-Report]
2021-01-14T05:01:59.4048311Z *** Substitute Extension: [Microsoft / Tests-Marketing]
2021-01-14T05:01:59.4076053Z *** Substitute Extension: [Microsoft / Tests-Local]
2021-01-14T05:01:59.4117310Z *** Substitute Extension: [Microsoft / Tests-Misc]
2021-01-14T05:01:59.4155735Z *** Substitute Extension: [Microsoft / Tests-Permissions]
2021-01-14T05:01:59.4177363Z *** Substitute Extension: [Microsoft / Tests-Monitor Sensitive Fields]
2021-01-14T05:01:59.4217370Z *** Substitute Extension: [Microsoft / Tests-Reverse]
2021-01-14T05:01:59.4245984Z *** Substitute Extension: [Microsoft / Tests-VAT]
2021-01-14T05:01:59.4280359Z *** Substitute Extension: [Microsoft / Tests-User]
2021-01-14T05:01:59.4315107Z *** Substitute Extension: [Microsoft / Tests-Workflow]
2021-01-14T05:01:59.4347341Z *** Substitute Extension: [Microsoft / Company Hub]
2021-01-14T05:01:59.4369302Z *** Substitute Extension: [Microsoft / _Exclude_ClientAddIns_]
2021-01-14T05:01:59.4409484Z *** Substitute Extension: [Microsoft / Tests-SINGLESERVER]
2021-01-14T05:01:59.4438362Z *** Substitute Extension: [Microsoft / Tests-SCM]
2021-01-14T05:01:59.4470931Z *** Substitute Extension: [Microsoft / Tests-SMB]
2021-01-14T05:01:59.4503251Z *** Substitute Extension: [Microsoft / Tests-Upgrade]
2021-01-14T05:01:59.4539088Z *** Substitute Extension: [Microsoft / Tests-SMTP]
2021-01-14T05:01:59.4541798Z *** Available Applications:
2021-01-14T05:01:59.5509418Z *** Installing Applications:
2021-01-14T05:01:59.5584645Z *** Get App Info: C:\Applications.BE\Microsoft_Library Assert_17.2.19367.20828.app
2021-01-14T05:01:59.5668135Z *** Publish App: [Microsoft / Library Assert]
2021-01-14T05:02:02.9607520Z *** Sync App: [Microsoft / Library Assert]
2021-01-14T05:02:03.2525857Z *** Install App: [Microsoft / Library Assert]
2021-01-14T05:02:04.5640352Z ***
2021-01-14T05:02:04.5654662Z *** Get App Info: C:\Applications.BE\Microsoft_Any_17.2.19367.20828.app
2021-01-14T05:02:04.5676101Z *** Publish App: [Microsoft / Any]
2021-01-14T05:02:04.6793677Z *** Sync App: [Microsoft / Any]
2021-01-14T05:02:04.7141071Z *** Install App: [Microsoft / Any]
2021-01-14T05:02:04.8098657Z ***
2021-01-14T05:02:04.8112520Z *** Get App Info: C:\Applications.BE\Microsoft_Library Variable Storage_17.2.19367.20828.app
2021-01-14T05:02:04.8130013Z *** Publish App: [Microsoft / Library Variable Storage]
2021-01-14T05:02:04.9247059Z *** Sync App: [Microsoft / Library Variable Storage]
2021-01-14T05:02:04.9583300Z *** Install App: [Microsoft / Library Variable Storage]
2021-01-14T05:02:05.0655083Z ***
2021-01-14T05:02:05.0667283Z *** Get App Info: C:\Applications.BE\Microsoft_System Application Test Library_17.2.19367.20828.app
2021-01-14T05:02:05.0699269Z *** Publish App: [Microsoft / System Application Test Library]
2021-01-14T05:02:06.9327422Z *** Sync App: [Microsoft / System Application Test Library]
2021-01-14T05:02:07.2744061Z *** Install App: [Microsoft / System Application Test Library]
2021-01-14T05:02:07.6746990Z ***
2021-01-14T05:02:07.6755873Z *** Get App Info: C:\Applications.BE\Microsoft_Tests-TestLibraries_17.2.19367.20828.app
2021-01-14T05:02:07.6834980Z *** Publish App: [Microsoft / Tests-TestLibraries]
2021-01-14T05:02:22.6618930Z *** Sync App: [Microsoft / Tests-TestLibraries]
2021-01-14T05:02:24.2182110Z *** Install App: [Microsoft / Tests-TestLibraries]
2021-01-14T05:02:27.1373730Z ***
2021-01-14T05:02:27.1374589Z *** Get App Info: C:\Applications.BE\Microsoft_Test Runner_17.2.19367.20828.app
2021-01-14T05:02:27.1394272Z *** Publish App: [Microsoft / Test Runner]
2021-01-14T05:02:27.5672454Z ##[error]AL-TestTool installation failed: This Extension cannot be published as it has the same Publisher, Name, and Version as a previously published Extension.
2021-01-14T05:02:27.5761504Z *** AL-TestTool installation finished.
2021-01-14T05:02:27.5762352Z 
2021-01-14T05:02:27.5782871Z *** Disconnect Docker session.
2021-01-14T05:02:27.5790090Z *** Remove Docker session.
2021-01-14T05:02:27.5794031Z *** Docker session removed.
2021-01-14T05:02:27.5800663Z *** AL-Extension Published to ALOps Repository
2021-01-14T05:02:27.5906775Z *** Cleanup VSTS Environment: True
2021-01-14T05:02:29.6388401Z ##[section]Finishing: ALOPS - Install AL TestTool

Output of ALOps Publish Extension for the TEST-App;

2021-01-14T05:03:13.0071451Z ##[section]Starting: ALOps Publish Extension
2021-01-14T05:03:13.0215873Z ==============================================================================
2021-01-14T05:03:13.0216406Z Task         : ALOps App Publish
2021-01-14T05:03:13.0216734Z Description  : Publish AL Extension to Business Central
2021-01-14T05:03:13.0217043Z Version      : 1.437.1990
2021-01-14T05:03:13.0217284Z Author       : Hodor
2021-01-14T05:03:13.0217617Z Help         : Publish Business Central extension to service tier.
2021-01-14T05:03:13.0218050Z ==============================================================================
2021-01-14T05:03:14.2531224Z *** Validate configuration
2021-01-14T05:03:14.5315876Z *** Task Inputs:
2021-01-14T05:03:14.5364081Z 
2021-01-14T05:03:14.5466149Z name                                                                                                              value
2021-01-14T05:03:14.5467315Z ----                                                                                                              -----
2021-01-14T05:03:14.5468290Z usedocker                                                                                                          True
2021-01-14T05:03:14.5469134Z fixed_tag                                                                                                              
2021-01-14T05:03:14.5470198Z installpublishedapps                                                                                               True
2021-01-14T05:03:14.5470997Z installaltesttool                                                                                                 False
2021-01-14T05:03:14.5472086Z install_al_app_names                                                                             Tests-TestLibraries...
2021-01-14T05:03:14.5495915Z strictappnames                                                                                                    False
2021-01-14T05:03:14.5497212Z nav_serverinstance                                                                                                BC140
2021-01-14T05:03:14.5497940Z artifact_path                                                                                                          
2021-01-14T05:03:14.5498725Z nav_artifact_app_filter                                                                                      *_TEST.app
2021-01-14T05:03:14.5499553Z skip_verification                                                                                                  True
2021-01-14T05:03:14.5500281Z forcesync                                                                                                         False
2021-01-14T05:03:14.5501016Z publish_scope                                                                                                    Global
2021-01-14T05:03:14.5501741Z tenant                                                                                                          default
2021-01-14T05:03:14.5502474Z batch_publish_folder                                                                                                   
2021-01-14T05:03:14.5502930Z 
2021-01-14T05:03:14.5503134Z 
2021-01-14T05:03:14.5503341Z 
2021-01-14T05:03:14.5675547Z 
2021-01-14T05:03:14.5683733Z *** No ALOps License found. Set License with the [alops-licenseid] or [alops_licenseid] variables.
2021-01-14T05:03:14.5692723Z *** To acquire a license, please visit: https://www.alops.be/getlicense
2021-01-14T05:03:14.5702040Z *** For pricing options, please visit : https://www.alops.be/pricing
2021-01-14T05:03:14.5712855Z *** For documentation, please visit   : https://www.alops.be/documentation
2021-01-14T05:03:14.5715718Z 
2021-01-14T05:03:14.8961453Z *** ALOps License:
2021-01-14T05:03:14.8986766Z   * Trial Key  : dd7337a4-2192-429f-8613-def81cdd9430
2021-01-14T05:03:14.9010884Z   * Licensed To: ALOps Trial [2/30] days remaining. Trial ends: Saturday, 16 January 2021
2021-01-14T05:03:14.9012474Z 
2021-01-14T05:03:14.9059582Z ##[warning]ALOps Trial is about to expire [Saturday, 16 January 2021]. Please aquire a ALOps license: https://www.alops.be/getlicense
2021-01-14T05:03:14.9061776Z 
2021-01-14T05:03:14.9142429Z *** Importing required PS-Functions
2021-01-14T05:03:15.2486297Z *** Initiate Docker Session
2021-01-14T05:03:15.5173769Z *** Set Docker Container ErrorActionPreference = Stop
2021-01-14T05:03:15.7478936Z *** Install AL TestTool: False
2021-01-14T05:03:15.7488900Z *** Working folder: C:\vsts-agent-azure\_work\1\s
2021-01-14T05:03:15.7499353Z *** Artifact folder: C:\vsts-agent-azure\_work\1\a
2021-01-14T05:03:15.7509103Z *** Pipeline workspace: C:\vsts-agent-azure\_work\1
2021-01-14T05:03:15.7517387Z ***
2021-01-14T05:03:15.7540491Z *** Copy Artifacts to Docker Container: 9b3e4412549a53061ba688b06f19a52118511d338367b11318cdf0f9eadefbaa
2021-01-14T05:03:15.7576976Z *** Docker Artifacts Folder: c:\Run\DevOps\Artifacts
2021-01-14T05:03:15.7638265Z *** Dynamic resolve App file.
2021-01-14T05:03:15.7647765Z *** Scanning [System.DefaultWorkingDirectory].
2021-01-14T05:03:15.7716704Z *** Scanning [System.ArtifactsDirectory].
2021-01-14T05:03:15.7741994Z *** Scanning [Pipeline.Workspace].
2021-01-14T05:03:15.7813597Z *** Multiple App files found with filter [*_TEST.app].
2021-01-14T05:03:15.7872293Z   * C:\vsts-agent-azure\_work\1\a\Arthurvdv_Example App-Test_1.0.202103.203_TEST.app
2021-01-14T05:03:15.7907007Z *** Resolved App File: [Arthurvdv_Example App-Test_1.0.202103.203_TEST.app].
2021-01-14T05:03:15.8399222Z *** Copy Artifact: [C:\vsts-agent-azure\_work\1\a\Arthurvdv_Example App-Test_1.0.202103.203_TEST.app]
2021-01-14T05:03:16.3893728Z *** Import NAV/BC Management DLL's
2021-01-14T05:03:16.3914766Z *** Loading assemblies for ServiceTier [BC].
2021-01-14T05:03:16.5737608Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\170\service]
2021-01-14T05:03:16.5838419Z *** Selected module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2021-01-14T05:03:16.5855663Z *** Loading module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2021-01-14T05:03:16.6069960Z *** Selected module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Management.dll]
2021-01-14T05:03:16.6073105Z *** Loading module: [C:\program files\microsoft dynamics nav\170\service\Microsoft.Dynamics.Nav.Management.dll]
2021-01-14T05:03:16.7946949Z 
2021-01-14T05:03:16.7987856Z **************************************
2021-01-14T05:03:16.7990896Z  * App File = [c:\Run\DevOps\Artifacts\Arthurvdv_Example App-Test_1.0.202103.203_TEST.app]
2021-01-14T05:03:16.7991473Z 
2021-01-14T05:03:16.8650688Z  * App.ID        = 6a80d7a2-2f5d-4be5-ab85-b12c6194e598
2021-01-14T05:03:16.8681121Z  * App.Name      = Example App-Test
2021-01-14T05:03:16.8703374Z  * App.Publisher = Arthurvdv
2021-01-14T05:03:16.8743091Z  * App.Version   = 1.0.202103.203
2021-01-14T05:03:17.1163866Z  => Publishing App 'Example App-Test v1.0.202103.203'
2021-01-14T05:03:17.2826001Z *** Get Tenants
2021-01-14T05:03:17.4006456Z 
2021-01-14T05:03:17.4055001Z *** Sync Tenant default
2021-01-14T05:03:17.4268381Z *** Sync App [Example App-Test] on tenant [default]
2021-01-14T05:03:17.5529613Z ##[error]Cannot synchronize the extension because no synchronized extension could be found to satisfy the dependency definition for Test Runner by Microsoft 1.0.0.0.
2021-01-14T05:03:17.5837372Z ##[section]Async Command Start: Add Build Tag
2021-01-14T05:03:17.5838351Z Build '203' has following tags now: AL.Compiler.ALLanguage, myimage-sandbox-17.2.19367.20828-be-businesscentral10.0.17763.1637-ltsc2019, BC.Platform.17.0.19353.20794, BC.Version.17.2.19367.20828, App.Example App.1.0.202103.203, App.Example App-Test.1.0.202103.203
2021-01-14T05:03:17.5839139Z ##[section]Async Command End: Add Build Tag
2021-01-14T05:03:17.5840074Z ##[section]Finishing: ALOps Publish Extension
waldo1001 commented 3 years ago

@kaspermoerch , I forgot to set this one to "released", but it was fixed two releases ago.
Can you confirm?

Arthurvdv commented 3 years ago

@waldo1001, for me this issue is now resolved, thanks!

kaspermoerch commented 3 years ago

@waldo1001 I can confirm that the issue has been resolved.