HodorNV / ALOps

ALOps
59 stars 24 forks source link

Build fails in ALOps Compile App #213

Closed baftos closed 4 years ago

baftos commented 4 years ago

Describe the bug Build fails with error "##[error]Could not load file or assembly 'System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified."

Fails in step: ALOps Compile App

the used yaml

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# This Pipeline is build and tested on BC 16.2 DK
# Version: 1.13
#
# Documentation of all available build steps can be found here: https://github.com/HodorNV/ALOps/blob/master/Documentation/BuildSteps.md and multiple examples is available here: https://github.com/HodorNV/ALOps/tree/master/Examples
#
# Variables to change:
#
# CodeAnalyzers
#  A string of Analyzers, full set is: 'CodeCop,UICop,PerTenantExtensionCop'
#  Note: The Compile steps is set to fail on Compiler warnings!
#
# Docker Image to build on:
#  This is specified via BC_Version, BC_Localization and BC_Type
#  See full documentation on specific version, next minor version, latest version and next major version on: https://github.com/HodorNV/ALOps/tree/master/Examples/Working%20with%20Artifacts
#
#  For Custom execution of Unit Test:
#   - Create an install codeunit in your Test folder for install a new Test Suite that can run your Unit Test
#   - Set variable RunTest = 1
#   - Update varible TestSuite with the name of your Test Suite from the Install codeunit, see example here: https://github.com/HodorNV/ALOps/issues/37#issuecomment-543622888
#   - Note: for BC13 and BC14: Add additional step for fob import and change Test Suite handling
#
# PublishDependencies:
#  Only set this to '1' if you want to pass on the dependency apps to the Release Pipeline. If activated then evaluate PathtoPublish parameter of the PublishBuildArtifacts task
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

name: $(Build.BuildId)

variables:
- name: 'BC_Version'
  value: '16.4'
- name: 'BC_Localization'
  value: 'dk'
- name: 'BC_Type'
  value: 'OnPrem'
- name: 'RunTests'
  value: '0'
- name: 'TestSuite'
  value: ''
- name: 'bc_license'
  value: 'VALUE REMOVED'
- name: 'CodeAnalyzers'
  value: 'CodeCop,UICop'
- 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'
    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
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- 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
    testsuite: $(TestSuite) 
    failed_test_action: 'Error'
  continueOnError: true   
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- 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()
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

Raw Log of step ALOps Compile App

2020-10-02T10:08:47.6782259Z ##[section]Starting: Job
2020-10-02T10:08:47.8872935Z ##[section]Starting: Initialize job
2020-10-02T10:08:47.8873721Z Agent name: 'UDV-BCBUILD02'
2020-10-02T10:08:47.8874182Z Agent machine name: 'UDV-BCBUILD02'
2020-10-02T10:08:47.8874492Z Current agent version: '2.165.0'
2020-10-02T10:08:47.8884510Z Agent running as: 'svc_navservicetier'
2020-10-02T10:08:47.8932196Z Prepare build directory.
2020-10-02T10:08:47.9553818Z Set build variables.
2020-10-02T10:08:47.9591065Z Download all required tasks.
2020-10-02T10:08:48.0661684Z Start tracking orphan processes.
2020-10-02T10:08:48.0722712Z ##[section]Finishing: Initialize job
2020-10-02T10:08:48.1169223Z ##[section]Starting: Checkout ElbekVejrup/dilling-underwear@develop to s
2020-10-02T10:08:48.1747862Z ==============================================================================
2020-10-02T10:08:48.1748839Z Task         : Get sources
2020-10-02T10:08:48.1749473Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2020-10-02T10:08:48.1749843Z Version      : 1.0.0
2020-10-02T10:08:48.1750327Z Author       : Microsoft
2020-10-02T10:08:48.1751163Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2020-10-02T10:08:48.1751546Z ==============================================================================
2020-10-02T10:08:48.6558014Z Syncing repository: ElbekVejrup/dilling-underwear (Bitbucket)
2020-10-02T10:08:48.6669752Z Prepending Path environment variable with directory containing 'git.exe'.
2020-10-02T10:08:48.6723089Z ##[command]git version
2020-10-02T10:08:49.2607895Z git version 2.25.0.windows.1
2020-10-02T10:08:49.2609625Z ##[command]git config --get remote.origin.url
2020-10-02T10:08:49.2613704Z ##[command]git clean -ffdx
2020-10-02T10:08:49.2616451Z Removing app/EVBCHelper/
2020-10-02T10:08:49.2617761Z ##[command]git reset --hard HEAD
2020-10-02T10:08:49.4409062Z HEAD is now at 8f66deb Merged in Custom-ruleset-update (pull request #56)
2020-10-02T10:08:49.4468594Z ##[command]git config gc.auto 0
2020-10-02T10:08:49.5038159Z ##[command]git config --get-all http.https://bitbucket.org/ElbekVejrup/dilling-underwear.extraheader
2020-10-02T10:08:49.5568415Z ##[command]git config --get-all http.proxy
2020-10-02T10:08:49.6129445Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules origin
2020-10-02T10:08:50.3922760Z ##[command]git checkout --progress --force 8f66deb22a09375862e8182d558c026b2bb1def8
2020-10-02T10:08:50.3925285Z HEAD is now at 8f66deb Merged in Custom-ruleset-update (pull request #56)
2020-10-02T10:08:50.4122745Z ##[section]Finishing: Checkout ElbekVejrup/dilling-underwear@develop to s
2020-10-02T10:08:50.4278537Z ##[section]Starting: EV: Get ALOps License Key
2020-10-02T10:08:50.4405559Z ==============================================================================
2020-10-02T10:08:50.4405943Z Task         : PowerShell
2020-10-02T10:08:50.4406280Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-02T10:08:50.4406633Z Version      : 2.170.1
2020-10-02T10:08:50.4406910Z Author       : Microsoft Corporation
2020-10-02T10:08:50.4407320Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-02T10:08:50.4407767Z ==============================================================================
2020-10-02T10:08:51.5778533Z Generating script.
2020-10-02T10:08:52.3924587Z ========================== Starting Command Output ===========================
2020-10-02T10:08:52.4821919Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'C:\Agent\_work\_temp\5fb28372-2937-48a7-842e-eb7d3a979c03.ps1'"
2020-10-02T10:08:53.6579769Z ##[section]Finishing: EV: Get ALOps License Key
2020-10-02T10:08:53.6700500Z ##[section]Starting: EV: Move Unit Tests to Test app if needed
2020-10-02T10:08:53.6835286Z ==============================================================================
2020-10-02T10:08:53.6837340Z Task         : PowerShell
2020-10-02T10:08:53.6837695Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-02T10:08:53.6837972Z Version      : 2.170.1
2020-10-02T10:08:53.6838377Z Author       : Microsoft Corporation
2020-10-02T10:08:53.6838738Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-02T10:08:53.6839192Z ==============================================================================
2020-10-02T10:08:54.7992688Z Generating script.
2020-10-02T10:08:54.8583830Z ========================== Starting Command Output ===========================
2020-10-02T10:08:54.8890394Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'C:\Agent\_work\_temp\de821e67-2d0b-4a05-8c53-ed11afb35326.ps1'"
2020-10-02T10:08:55.1939474Z Moving unit tests to test app
2020-10-02T10:08:55.3014767Z ##[section]Finishing: EV: Move Unit Tests to Test app if needed
2020-10-02T10:08:55.3146284Z ##[section]Starting: EV: Copy EVBusinessCentralDevelopmentHelper to Build Agent
2020-10-02T10:08:55.3278617Z ==============================================================================
2020-10-02T10:08:55.3279113Z Task         : PowerShell
2020-10-02T10:08:55.3279430Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-02T10:08:55.3279821Z Version      : 2.170.1
2020-10-02T10:08:55.3280078Z Author       : Microsoft Corporation
2020-10-02T10:08:55.3280457Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-02T10:08:55.3280938Z ==============================================================================
2020-10-02T10:08:56.3719660Z Generating script.
2020-10-02T10:08:56.4218002Z ========================== Starting Command Output ===========================
2020-10-02T10:08:56.4488360Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'C:\Agent\_work\_temp\5582f54d-9d6e-4140-b483-f8e6212d1c45.ps1'"
2020-10-02T10:08:56.7356884Z Copying EVBusinessCentralDevelopmentHelper to Build Agent
2020-10-02T10:08:56.8274645Z 
2020-10-02T10:08:56.8275239Z 
2020-10-02T10:08:56.8279810Z     Directory: C:\Agent\_work\28\s\app
2020-10-02T10:08:56.8280345Z 
2020-10-02T10:08:56.8280590Z 
2020-10-02T10:08:56.8290401Z Mode                LastWriteTime         Length Name                                                                  
2020-10-02T10:08:56.8297489Z ----                -------------         ------ ----                                                                  
2020-10-02T10:08:56.8306433Z d-----       02-10-2020     12:08                EVBCHelper                                                            
2020-10-02T10:08:56.8628181Z Package: \\ev.dk.local\ev\Tools, media and licenses\EV AL Development\DevOps\BuildPipeline\EVRepository\EVBusinessCentralDevelopmentHelper.0.1.7.29.nupkg
2020-10-02T10:08:56.9723973Z 
2020-10-02T10:08:56.9724151Z 
2020-10-02T10:08:57.0225234Z ##[section]Finishing: EV: Copy EVBusinessCentralDevelopmentHelper to Build Agent
2020-10-02T10:08:57.0345856Z ##[section]Starting: ALOpsDockerCreate
2020-10-02T10:08:57.0480378Z ==============================================================================
2020-10-02T10:08:57.0480737Z Task         : ALOps Docker Create
2020-10-02T10:08:57.0481060Z Description  : Create Docker image from Business Central Artifacts
2020-10-02T10:08:57.0481346Z Version      : 1.434.1775
2020-10-02T10:08:57.0481568Z Author       : Hodor
2020-10-02T10:08:57.0481871Z Help         : Create Docker image based on NAV/BC Artifacts.
2020-10-02T10:08:57.0482226Z ==============================================================================
2020-10-02T10:08:58.8277766Z *** Validate configuration
2020-10-02T10:08:59.2999581Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:08:59.3001995Z 
2020-10-02T10:08:59.6601682Z *** ALOps License:
2020-10-02T10:08:59.6611596Z   
2020-10-02T10:08:59.6637953Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:08:59.6641585Z 
2020-10-02T10:09:00.6503692Z *** Importing required PS-Functions
2020-10-02T10:09:01.8603819Z *** Install/Update BCContainerHelper [https://github.com/microsoft/navcontainerhelper]
2020-10-02T10:09:14.7657703Z ##[warning]Unable to resolve package source '\\ev-filsrv01.ev.dk.local\Navision\EV Internal Tools\Powershell\EVRepository'.
2020-10-02T10:09:26.6841742Z 
2020-10-02T10:09:26.6854079Z ModuleType Version    Name                                ExportedCommands                                             
2020-10-02T10:09:26.6861867Z ---------- -------    ----                                ----------------                                             
2020-10-02T10:09:26.6901296Z Script     1.0.6      BcContainerHelper                   {Add-FontsToBcContainer, Add-GitToAlProjectFolder, Backup-...
2020-10-02T10:09:26.6956557Z *** Get Artifact Url for Version [16.4] / Country [dk] / Type [OnPrem]: Latest
2020-10-02T10:09:26.7137554Z ##[command]"Get-BCArtifactUrl" 
2020-10-02T10:09:26.7138169Z Name                           Value                                                                                   
2020-10-02T10:09:26.7139621Z ----                           -----                                                                                   
2020-10-02T10:09:26.7140221Z select                         Latest                                                                                  
2020-10-02T10:09:26.7141019Z version                        16.4                                                                                    
2020-10-02T10:09:26.7141732Z type                           OnPrem                                                                                  
2020-10-02T10:09:26.7142711Z country                        dk                                                                                      
2020-10-02T10:09:26.7143049Z 
2020-10-02T10:09:26.7143155Z 
2020-10-02T10:09:26.7143257Z 
2020-10-02T10:09:27.0610633Z *** Artifact Url: [https://bcartifacts.azureedge.net/onprem/16.4.14693.15445/dk]
2020-10-02T10:09:27.0621696Z *** Build new Image based on [https://bcartifacts.azureedge.net/onprem/16.4.14693.15445/dk]
2020-10-02T10:09:27.0677981Z *** Artifact Type   : [onprem]
2020-10-02T10:09:27.0687832Z *** Artifact Version: [16.4.14693.15445]
2020-10-02T10:09:27.0697407Z *** Artifact Country: [dk]
2020-10-02T10:09:27.4579621Z *** OS: [2019]
2020-10-02T10:09:28.5230493Z *** OS version: [10.0.17763.1457]
2020-10-02T10:09:28.5240863Z *** Image Template: [%IMAGE_PREFIX%:%ARTIFACT_TYPE%-%ARTIFACT_VERSION%-%ARTIFACT_COUNTRY%-%OS_VERSION%-%OS_LTSC%]
2020-10-02T10:09:28.5283230Z *** ImageName: [myimage:onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019]
2020-10-02T10:09:28.5329869Z *** Set Pipeline variable $(ALOPS_BC_IMAGE) = 'myimage:onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019'
2020-10-02T10:09:28.7099266Z *** Image already locally cached. Skipping Pull/Create image.
2020-10-02T10:09:28.7110669Z *** Docker Create Succeeded.
2020-10-02T10:09:28.7264120Z *** Cleanup VSTS Environment: True
2020-10-02T10:09:31.0689928Z ##[section]Finishing: ALOpsDockerCreate
2020-10-02T10:09:31.0862720Z ##[section]Starting: ALOpsDockerStart
2020-10-02T10:09:31.1036843Z ==============================================================================
2020-10-02T10:09:31.1037217Z Task         : ALOps Docker Start
2020-10-02T10:09:31.1037535Z Description  : Start a Business Central container
2020-10-02T10:09:31.1037832Z Version      : 1.434.1775
2020-10-02T10:09:31.1038097Z Author       : Hodor
2020-10-02T10:09:31.1038406Z Help         : Start Business Central docker container.
2020-10-02T10:09:31.1038769Z ==============================================================================
2020-10-02T10:09:32.7864352Z *** Importing required PS-Functions
2020-10-02T10:09:33.7997772Z *** Validate configuration
2020-10-02T10:09:34.2881146Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:09:34.2883878Z 
2020-10-02T10:09:34.6378339Z *** ALOps License:
2020-10-02T10:09:34.6388732Z   * 
2020-10-02T10:09:34.6411231Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:09:34.6415498Z 
2020-10-02T10:09:35.7889101Z *** Splitting Additional Docker Parameters
2020-10-02T10:09:35.7899690Z *** Additional Docker parameters:
2020-10-02T10:09:35.7906426Z 
2020-10-02T10:09:35.7908118Z --isolation=hyperv
2020-10-02T10:09:35.7972414Z *** Add docker parameter: --isolation=hyperv
2020-10-02T10:09:35.7993270Z ##[command]"docker" create --memory 16G --env accept_eula=Y --env accept_outdated=Y --restart no --label TFSBuild=ElbekVejrup/dilling-underwear_1793 --isolation=hyperv myimage:onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019
2020-10-02T10:09:36.0492899Z *** Checking for Assemblies in App
2020-10-02T10:09:36.0619203Z ##[command]"docker" start 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:09:41.6052880Z *** Container Started: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:09:41.8613177Z *** Container Labels:
2020-10-02T10:09:41.8718409Z 
2020-10-02T10:09:41.8718737Z 
2020-10-02T10:09:41.8731709Z TFSBuild   : ElbekVejrup/dilling-underwear_1793
2020-10-02T10:09:41.8732191Z country    : dk
2020-10-02T10:09:41.8734149Z created    : 202009141334
2020-10-02T10:09:41.8734444Z cu         : 
2020-10-02T10:09:41.8736525Z eula       : https://go.microsoft.com/fwlink/?linkid=861843
2020-10-02T10:09:41.8738736Z legal      : http://go.microsoft.com/fwlink/?LinkId=837447
2020-10-02T10:09:41.8739321Z maintainer : Dynamics SMB
2020-10-02T10:09:41.8739734Z nav        : 
2020-10-02T10:09:41.8739975Z osversion  : 10.0.17763.1457
2020-10-02T10:09:41.8740246Z platform   : 16.0.14648.15420
2020-10-02T10:09:41.8741757Z tag        : 0.1.0.21
2020-10-02T10:09:41.8742195Z version    : 16.4.14693.15445
2020-10-02T10:09:41.8743387Z 
2020-10-02T10:09:41.9813195Z *** Docker Start OK.
2020-10-02T10:09:41.9813506Z *** Cleanup VSTS Environment: True
2020-10-02T10:09:44.0894332Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:09:44.0894948Z Build '1793' has following tags now: myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019
2020-10-02T10:09:44.0895365Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:09:44.0896399Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:09:44.0897005Z Build '1793' has following tags now: myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Platform.16.0.14648.15420
2020-10-02T10:09:44.0897515Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:09:44.0898698Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:09:44.0899375Z Build '1793' has following tags now: myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:09:44.0899899Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:09:44.0900961Z ##[section]Finishing: ALOpsDockerStart
2020-10-02T10:09:44.1028004Z ##[section]Starting: ALOpsDockerWait
2020-10-02T10:09:44.1186281Z ==============================================================================
2020-10-02T10:09:44.1186649Z Task         : ALOps Docker Wait
2020-10-02T10:09:44.1186966Z Description  : Wait until the Business Central container is started
2020-10-02T10:09:44.1187275Z Version      : 1.434.1775
2020-10-02T10:09:44.1187500Z Author       : Hodor
2020-10-02T10:09:44.1187821Z Help         : Wait until the Business Central container is started.
2020-10-02T10:09:44.1188194Z ==============================================================================
2020-10-02T10:09:45.8574908Z *** Validate configuration
2020-10-02T10:09:46.4551869Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:09:46.4560606Z 
2020-10-02T10:09:46.8272677Z *** ALOps License:
2020-10-02T10:09:46.8284780Z   
2020-10-02T10:09:46.8313044Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:09:46.8318402Z 
2020-10-02T10:09:46.8472217Z *** Importing required PS-Functions
2020-10-02T10:09:48.8983037Z *** Waiting for Docker Container Log Entry: Ready for connections!
2020-10-02T10:09:50.4319713Z Initializing...
2020-10-02T10:09:50.4340246Z Starting Container
2020-10-02T10:09:50.4351345Z Hostname is 791ed7fab92c
2020-10-02T10:09:50.4369189Z PublicDnsName is 791ed7fab92c
2020-10-02T10:09:50.4382292Z Using NavUserPassword Authentication
2020-10-02T10:09:50.4399438Z Starting Local SQL Server
2020-10-02T10:09:52.2590029Z Starting Internet Information Server
2020-10-02T10:09:52.2590783Z Creating Self Signed Certificate
2020-10-02T10:09:53.4665897Z Self Signed Certificate Thumbprint 184F60A3BE583538C5178A81DE61B5ED00FB60BD
2020-10-02T10:09:53.4691937Z Modifying Service Tier Config File with Instance Specific Settings
2020-10-02T10:09:54.8914636Z Starting Service Tier
2020-10-02T10:11:02.6293029Z Registering event sources
2020-10-02T10:11:02.6305297Z Creating DotNetCore Web Server Instance
2020-10-02T10:11:12.0604289Z Creating http download site
2020-10-02T10:11:12.0621789Z Setting SA Password and enabling SA
2020-10-02T10:11:13.4285122Z Creating admin as SQL User and add to sysadmin
2020-10-02T10:11:14.7825017Z Creating SUPER user
2020-10-02T10:11:29.6824563Z Container IP Address: 172.31.153.65
2020-10-02T10:11:29.6835023Z Container Hostname  : 791ed7fab92c
2020-10-02T10:11:29.6845327Z Container Dns Name  : 791ed7fab92c
2020-10-02T10:11:29.6856929Z Web Client          : https://791ed7fab92c/BC/
2020-10-02T10:11:29.6867115Z Admin Username      : admin
2020-10-02T10:11:29.6877660Z Admin Password      : Xuro9463
2020-10-02T10:11:29.6887861Z Dev. Server         : https://791ed7fab92c
2020-10-02T10:11:29.6898053Z Dev. ServerInstance : BC
2020-10-02T10:11:29.6902458Z 
2020-10-02T10:11:29.6913790Z Files:
2020-10-02T10:11:29.6923394Z http://791ed7fab92c:8080/ALLanguage.vsix
2020-10-02T10:11:29.6933182Z http://791ed7fab92c:8080/certificate.cer
2020-10-02T10:11:29.6937609Z 
2020-10-02T10:11:29.6947319Z Initialization took 104 seconds
2020-10-02T10:11:29.6957156Z Ready for connections!
2020-10-02T10:11:29.6966974Z Starting EventLog Monitor
2020-10-02T10:11:29.6977060Z Monitoring EventSources from EventLog[Application]:
2020-10-02T10:11:29.6986854Z - MicrosoftDynamicsNAVClientClientService
2020-10-02T10:11:29.6996558Z - MicrosoftDynamicsNAVClientWebClient
2020-10-02T10:11:29.7006440Z - MicrosoftDynamicsNavServer$BC
2020-10-02T10:11:29.7016875Z - MSSQL$SQLEXPRESS
2020-10-02T10:11:29.7021239Z 
2020-10-02T10:11:29.8566421Z 
2020-10-02T10:11:30.2881734Z *** BC Container Parameters:
2020-10-02T10:11:30.2908016Z 
2020-10-02T10:11:30.2909342Z 
2020-10-02T10:11:30.2918773Z Thumbprint        : 184F60A3BE583538C5178A81DE61B5ED00FB60BD
2020-10-02T10:11:30.2919301Z IPAddress         : 172.31.153.65
2020-10-02T10:11:30.2921634Z Hostname          : 791ed7fab92c
2020-10-02T10:11:30.2922930Z DnsName           : 791ed7fab92c
2020-10-02T10:11:30.2925523Z WebClient         : https://791ed7fab92c/BC/
2020-10-02T10:11:30.2925922Z AdminUser         : admin
2020-10-02T10:11:30.2926181Z AdminPassword     : Xuro9463
2020-10-02T10:11:30.2928225Z NavServerInstance : BC
2020-10-02T10:11:30.2928969Z VSIX              : http://791ed7fab92c:8080/ALLanguage.vsix
2020-10-02T10:11:30.2930714Z SSLCertificate    : http://791ed7fab92c:8080/certificate.cer
2020-10-02T10:11:30.2931642Z Duration          : 104
2020-10-02T10:11:30.2931853Z 
2020-10-02T10:11:30.2942973Z *** Mapping container info to global variables:
2020-10-02T10:11:30.2985235Z *** Set Pipeline variable $(ALOPS_DOCKER_CONTAINER_ID) = '791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35'
2020-10-02T10:11:30.3112633Z *** Set Pipeline variable $(ALOPS_DOCKER_IPADDRESS) = '172.31.153.65'
2020-10-02T10:11:30.3151071Z *** Set Pipeline variable $(ALOPS_DOCKER_HOSTNAME) = '791ed7fab92c'
2020-10-02T10:11:30.3189125Z *** Set Pipeline variable $(ALOPS_DOCKER_DNSNAME) = '791ed7fab92c'
2020-10-02T10:11:30.3229340Z *** Set Pipeline variable $(ALOPS_DOCKER_WEBCLIENT) = 'https://791ed7fab92c/BC/'
2020-10-02T10:11:30.3267886Z *** Set Pipeline variable $(ALOPS_DOCKER_VSIX) = 'http://791ed7fab92c:8080/ALLanguage.vsix'
2020-10-02T10:11:30.3304949Z *** Set Pipeline variable $(ALOPS_DOCKER_CERTIFICATE) = 'http://791ed7fab92c:8080/certificate.cer'
2020-10-02T10:11:30.3341919Z *** Set Pipeline variable $(ALOPS_DOCKER_ADMINUSER) = 'admin'
2020-10-02T10:11:30.3380099Z *** Set Pipeline variable $(ALOPS_DOCKER_ADMINPASSWORD) = 'Xuro9463'
2020-10-02T10:11:30.3420549Z *** Set Pipeline variable $(ALOPS_DOCKER_NAVSERVERINSTANCE) = 'BC'
2020-10-02T10:11:30.3531778Z *** Initiate Docker Session
2020-10-02T10:11:30.6983938Z *** Set Docker Container ErrorActionPreference = Stop
2020-10-02T10:11:30.8699844Z *** Working folder: C:\Agent\_work\28\s
2020-10-02T10:11:30.8710761Z ***
2020-10-02T10:11:30.8722514Z *** Copy Working folder to Docker Container: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:11:30.8733754Z *** Docker Working Folder: c:\Run\DevOps\
2020-10-02T10:11:30.8745837Z *** Copy from [C:\Agent\_work\28\s] to [c:\Run\DevOps\]
2020-10-02T10:11:31.0135772Z *** Compression Enabled Transfer (Dotnet)
2020-10-02T10:11:31.0255594Z *** Compress Source Files
2020-10-02T10:11:47.3077176Z *** Transfer compressed Archive to session (200853077 bytes)
2020-10-02T10:12:20.0621177Z *** Expand source files in target session
2020-10-02T10:12:21.3494260Z *** Source File setup completed
2020-10-02T10:12:21.3564620Z *** Container : Ready for connections!
2020-10-02T10:12:21.3682658Z *** Cleanup VSTS Environment: True
2020-10-02T10:12:23.7134065Z ##[section]Finishing: ALOpsDockerWait
2020-10-02T10:12:23.7319470Z ##[section]Starting: ALOpsLicenseImport
2020-10-02T10:12:23.7572985Z ==============================================================================
2020-10-02T10:12:23.7573361Z Task         : ALOps License Import
2020-10-02T10:12:23.7573660Z Description  : Import Business Central license (.flf)
2020-10-02T10:12:23.7573942Z Version      : 1.434.1775
2020-10-02T10:12:23.7574715Z Author       : Hodor
2020-10-02T10:12:23.7575012Z Help         : Import Business Central license (.flf).
2020-10-02T10:12:23.7575379Z ==============================================================================
2020-10-02T10:12:25.4778794Z *** Validate configuration
2020-10-02T10:12:25.9808297Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:12:25.9809296Z 
2020-10-02T10:12:26.3372091Z *** ALOps License:
2020-10-02T10:12:26.3438253Z 
2020-10-02T10:12:26.3439738Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:12:26.3440733Z 
2020-10-02T10:12:26.3562610Z *** Importing required PS-Functions
2020-10-02T10:12:27.0088176Z *** Connect Docker Session
2020-10-02T10:12:28.2551276Z *** Initiate Docker Session
2020-10-02T10:12:28.5755473Z *** Set Docker Container ErrorActionPreference = Stop
2020-10-02T10:12:29.1830690Z *** Import license in docker container.
2020-10-02T10:12:29.7094658Z *** Import NAV/BC Management DLL's
2020-10-02T10:12:29.7209028Z *** Loading assemblies for ServiceTier [BC].
2020-10-02T10:12:30.7031229Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\160\service]
2020-10-02T10:12:30.7252440Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:12:30.7291112Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:12:30.7819503Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:12:30.7830410Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:12:30.8052308Z *** Setup Flf File: https://evdevlicense.file.core.windows.net/license-share/16.flf?sv=2019-02-02&ss=f&srt=sco&sp=rwlc&se=2050-01-10T17:01:42Z&st=2020-01-10T09:01:42Z&spr=https&sig=KrUpLeDWFxabgaa7rDrfDY8%2FnnXGKfyv%2BlU4TwfOAPw%3D
2020-10-02T10:12:30.8206167Z *** Create TempFile
2020-10-02T10:12:30.8602946Z *** Download file
2020-10-02T10:12:32.5070778Z *** Flf File: C:\Users\ContainerAdministrator\AppData\Local\Temp\tmpB4CF.tmp.flf
2020-10-02T10:12:32.5077421Z *** Import License: [C:\Users\ContainerAdministrator\AppData\Local\Temp\tmpB4CF.tmp.flf]
2020-10-02T10:12:32.7150079Z *** Remove License: [C:\Users\ContainerAdministrator\AppData\Local\Temp\tmpB4CF.tmp.flf]
2020-10-02T10:12:32.7239985Z 
2020-10-02T10:12:32.7273692Z  Id Name            ComputerName    ComputerType    State         ConfigurationName     Availability
2020-10-02T10:12:32.7291874Z  -- ----            ------------    ------------    -----         -----------------     ------------
2020-10-02T10:12:32.7310561Z   1 WinRM1          791ed7fab92c... Container       Opened                                 Available
2020-10-02T10:12:32.7322712Z *** Disconnect Docker session.
2020-10-02T10:12:32.7371764Z *** Remove Docker session.
2020-10-02T10:12:32.7383296Z *** Docker session removed.
2020-10-02T10:12:32.7394830Z *** Import License Results:
2020-10-02T10:12:32.7405464Z *** Import License Completed.
2020-10-02T10:12:32.7481441Z *** Cleanup VSTS Environment: True
2020-10-02T10:12:35.2021483Z ##[section]Finishing: ALOpsLicenseImport
2020-10-02T10:12:35.2224270Z ##[section]Starting: EV: Install ISV and dependencies apps
2020-10-02T10:12:35.2351768Z ==============================================================================
2020-10-02T10:12:35.2352117Z Task         : ALOps App Publish
2020-10-02T10:12:35.2352432Z Description  : Publish AL Extension to Business Central
2020-10-02T10:12:35.2352719Z Version      : 1.434.1775
2020-10-02T10:12:35.2352959Z Author       : Hodor
2020-10-02T10:12:35.2353264Z Help         : Publish Business Central extension to service tier.
2020-10-02T10:12:35.2353633Z ==============================================================================
2020-10-02T10:12:37.5206402Z *** Validate configuration
2020-10-02T10:12:38.0510271Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:12:38.0515107Z 
2020-10-02T10:12:38.3776914Z *** ALOps License:
2020-10-02T10:12:38.3788572Z  
2020-10-02T10:12:38.3814689Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:12:38.3819541Z 
2020-10-02T10:12:38.4035944Z *** Importing required PS-Functions
2020-10-02T10:12:38.4050209Z  - Use Docker         = True
2020-10-02T10:12:38.4067229Z  - Artifact Path      = 
2020-10-02T10:12:38.4082854Z  - App Filter         = *.app
2020-10-02T10:12:38.4095773Z  - Process Type       = Build
2020-10-02T10:12:38.4109947Z  - Skip Verification  = True
2020-10-02T10:12:38.4123289Z  - Force Sync         = False
2020-10-02T10:12:38.4127946Z 
2020-10-02T10:12:38.4141623Z *** Importing required PS-Functions
2020-10-02T10:12:40.3517220Z *** Initiate Docker Session
2020-10-02T10:12:40.6652148Z *** Set Docker Container ErrorActionPreference = Stop
2020-10-02T10:12:41.1128987Z *** Start Batch App-Publish.
2020-10-02T10:12:41.2667463Z *** Copy Artifacts: [C:\Agent\_work\28\s\.\app\Dependencies] to [c:\Run\DevOps\Artifacts]
2020-10-02T10:12:55.3753151Z *** Import NAV/BC Management DLL's
2020-10-02T10:12:55.3796130Z *** Loading assemblies for ServiceTier [BC].
2020-10-02T10:12:55.6187355Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\160\service]
2020-10-02T10:12:55.6332583Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:12:55.6361973Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:12:55.6920194Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:12:55.6936205Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:12:56.0311455Z *** Get Available Applications from [c:\Run\DevOps\Artifacts].
2020-10-02T10:12:56.0435679Z *** Get [*.app] files recursive from [c:\Run\DevOps\Artifacts]
2020-10-02T10:12:56.0519449Z *** Found [9] files.
2020-10-02T10:12:56.0540781Z *** Extract App detail from [C:\Run\DevOps\Artifacts\BC16_JobManager_1.22.10023.1.app]
2020-10-02T10:12:56.2668353Z *** Extract App detail from [C:\Run\DevOps\Artifacts\Elbek & Vejrup AS_EV Mail & Print_1600.2.0.0.app]
2020-10-02T10:12:56.2818390Z *** Extract App detail from [C:\Run\DevOps\Artifacts\Elbek & Vejrup AS_EV Quality & Claim_1600.1.3.0.app]
2020-10-02T10:12:56.2849323Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Barcodes_1.0.2.1_runtime.app]
2020-10-02T10:12:56.3075562Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Buying Groups_1.2.0.1_runtime.app]
2020-10-02T10:12:56.3177292Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Pebblestone Delivery Plan_16.0.1.0_runtime.app]
2020-10-02T10:12:56.3326363Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Pebblestone Payments_16.0.0.1_runtime.app]
2020-10-02T10:12:56.3364880Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Pebblestone Suite_16.0.1.0_runtime.app]
2020-10-02T10:12:56.3424537Z *** Extract App detail from [C:\Run\DevOps\Artifacts\K3 Pebblestone_16.0.1.0_runtime.app]
2020-10-02T10:12:57.1256869Z *** Installing Applications:
2020-10-02T10:12:57.8280455Z 
2020-10-02T10:12:57.8286292Z **************************************
2020-10-02T10:12:57.8286994Z  * App File = [C:\Run\DevOps\Artifacts\K3 Pebblestone Payments_16.0.0.1_runtime.app]
2020-10-02T10:12:57.8287432Z 
2020-10-02T10:12:57.8287790Z  * App.ID        = 6d12c32c-8d24-4dbf-bb8d-e01d4de1253f
2020-10-02T10:12:57.8288131Z  * App.Name      = K3 Pebblestone Payments
2020-10-02T10:12:57.8288584Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:12:57.8289021Z  * App.Version   = 16.0.0.1
2020-10-02T10:12:57.8788132Z  => Publishing App 'K3 Pebblestone Payments v16.0.0.1'
2020-10-02T10:12:58.1953336Z *** Get Tenants
2020-10-02T10:12:58.6238454Z *** Sync Tenant default
2020-10-02T10:13:01.0379930Z *** Sync App [K3 Pebblestone Payments] on tenant [default]
2020-10-02T10:13:01.8741922Z *** Install App [K3 Pebblestone Payments] on tenant [default]
2020-10-02T10:13:03.9095920Z 
2020-10-02T10:13:03.9106866Z **************************************
2020-10-02T10:13:03.9118687Z 
2020-10-02T10:13:03.9138917Z 
2020-10-02T10:13:03.9162797Z **************************************
2020-10-02T10:13:03.9189588Z  * App File = [C:\Run\DevOps\Artifacts\K3 Barcodes_1.0.2.1_runtime.app]
2020-10-02T10:13:03.9195224Z 
2020-10-02T10:13:03.9279233Z  * App.ID        = d1bcaff0-7221-4f0c-a221-a091f2f75be6
2020-10-02T10:13:03.9287267Z  * App.Name      = K3 Barcodes
2020-10-02T10:13:03.9306516Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:13:03.9316494Z  * App.Version   = 1.0.2.1
2020-10-02T10:13:04.0032907Z  => Publishing App 'K3 Barcodes v1.0.2.1'
2020-10-02T10:13:04.3507622Z *** Get Tenants
2020-10-02T10:13:04.4031528Z *** Sync Tenant default
2020-10-02T10:13:04.4471727Z *** Sync App [K3 Barcodes] on tenant [default]
2020-10-02T10:13:04.9343995Z *** Install App [K3 Barcodes] on tenant [default]
2020-10-02T10:13:06.3628488Z 
2020-10-02T10:13:06.3671539Z **************************************
2020-10-02T10:13:06.3672132Z 
2020-10-02T10:13:06.3672750Z 
2020-10-02T10:13:06.3684362Z **************************************
2020-10-02T10:13:06.3701015Z  * App File = [C:\Run\DevOps\Artifacts\K3 Buying Groups_1.2.0.1_runtime.app]
2020-10-02T10:13:06.3712141Z 
2020-10-02T10:13:06.3842545Z  * App.ID        = ac1c83cc-3f4a-497c-a920-989a34648797
2020-10-02T10:13:06.3856887Z  * App.Name      = K3 Buying Groups
2020-10-02T10:13:06.3874277Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:13:06.4042096Z  * App.Version   = 1.2.0.1
2020-10-02T10:13:06.4435919Z  => Publishing App 'K3 Buying Groups v1.2.0.1'
2020-10-02T10:13:06.8382476Z *** Get Tenants
2020-10-02T10:13:06.9012093Z *** Sync Tenant default
2020-10-02T10:13:06.9498234Z *** Sync App [K3 Buying Groups] on tenant [default]
2020-10-02T10:13:07.9056671Z *** Install App [K3 Buying Groups] on tenant [default]
2020-10-02T10:13:11.2324349Z 
2020-10-02T10:13:11.2346255Z **************************************
2020-10-02T10:13:11.2353580Z 
2020-10-02T10:13:11.2370118Z 
2020-10-02T10:13:11.2394301Z **************************************
2020-10-02T10:13:11.2404749Z  * App File = [C:\Run\DevOps\Artifacts\K3 Pebblestone Delivery Plan_16.0.1.0_runtime.app]
2020-10-02T10:13:11.2412424Z 
2020-10-02T10:13:11.2608962Z  * App.ID        = 7fa3953b-dedb-49bc-8eac-041743d4c0c3
2020-10-02T10:13:11.2625818Z  * App.Name      = K3 Pebblestone Delivery Plan
2020-10-02T10:13:11.2642651Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:13:11.2658790Z  * App.Version   = 16.0.1.0
2020-10-02T10:13:11.3077107Z  => Publishing App 'K3 Pebblestone Delivery Plan v16.0.1.0'
2020-10-02T10:13:11.9888517Z *** Get Tenants
2020-10-02T10:13:12.0599184Z *** Sync Tenant default
2020-10-02T10:13:12.1206094Z *** Sync App [K3 Pebblestone Delivery Plan] on tenant [default]
2020-10-02T10:13:13.6324594Z *** Install App [K3 Pebblestone Delivery Plan] on tenant [default]
2020-10-02T10:13:19.6931796Z 
2020-10-02T10:13:19.6949607Z **************************************
2020-10-02T10:13:19.6956356Z 
2020-10-02T10:13:19.6974037Z 
2020-10-02T10:13:19.6997549Z **************************************
2020-10-02T10:13:19.7009101Z  * App File = [C:\Run\DevOps\Artifacts\K3 Pebblestone_16.0.1.0_runtime.app]
2020-10-02T10:13:19.7011379Z 
2020-10-02T10:13:20.5427355Z  * App.ID        = 78b99d35-c19d-4ff1-bfbd-24dedd0cc8a9
2020-10-02T10:13:20.5439344Z  * App.Name      = K3 Pebblestone
2020-10-02T10:13:20.5451818Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:13:20.5467202Z  * App.Version   = 16.0.1.0
2020-10-02T10:13:20.6037010Z  => Publishing App 'K3 Pebblestone v16.0.1.0'
2020-10-02T10:13:35.3052536Z *** Get Tenants
2020-10-02T10:13:37.3943444Z *** Sync Tenant default
2020-10-02T10:13:37.4550809Z *** Sync App [K3 Pebblestone] on tenant [default]
2020-10-02T10:13:45.0194836Z *** Install App [K3 Pebblestone] on tenant [default]
2020-10-02T10:14:14.6402048Z 
2020-10-02T10:14:14.6426139Z **************************************
2020-10-02T10:14:14.6439791Z 
2020-10-02T10:14:14.6461421Z 
2020-10-02T10:14:14.6482434Z **************************************
2020-10-02T10:14:14.6503377Z  * App File = [C:\Run\DevOps\Artifacts\K3 Pebblestone Suite_16.0.1.0_runtime.app]
2020-10-02T10:14:14.6516278Z 
2020-10-02T10:14:14.6984993Z  * App.ID        = 4a91e8e3-eb85-4a1a-9544-4e68b32c5547
2020-10-02T10:14:14.6988242Z  * App.Name      = K3 Pebblestone Suite
2020-10-02T10:14:14.6993888Z  * App.Publisher = K3 Business Technology Group
2020-10-02T10:14:14.6999631Z  * App.Version   = 16.0.1.0
2020-10-02T10:14:14.7423057Z  => Publishing App 'K3 Pebblestone Suite v16.0.1.0'
2020-10-02T10:14:15.0148734Z *** Get Tenants
2020-10-02T10:14:15.0807945Z *** Sync Tenant default
2020-10-02T10:14:15.1435399Z *** Sync App [K3 Pebblestone Suite] on tenant [default]
2020-10-02T10:14:15.7235031Z *** Install App [K3 Pebblestone Suite] on tenant [default]
2020-10-02T10:14:18.0618573Z 
2020-10-02T10:14:18.0716300Z **************************************
2020-10-02T10:14:18.0726299Z 
2020-10-02T10:14:18.0739797Z 
2020-10-02T10:14:18.0759427Z **************************************
2020-10-02T10:14:18.0777804Z  * App File = [C:\Run\DevOps\Artifacts\BC16_JobManager_1.22.10023.1.app]
2020-10-02T10:14:18.0784714Z 
2020-10-02T10:14:18.1680916Z  * App.ID        = 88b17f5c-c5a1-4c2e-aff3-3d7aba65b4c5
2020-10-02T10:14:18.1696232Z  * App.Name      = JobManager
2020-10-02T10:14:18.1714740Z  * App.Publisher = Dynalogic
2020-10-02T10:14:18.1732029Z  * App.Version   = 1.22.10023.1
2020-10-02T10:14:18.2127361Z  => Publishing App 'JobManager v1.22.10023.1'
2020-10-02T10:14:21.7205631Z *** Get Tenants
2020-10-02T10:14:21.9160143Z *** Sync Tenant default
2020-10-02T10:14:21.9734412Z *** Sync App [JobManager] on tenant [default]
2020-10-02T10:14:25.1673842Z *** Install App [JobManager] on tenant [default]
2020-10-02T10:14:28.5842782Z 
2020-10-02T10:14:28.5860076Z **************************************
2020-10-02T10:14:28.5869510Z 
2020-10-02T10:14:28.5882878Z 
2020-10-02T10:14:28.5901071Z **************************************
2020-10-02T10:14:28.5917846Z  * App File = [C:\Run\DevOps\Artifacts\Elbek & Vejrup AS_EV Quality & Claim_1600.1.3.0.app]
2020-10-02T10:14:28.5927847Z 
2020-10-02T10:14:28.5967981Z  * App.ID        = 639113bf-d473-4e8a-a4c1-21387baeee19
2020-10-02T10:14:28.5985366Z  * App.Name      = EV Quality & Claim
2020-10-02T10:14:28.6001327Z  * App.Publisher = Elbek & Vejrup A/S
2020-10-02T10:14:28.6021316Z  * App.Version   = 1600.1.3.0
2020-10-02T10:14:28.6559498Z  => Publishing App 'EV Quality & Claim v1600.1.3.0'
2020-10-02T10:14:38.2626975Z *** Get Tenants
2020-10-02T10:14:38.3195876Z *** Sync Tenant default
2020-10-02T10:14:38.3932525Z *** Sync App [EV Quality & Claim] on tenant [default]
2020-10-02T10:14:39.5001990Z *** Install App [EV Quality & Claim] on tenant [default]
2020-10-02T10:14:43.8781961Z 
2020-10-02T10:14:43.8803525Z **************************************
2020-10-02T10:14:43.8815834Z 
2020-10-02T10:14:43.8837665Z 
2020-10-02T10:14:43.8858111Z **************************************
2020-10-02T10:14:43.8877247Z  * App File = [C:\Run\DevOps\Artifacts\Elbek & Vejrup AS_EV Mail & Print_1600.2.0.0.app]
2020-10-02T10:14:43.8890721Z 
2020-10-02T10:14:43.8999712Z  * App.ID        = d58a9764-e042-4aef-8bb3-c7c9dfb21668
2020-10-02T10:14:43.9018657Z  * App.Name      = EV Mail & Print
2020-10-02T10:14:43.9039065Z  * App.Publisher = Elbek & Vejrup A/S
2020-10-02T10:14:43.9065242Z  * App.Version   = 1600.2.0.0
2020-10-02T10:14:43.9535514Z  => Publishing App 'EV Mail & Print v1600.2.0.0'
2020-10-02T10:14:49.2073923Z *** Get Tenants
2020-10-02T10:14:49.3497952Z *** Sync Tenant default
2020-10-02T10:14:49.4272689Z *** Sync App [EV Mail & Print] on tenant [default]
2020-10-02T10:14:51.3218634Z *** Install App [EV Mail & Print] on tenant [default]
2020-10-02T10:14:56.8368151Z 
2020-10-02T10:14:56.8473453Z **************************************
2020-10-02T10:14:56.8484684Z 
2020-10-02T10:14:56.8514838Z *** Batch App-Publish finished.
2020-10-02T10:14:56.8527989Z *** AL-Extension Published to ALOps Repository
2020-10-02T10:14:56.9455539Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9456617Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9457206Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9458183Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9458927Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Barcodes.1.0.2.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9459689Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9460544Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9461783Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9462537Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9463513Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9464412Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9465360Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9466303Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9467297Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9468146Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9469031Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9470080Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9471047Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9471919Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9473426Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420
2020-10-02T10:14:56.9474553Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9475574Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9476821Z Build '1793' has following tags now: App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420, App.EV Quality & Claim.1600.1.3.0
2020-10-02T10:14:56.9477927Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9478987Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:14:56.9480313Z Build '1793' has following tags now: App.EV Mail & Print.1600.2.0.0, App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420, App.EV Quality & Claim.1600.1.3.0
2020-10-02T10:14:56.9481496Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:14:56.9482699Z ##[section]Finishing: EV: Install ISV and dependencies apps
2020-10-02T10:14:56.9676026Z ##[section]Starting: EV: Install EVBusinessCentralDevelopmentHelper
2020-10-02T10:14:56.9995759Z ==============================================================================
2020-10-02T10:14:56.9996142Z Task         : ALOps Docker Execute
2020-10-02T10:14:56.9996504Z Description  : Execute powershell script in a Business Central container
2020-10-02T10:14:57.0002635Z Version      : 1.434.1775
2020-10-02T10:14:57.0002975Z Author       : Hodor
2020-10-02T10:14:57.0003277Z Help         : Execute powershell script in container.
2020-10-02T10:14:57.0003645Z ==============================================================================
2020-10-02T10:15:00.3664205Z *** Validate configuration
2020-10-02T10:15:01.0570353Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:15:01.0574383Z 
2020-10-02T10:15:01.4130649Z *** ALOps License:
2020-10-02T10:15:01.4142392Z  
2020-10-02T10:15:01.4172743Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:15:01.4179962Z 
2020-10-02T10:15:02.1188511Z *** Importing required PS-Functions
2020-10-02T10:15:03.5840902Z *** Initiate Docker Session
2020-10-02T10:15:03.9007731Z *** Set Docker Container ErrorActionPreference = Stop
2020-10-02T10:15:04.4612039Z *** Load module [Microsoft.Dynamics.Nav.Management]
2020-10-02T10:15:04.5274142Z *** Load module [Microsoft.Dynamics.Nav.Apps.Management]
2020-10-02T10:15:04.5598720Z *** Invoking Script in container
2020-10-02T10:15:04.7660408Z 
2020-10-02T10:15:04.7660782Z 
2020-10-02T10:15:04.7660899Z 
2020-10-02T10:15:04.7661005Z 
2020-10-02T10:15:04.7661112Z 
2020-10-02T10:15:04.7661229Z 
2020-10-02T10:15:04.7661331Z 
2020-10-02T10:15:04.7662609Z 
2020-10-02T10:15:04.7662926Z 
2020-10-02T10:15:04.7663218Z 
2020-10-02T10:15:04.7664338Z Installing Module: EVBusinessCentralDevelopmentHelper
2020-10-02T10:15:04.7672033Z PSScriptRoot C:\Run\DevOps\app\EVBCHelper
2020-10-02T10:15:04.7679590Z PackageFile C:\Run\DevOps\app\EVBCHelper\EVBusinessCentralDevelopmentHelper.0.1.7.29.nupkg
2020-10-02T10:15:04.7685537Z TempFolder C:\Users\ContainerAdministrator\AppData\Local\Temp\87e58d62-ce7d-4ed0-87ab-6e28bc4b462f
2020-10-02T10:15:06.8308590Z ModulePath C:\Program Files\WindowsPowerShell\Modules\EVBusinessCentralDevelopmentHelper\0.1.7.29
2020-10-02T10:15:06.8312928Z 0.1.7.29 0.1.7.29
2020-10-02T10:15:06.8313337Z 
2020-10-02T10:15:06.8318196Z Module: EVBusinessCentralDevelopmentHelper Version: 0.1.7.29 Is Installed
2020-10-02T10:15:06.8329288Z *** Script invoked in container
2020-10-02T10:15:06.8383919Z 
2020-10-02T10:15:06.8401063Z  Id Name            ComputerName    ComputerType    State         ConfigurationName     Availability
2020-10-02T10:15:06.8411787Z  -- ----            ------------    ------------    -----         -----------------     ------------
2020-10-02T10:15:06.8423725Z   1 WinRM1          791ed7fab92c... Container       Opened                                 Available
2020-10-02T10:15:06.8434287Z *** Disconnect Docker session.
2020-10-02T10:15:06.8463524Z *** Remove Docker session.
2020-10-02T10:15:06.8472517Z *** Docker session removed.
2020-10-02T10:15:06.8481183Z *** Powershell executed in container.
2020-10-02T10:15:06.8579546Z *** Cleanup VSTS Environment: True
2020-10-02T10:15:09.3967535Z ##[section]Finishing: EV: Install EVBusinessCentralDevelopmentHelper
2020-10-02T10:15:09.4213138Z ##[section]Starting: ALOps Compile App
2020-10-02T10:15:09.4408554Z ==============================================================================
2020-10-02T10:15:09.4408935Z Task         : ALOps App Compiler
2020-10-02T10:15:09.4409245Z Description  : Compile AL Extensions for Business Central
2020-10-02T10:15:09.4409538Z Version      : 1.434.1775
2020-10-02T10:15:09.4409765Z Author       : Hodor
2020-10-02T10:15:09.4410195Z Help         : Compile a Business Central extension from AL code.
2020-10-02T10:15:09.4410572Z ==============================================================================
2020-10-02T10:15:13.6793454Z *** Validate configuration
2020-10-02T10:15:14.3166365Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:15:14.3171425Z 
2020-10-02T10:15:14.7246933Z *** ALOps License:
2020-10-02T10:15:14.7257629Z   
2020-10-02T10:15:14.7282298Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:15:14.7286862Z 
2020-10-02T10:15:14.7419701Z *** Importing required PS-Functions
2020-10-02T10:15:18.2461147Z *** Initiate Docker Session
2020-10-02T10:15:18.5574948Z *** Set Docker Container ErrorActionPreference = Stop
2020-10-02T10:15:20.1221266Z *** Import NAV/BC Management DLL's
2020-10-02T10:15:20.1273868Z *** Loading assemblies for ServiceTier [BC].
2020-10-02T10:15:20.5159515Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\160\service]
2020-10-02T10:15:20.5336791Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:15:20.5354759Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2020-10-02T10:15:20.5883841Z *** Selected module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:15:20.5899417Z *** Loading module: [C:\program files\microsoft dynamics nav\160\service\Microsoft.Dynamics.Nav.Management.dll]
2020-10-02T10:15:20.8632479Z *** Setting up AL Compiler [ALLanguage]
2020-10-02T10:15:21.1523235Z *** Downloading AL Compiler [ALLanguage]
2020-10-02T10:15:21.1661761Z *** Get Extension from Local-Disk...[C:\Run\ALLanguage.vsix]
2020-10-02T10:15:21.1668427Z *** Resolving Path [C:\Run\ALLanguage.vsix]
2020-10-02T10:15:21.5667553Z *** VSIX Path Resolved: [C:\Run\ALLanguage.vsix]
2020-10-02T10:15:21.5704704Z *** Unpacking Extension to folder...
2020-10-02T10:15:26.7225585Z *** Loading Json Object: [c:\Run\Microsoft.al\al-ALLanguage\extension\package.json]
2020-10-02T10:15:26.7599815Z *** Using AL Compiler [vALLanguage] located [C:\Run\Microsoft.al\al-ALLanguage\extension\bin\alc.exe]
2020-10-02T10:15:26.7613938Z ***
2020-10-02T10:15:26.7632411Z *** Working folder: C:\Agent\_work\28\s
2020-10-02T10:15:26.7642359Z ***
2020-10-02T10:15:26.7653310Z *** Copy Working folder to Docker Container: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:15:26.7664231Z *** Docker Working Folder: c:\Run\DevOps\
2020-10-02T10:15:26.7674365Z *** Copy from [C:\Agent\_work\28\s] to [c:\Run\DevOps\]
2020-10-02T10:15:26.7728488Z *** Source File setup completed
2020-10-02T10:15:27.1636190Z *** Target Project: \app\app.json
2020-10-02T10:15:27.1649374Z *** Check for app.json files: c:\Run\DevOps\
2020-10-02T10:15:27.2280081Z *** Multiple projects found:
2020-10-02T10:15:27.2360436Z    - C:\Run\DevOps\app
2020-10-02T10:15:27.2379092Z    - C:\Run\DevOps\debug
2020-10-02T10:15:27.2398493Z    - C:\Run\DevOps\test
2020-10-02T10:15:27.2443140Z *** Retrieving App-Info [\app\app.json]
2020-10-02T10:15:27.2474291Z *** Loading Json Object: [c:\Run\DevOps\app\app.json]
2020-10-02T10:15:27.2600697Z   * App.ID          = 12032b9c-8846-48c8-8e65-8fd863e3b78b
2020-10-02T10:15:27.2633506Z   * App.Name        = EV Customizations
2020-10-02T10:15:27.2667112Z   * App.Publisher   = Elbek & Vejrup A/S
2020-10-02T10:15:27.2706302Z   * App.Version     = 1604.0.0.0
2020-10-02T10:15:27.2740113Z   * App.Platform    = 16.0.0.0
2020-10-02T10:15:27.2801258Z   * App.Application = 
2020-10-02T10:15:27.3063032Z ***
2020-10-02T10:15:27.3620105Z *** Retaining original [Major] from version (?.0.0.0)
2020-10-02T10:15:27.3678326Z *** Retaining original [Minor] from version (0.?.0.0)
2020-10-02T10:15:27.3692728Z *** Retaining original [Build] from version (0.0.?.0)
2020-10-02T10:15:27.3769637Z *** Setting Managed App Version [c:\Run\DevOps\app\app.json] =>  1604.0.0.1793
2020-10-02T10:15:27.4996406Z ***
2020-10-02T10:15:27.6924501Z *** Working Direcotry: [c:\Run\DevOps\]
2020-10-02T10:15:27.7094070Z *** Target Project: [\app\app.json]
2020-10-02T10:15:27.7271661Z *** Project Directory: [c:\Run\DevOps\app]
2020-10-02T10:15:27.7343855Z *** VSCode Settings: [c:\Run\DevOps\app\.vscode\settings.json]
2020-10-02T10:15:27.7650666Z *** VSCode-Settings json found.
2020-10-02T10:15:27.7823235Z *** Loading Json Object: [c:\Run\DevOps\app\.vscode\settings.json]
2020-10-02T10:15:27.8418692Z *** Using Ruleset: [c:\Run\DevOps\app\custom.ruleset.json]
2020-10-02T10:15:27.8552266Z ***
2020-10-02T10:15:28.2946453Z *** Resolve Docker Credentials
2020-10-02T10:15:28.3095982Z *** Setup BC Username/Password from Container info
2020-10-02T10:15:28.3209273Z *** Download Symbols
2020-10-02T10:15:29.0721319Z *** Working Dir: c:\Run\DevOps\
2020-10-02T10:15:29.2765026Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\160\service]
2020-10-02T10:15:29.3805737Z *** PackageCache path created [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:29.3822218Z ***
2020-10-02T10:15:29.3951432Z *** Propagated Dependency: Microsoft - Application - 16.3.14085.14238
2020-10-02T10:15:29.4051550Z *** Propagated Dependency: K3 Business Technology Group - K3 Barcodes - 1.0.2.1
2020-10-02T10:15:29.4101164Z *** Propagated Dependency: K3 Business Technology Group - K3 Pebblestone Payments - 16.0.0.1
2020-10-02T10:15:29.4112431Z *** Propagated Dependency: K3 Business Technology Group - K3 Buying Groups - 1.2.0.1
2020-10-02T10:15:29.4140068Z *** Propagated Dependency: K3 Business Technology Group - K3 Pebblestone Delivery Plan - 16.0.1.0
2020-10-02T10:15:29.4164437Z *** Propagated Dependency: K3 Business Technology Group - K3 Pebblestone - 16.0.1.0
2020-10-02T10:15:29.4252388Z *** Propagated Dependency: K3 Business Technology Group - K3 Pebblestone Suite - 16.0.1.0
2020-10-02T10:15:29.4252885Z *** Propagated Dependency: Elbek & Vejrup A/S - EV Mail & Print - 1600.2.0.0
2020-10-02T10:15:29.4276847Z *** Propagated Dependency: Elbek & Vejrup A/S - EV Quality & Claim - 1600.1.3.0
2020-10-02T10:15:29.4282569Z *** Propagated Dependency: Dynalogic - JobManager - 1.22.10023.1
2020-10-02T10:15:29.4310780Z *** Download System-Symbols for [16.0.0.0]
2020-10-02T10:15:29.5030129Z *** Downloading NAV Symbols for [System v16.0.0.0]
2020-10-02T10:15:29.5051994Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=16.0.0.0&tenant=default]
2020-10-02T10:15:29.5468944Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:29.5503891Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=16.0.0.0&tenant=default
2020-10-02T10:15:30.2240473Z *** Content-Disposition: attachment; filename=Microsoft_System_16.0.14648.15420.app
2020-10-02T10:15:30.2658876Z *** Saving symbol file [Microsoft_System_16.0.14648.15420.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.2846010Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System_16.0.14648.15420.app].
2020-10-02T10:15:30.3736820Z ***
2020-10-02T10:15:30.3753759Z *** Check for Depency Apps 10
2020-10-02T10:15:30.3809197Z *** Download Application-Symbols for [Application v16.3.14085.14238]
2020-10-02T10:15:30.3833934Z *** Downloading NAV Symbols for [Application v16.3.14085.14238]
2020-10-02T10:15:30.3852208Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=16.3.14085.14238&tenant=default]
2020-10-02T10:15:30.3881359Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.3900633Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=16.3.14085.14238&tenant=default
2020-10-02T10:15:30.4120437Z *** Content-Disposition: attachment; filename=Microsoft_Application_16.4.14693.15445.app
2020-10-02T10:15:30.4164114Z *** Saving symbol file [Microsoft_Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.4209828Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_16.4.14693.15445.app].
2020-10-02T10:15:30.4452797Z *** Propagated Dependency: Microsoft - System Application - 16.4.0.0
2020-10-02T10:15:30.4518335Z *** Propagated Dependency: Microsoft - Base Application - 16.4.0.0
2020-10-02T10:15:30.4539258Z ***
2020-10-02T10:15:30.4564695Z *** Download Application-Symbols for [K3 Barcodes v1.0.2.1]
2020-10-02T10:15:30.4588003Z *** Downloading NAV Symbols for [K3 Barcodes v1.0.2.1]
2020-10-02T10:15:30.4604707Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Barcodes&versionText=1.0.2.1&tenant=default]
2020-10-02T10:15:30.4620056Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.4637167Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Barcodes&versionText=1.0.2.1&tenant=default
2020-10-02T10:15:30.4836168Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Barcodes_1.0.2.1.app"
2020-10-02T10:15:30.4879404Z *** Saving symbol file [K3 Business Technology Group_K3 Barcodes_1.0.2.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.4920476Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Barcodes_1.0.2.1.app].
2020-10-02T10:15:30.5103534Z *** Propagated Dependency: Microsoft - System Application - 1.0.0.0
2020-10-02T10:15:30.5127573Z *** Propagated Dependency: Microsoft - Base Application - 16.0.0.0
2020-10-02T10:15:30.5149646Z ***
2020-10-02T10:15:30.5168621Z *** Download Application-Symbols for [K3 Pebblestone Payments v16.0.0.1]
2020-10-02T10:15:30.5191441Z *** Downloading NAV Symbols for [K3 Pebblestone Payments v16.0.0.1]
2020-10-02T10:15:30.5205902Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Payments&versionText=16.0.0.1&tenant=default]
2020-10-02T10:15:30.5221481Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.5240896Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Payments&versionText=16.0.0.1&tenant=default
2020-10-02T10:15:30.6244532Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app"
2020-10-02T10:15:30.6290859Z *** Saving symbol file [K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.6321727Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app].
2020-10-02T10:15:30.6367802Z ***
2020-10-02T10:15:30.6390166Z *** Download Application-Symbols for [K3 Buying Groups v1.2.0.1]
2020-10-02T10:15:30.6414197Z *** Downloading NAV Symbols for [K3 Buying Groups v1.2.0.1]
2020-10-02T10:15:30.6434860Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Buying+Groups&versionText=1.2.0.1&tenant=default]
2020-10-02T10:15:30.6452921Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.6485702Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Buying+Groups&versionText=1.2.0.1&tenant=default
2020-10-02T10:15:30.6693971Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app"
2020-10-02T10:15:30.6735387Z *** Saving symbol file [K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.6808759Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app].
2020-10-02T10:15:30.6942459Z ***
2020-10-02T10:15:30.6965014Z *** Download Application-Symbols for [K3 Pebblestone Delivery Plan v16.0.1.0]
2020-10-02T10:15:30.6990843Z *** Downloading NAV Symbols for [K3 Pebblestone Delivery Plan v16.0.1.0]
2020-10-02T10:15:30.7008022Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Delivery+Plan&versionText=16.0.1.0&tenant=default]
2020-10-02T10:15:30.7022625Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.7040846Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Delivery+Plan&versionText=16.0.1.0&tenant=default
2020-10-02T10:15:30.7334046Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Pebblestone Delivery Plan_16.0.1.0.app"
2020-10-02T10:15:30.7402371Z *** Saving symbol file [K3 Business Technology Group_K3 Pebblestone Delivery Plan_16.0.1.0.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:30.7421656Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Pebblestone Delivery Plan_16.0.1.0.app].
2020-10-02T10:15:30.7483424Z *** Propagated Dependency: K3 Business Technology Group - K3 Pebblestone Payments - 16.0.0.0
2020-10-02T10:15:30.7535871Z ***
2020-10-02T10:15:30.7565283Z *** Download Application-Symbols for [K3 Pebblestone v16.0.1.0]
2020-10-02T10:15:30.7592652Z *** Downloading NAV Symbols for [K3 Pebblestone v16.0.1.0]
2020-10-02T10:15:30.7622093Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone&versionText=16.0.1.0&tenant=default]
2020-10-02T10:15:30.7638094Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:30.7659340Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone&versionText=16.0.1.0&tenant=default
2020-10-02T10:15:30.9781147Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Pebblestone_16.0.1.0.app"
2020-10-02T10:15:30.9831949Z *** Saving symbol file [K3 Business Technology Group_K3 Pebblestone_16.0.1.0.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:31.4560662Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Pebblestone_16.0.1.0.app].
2020-10-02T10:15:32.6513530Z *** Propagated Dependency: K3 Business Technology Group - K3 Barcodes - 1.0.2.0
2020-10-02T10:15:32.6538450Z *** Propagated Dependency: K3 Business Technology Group - K3 Buying Groups - 1.2.0.0
2020-10-02T10:15:32.6574633Z ***
2020-10-02T10:15:32.6604620Z *** Download Application-Symbols for [K3 Pebblestone Suite v16.0.1.0]
2020-10-02T10:15:32.6622009Z *** Downloading NAV Symbols for [K3 Pebblestone Suite v16.0.1.0]
2020-10-02T10:15:32.6640739Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Suite&versionText=16.0.1.0&tenant=default]
2020-10-02T10:15:32.6658356Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:32.7034886Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Suite&versionText=16.0.1.0&tenant=default
2020-10-02T10:15:32.7280110Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Pebblestone Suite_16.0.1.0.app"
2020-10-02T10:15:32.7319050Z *** Saving symbol file [K3 Business Technology Group_K3 Pebblestone Suite_16.0.1.0.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:32.7351198Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Pebblestone Suite_16.0.1.0.app].
2020-10-02T10:15:32.7411440Z ***
2020-10-02T10:15:32.7465546Z *** Download Application-Symbols for [EV Mail & Print v1600.2.0.0]
2020-10-02T10:15:32.7471733Z *** Downloading NAV Symbols for [EV Mail & Print v1600.2.0.0]
2020-10-02T10:15:32.7480309Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Elbek+%26+Vejrup+A%2fS&appName=EV+Mail+%26+Print&versionText=1600.2.0.0&tenant=default]
2020-10-02T10:15:32.7489913Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:32.7511713Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Elbek+%26+Vejrup+A%2fS&appName=EV+Mail+%26+Print&versionText=1600.2.0.0&tenant=default
2020-10-02T10:15:32.7798038Z *** Content-Disposition: attachment; filename="Elbek & Vejrup A_S_EV Mail & Print_1600.2.0.0.app"
2020-10-02T10:15:32.7833438Z *** Saving symbol file [Elbek & Vejrup A_S_EV Mail & Print_1600.2.0.0.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:32.7879830Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Elbek & Vejrup A_S_EV Mail & Print_1600.2.0.0.app].
2020-10-02T10:15:32.7897647Z ***
2020-10-02T10:15:32.7920318Z *** Download Application-Symbols for [EV Quality & Claim v1600.1.3.0]
2020-10-02T10:15:32.7939940Z *** Downloading NAV Symbols for [EV Quality & Claim v1600.1.3.0]
2020-10-02T10:15:32.7954549Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Elbek+%26+Vejrup+A%2fS&appName=EV+Quality+%26+Claim&versionText=1600.1.3.0&tenant=default]
2020-10-02T10:15:32.7971039Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:32.7987598Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Elbek+%26+Vejrup+A%2fS&appName=EV+Quality+%26+Claim&versionText=1600.1.3.0&tenant=default
2020-10-02T10:15:32.8195421Z *** Content-Disposition: attachment; filename="Elbek & Vejrup A_S_EV Quality & Claim_1600.1.3.0.app"
2020-10-02T10:15:32.8234097Z *** Saving symbol file [Elbek & Vejrup A_S_EV Quality & Claim_1600.1.3.0.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:32.8265261Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Elbek & Vejrup A_S_EV Quality & Claim_1600.1.3.0.app].
2020-10-02T10:15:32.8364412Z ***
2020-10-02T10:15:32.8370545Z *** Download Application-Symbols for [JobManager v1.22.10023.1]
2020-10-02T10:15:32.8378030Z *** Downloading NAV Symbols for [JobManager v1.22.10023.1]
2020-10-02T10:15:32.8385449Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Dynalogic&appName=JobManager&versionText=1.22.10023.1&tenant=default]
2020-10-02T10:15:32.8402416Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:32.8417622Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Dynalogic&appName=JobManager&versionText=1.22.10023.1&tenant=default
2020-10-02T10:15:32.8763439Z *** Content-Disposition: attachment; filename=Dynalogic_JobManager_1.22.10023.1.app
2020-10-02T10:15:32.8797351Z *** Saving symbol file [Dynalogic_JobManager_1.22.10023.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:32.8945785Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Dynalogic_JobManager_1.22.10023.1.app].
2020-10-02T10:15:32.9844510Z *** Propagated Dependency: Microsoft - System Application - 16.0.0.0
2020-10-02T10:15:32.9874492Z *** Propagated Dependency: Microsoft - Application - 16.0.0.0
2020-10-02T10:15:32.9901708Z ***
2020-10-02T10:15:32.9971976Z *** Download Application-Symbols for [System Application v16.4.0.0]
2020-10-02T10:15:33.0211016Z *** Downloading NAV Symbols for [System Application v16.4.0.0]
2020-10-02T10:15:33.0453607Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=16.4.0.0&tenant=default]
2020-10-02T10:15:33.0650951Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.0669857Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=16.4.0.0&tenant=default
2020-10-02T10:15:33.1276497Z *** Content-Disposition: attachment; filename="Microsoft_System Application_16.4.14693.15445.app"
2020-10-02T10:15:33.1621026Z *** Saving symbol file [Microsoft_System Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.1660386Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application_16.4.14693.15445.app].
2020-10-02T10:15:33.1691459Z ***
2020-10-02T10:15:33.1711727Z *** Download Application-Symbols for [Base Application v16.4.0.0]
2020-10-02T10:15:33.1732561Z *** Downloading NAV Symbols for [Base Application v16.4.0.0]
2020-10-02T10:15:33.1747189Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=16.4.0.0&tenant=default]
2020-10-02T10:15:33.1762552Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.1786948Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=16.4.0.0&tenant=default
2020-10-02T10:15:33.2811377Z *** Content-Disposition: attachment; filename="Microsoft_Base Application_16.4.14693.15445.app"
2020-10-02T10:15:33.2857169Z *** Saving symbol file [Microsoft_Base Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.3727528Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Base Application_16.4.14693.15445.app].
2020-10-02T10:15:33.5171959Z ***
2020-10-02T10:15:33.5199343Z *** Download Application-Symbols for [System Application v1.0.0.0]
2020-10-02T10:15:33.5218997Z *** Downloading NAV Symbols for [System Application v1.0.0.0]
2020-10-02T10:15:33.5236135Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=1.0.0.0&tenant=default]
2020-10-02T10:15:33.5254374Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.5276167Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=1.0.0.0&tenant=default
2020-10-02T10:15:33.5687666Z *** Content-Disposition: attachment; filename="Microsoft_System Application_16.4.14693.15445.app"
2020-10-02T10:15:33.5738753Z *** Saving symbol file [Microsoft_System Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.5768753Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application_16.4.14693.15445.app].
2020-10-02T10:15:33.5796431Z ***
2020-10-02T10:15:33.5825284Z *** Download Application-Symbols for [Base Application v16.0.0.0]
2020-10-02T10:15:33.5850117Z *** Downloading NAV Symbols for [Base Application v16.0.0.0]
2020-10-02T10:15:33.5958761Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=16.0.0.0&tenant=default]
2020-10-02T10:15:33.5978719Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.5995303Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=16.0.0.0&tenant=default
2020-10-02T10:15:33.6159886Z *** Content-Disposition: attachment; filename="Microsoft_Base Application_16.4.14693.15445.app"
2020-10-02T10:15:33.6207223Z *** Saving symbol file [Microsoft_Base Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.6839907Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Base Application_16.4.14693.15445.app].
2020-10-02T10:15:33.8143213Z ***
2020-10-02T10:15:33.8166141Z *** Download Application-Symbols for [K3 Pebblestone Payments v16.0.0.0]
2020-10-02T10:15:33.8186719Z *** Downloading NAV Symbols for [K3 Pebblestone Payments v16.0.0.0]
2020-10-02T10:15:33.8202499Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Payments&versionText=16.0.0.0&tenant=default]
2020-10-02T10:15:33.8219053Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.8236563Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Pebblestone+Payments&versionText=16.0.0.0&tenant=default
2020-10-02T10:15:33.8463272Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app"
2020-10-02T10:15:33.8469253Z *** Saving symbol file [K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.8475592Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Pebblestone Payments_16.0.0.1.app].
2020-10-02T10:15:33.8503353Z ***
2020-10-02T10:15:33.8530362Z *** Download Application-Symbols for [K3 Barcodes v1.0.2.0]
2020-10-02T10:15:33.8555856Z *** Downloading NAV Symbols for [K3 Barcodes v1.0.2.0]
2020-10-02T10:15:33.8574955Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Barcodes&versionText=1.0.2.0&tenant=default]
2020-10-02T10:15:33.8593252Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.8610801Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Barcodes&versionText=1.0.2.0&tenant=default
2020-10-02T10:15:33.8759232Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Barcodes_1.0.2.1.app"
2020-10-02T10:15:33.8798766Z *** Saving symbol file [K3 Business Technology Group_K3 Barcodes_1.0.2.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.8828525Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Barcodes_1.0.2.1.app].
2020-10-02T10:15:33.8910610Z ***
2020-10-02T10:15:33.8937689Z *** Download Application-Symbols for [K3 Buying Groups v1.2.0.0]
2020-10-02T10:15:33.8957819Z *** Downloading NAV Symbols for [K3 Buying Groups v1.2.0.0]
2020-10-02T10:15:33.9617434Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Buying+Groups&versionText=1.2.0.0&tenant=default]
2020-10-02T10:15:33.9631917Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:33.9649109Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=K3+Business+Technology+Group&appName=K3+Buying+Groups&versionText=1.2.0.0&tenant=default
2020-10-02T10:15:33.9796804Z *** Content-Disposition: attachment; filename="K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app"
2020-10-02T10:15:33.9831445Z *** Saving symbol file [K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:33.9864293Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\K3 Business Technology Group_K3 Buying Groups_1.2.0.1.app].
2020-10-02T10:15:33.9993119Z ***
2020-10-02T10:15:34.0011618Z *** Download Application-Symbols for [System Application v16.0.0.0]
2020-10-02T10:15:34.0030856Z *** Downloading NAV Symbols for [System Application v16.0.0.0]
2020-10-02T10:15:34.0042358Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=16.0.0.0&tenant=default]
2020-10-02T10:15:34.0054312Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:34.0065415Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=16.0.0.0&tenant=default
2020-10-02T10:15:34.0483370Z *** Content-Disposition: attachment; filename="Microsoft_System Application_16.4.14693.15445.app"
2020-10-02T10:15:34.0516859Z *** Saving symbol file [Microsoft_System Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:34.0538765Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application_16.4.14693.15445.app].
2020-10-02T10:15:34.0559817Z ***
2020-10-02T10:15:34.0583311Z *** Download Application-Symbols for [Application v16.0.0.0]
2020-10-02T10:15:34.0605993Z *** Downloading NAV Symbols for [Application v16.0.0.0]
2020-10-02T10:15:34.0621942Z *** Downloading NAV Symbols from [https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=16.0.0.0&tenant=default]
2020-10-02T10:15:34.0637264Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2020-10-02T10:15:34.0650829Z ##[command]Invoke-RestMethod -Method Get -Uri https://791ed7fab92c:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=16.0.0.0&tenant=default
2020-10-02T10:15:34.0792811Z *** Content-Disposition: attachment; filename=Microsoft_Application_16.4.14693.15445.app
2020-10-02T10:15:34.0827979Z *** Saving symbol file [Microsoft_Application_16.4.14693.15445.app] to [c:\Run\DevOps\PackageCache]
2020-10-02T10:15:34.0850168Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_16.4.14693.15445.app].
2020-10-02T10:15:34.0884727Z ***
2020-10-02T10:15:34.4138210Z *** Starting AL Compiler...
2020-10-02T10:15:34.4153515Z *** App.Name         = EV Customizations
2020-10-02T10:15:34.4170346Z *** App.Publisher    = Elbek & Vejrup A/S
2020-10-02T10:15:34.4185082Z *** App.Compiler Path= C:\Run\Microsoft.al\al-ALLanguage\extension\bin\alc.exe
2020-10-02T10:15:34.4259151Z *** Checking for Assemblies in App
2020-10-02T10:15:34.4682780Z *** Add Windows Assembly Path [C:\Windows\assembly]
2020-10-02T10:15:34.4721731Z *** Modified Name from [Elbek & Vejrup A/S_EV Customizations_1604.0.0.1793_APP.app] to [Elbek & Vejrup A_S_EV Customizations_1604.0.0.1793_APP.app]
2020-10-02T10:15:34.4728592Z *** Searching CodeCop: CodeCop
2020-10-02T10:15:34.4887852Z *** Codecop found: C:\Run\Microsoft.al\al-ALLanguage\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll
2020-10-02T10:15:34.5266813Z *** Searching CodeCop: UICop
2020-10-02T10:15:34.5267259Z *** Codecop found: C:\Run\Microsoft.al\al-ALLanguage\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll
2020-10-02T10:15:34.5636178Z ##[command]& C:\Run\Microsoft.al\al-ALLanguage\extension\bin\alc.exe /packagecachepath:"c:\Run\DevOps\PackageCache" /project:"c:\Run\DevOps\app" /out:"c:\Run\DevOps\Elbek & Vejrup A_S_EV Customizations_1604.0.0.1793_APP.app" /fullpaths /ruleset:"c:\Run\DevOps\app\custom.ruleset.json" /analyzer:"C:\Run\Microsoft.al\al-ALLanguage\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll","C:\Run\Microsoft.al\al-ALLanguage\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll" /assemblyprobingpaths:C:\Windows\assembly
2020-10-02T10:15:38.5297777Z *** AL Compiler Exit Code: 1
2020-10-02T10:15:38.9194084Z ##[error]Could not load file or assembly 'Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
2020-10-02T10:15:39.0147512Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:15:39.0148879Z Build '1793' has following tags now: AL.Compiler.ALLanguage, App.EV Mail & Print.1600.2.0.0, App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420, App.EV Quality & Claim.1600.1.3.0
2020-10-02T10:15:39.0149971Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:15:39.0151378Z ##[section]Async Command Start: Update Build Number
2020-10-02T10:15:39.0151861Z Update build number to 1604.0.0.1793 for build 1793
2020-10-02T10:15:39.0152179Z ##[section]Async Command End: Update Build Number
2020-10-02T10:15:39.0153047Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:15:39.0154531Z Build '1793' has following tags now: AL.Analyzer.CodeCop, AL.Compiler.ALLanguage, App.EV Mail & Print.1600.2.0.0, App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420, App.EV Quality & Claim.1600.1.3.0
2020-10-02T10:15:39.0155590Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:15:39.0156378Z ##[section]Async Command Start: Add Build Tag
2020-10-02T10:15:39.0157597Z Build '1793' has following tags now: AL.Analyzer.CodeCop, AL.Analyzer.UICop, AL.Compiler.ALLanguage, App.EV Mail & Print.1600.2.0.0, App.K3 Pebblestone Payments.16.0.0.1, App.K3 Buying Groups.1.2.0.1, App.K3 Barcodes.1.0.2.1, App.K3 Pebblestone Delivery Plan.16.0.1.0, App.K3 Pebblestone.16.0.1.0, App.K3 Pebblestone Suite.16.0.1.0, App.JobManager.1.22.10023.1, myimage-onprem-16.4.14693.15445-dk-10.0.17763.1457-ltsc2019, BC.Version.16.4.14693.15445, BC.Platform.16.0.14648.15420, App.EV Quality & Claim.1600.1.3.0
2020-10-02T10:15:39.0158780Z ##[section]Async Command End: Add Build Tag
2020-10-02T10:15:39.0160199Z ##[section]Finishing: ALOps Compile App
2020-10-02T10:15:39.0749147Z ##[section]Starting: ALOps Remove Docker Container
2020-10-02T10:15:39.1247547Z ==============================================================================
2020-10-02T10:15:39.1248168Z Task         : ALOps Docker Remove
2020-10-02T10:15:39.1248455Z Description  : Remove a Business Central container
2020-10-02T10:15:39.1248727Z Version      : 1.434.1775
2020-10-02T10:15:39.1248946Z Author       : Hodor
2020-10-02T10:15:39.1249238Z Help         : Remove Business Central docker container.
2020-10-02T10:15:39.1249580Z ==============================================================================
2020-10-02T10:15:41.7137730Z *** Validate configuration
2020-10-02T10:15:42.4499405Z *** For documentation, please visit   : https://www.alops.be/documentation
2020-10-02T10:15:42.4502620Z 
2020-10-02T10:15:43.0297278Z *** ALOps License:
2020-10-02T10:15:43.0309027Z  
2020-10-02T10:15:43.0334632Z   * Licensed To: Elbek & Vejrup A/S
2020-10-02T10:15:43.0338618Z 
2020-10-02T10:15:43.4734723Z *** Importing required PS-Functions
2020-10-02T10:15:44.7161905Z *** >>> Print Container Logs: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35 >>>
2020-10-02T10:15:44.9608263Z *** >>> Initializing...
2020-10-02T10:15:44.9618084Z *** >>> Starting Container
2020-10-02T10:15:44.9627983Z *** >>> Hostname is 791ed7fab92c
2020-10-02T10:15:44.9637755Z *** >>> PublicDnsName is 791ed7fab92c
2020-10-02T10:15:44.9650589Z *** >>> Using NavUserPassword Authentication
2020-10-02T10:15:44.9661253Z *** >>> Starting Local SQL Server
2020-10-02T10:15:44.9676685Z *** >>> Starting Internet Information Server
2020-10-02T10:15:44.9697861Z *** >>> Creating Self Signed Certificate
2020-10-02T10:15:44.9714450Z *** >>> Self Signed Certificate Thumbprint 184F60A3BE583538C5178A81DE61B5ED00FB60BD
2020-10-02T10:15:44.9725233Z *** >>> Modifying Service Tier Config File with Instance Specific Settings
2020-10-02T10:15:44.9736027Z *** >>> Starting Service Tier
2020-10-02T10:15:44.9747256Z *** >>> Registering event sources
2020-10-02T10:15:44.9758129Z *** >>> Creating DotNetCore Web Server Instance
2020-10-02T10:15:44.9769313Z *** >>> Creating http download site
2020-10-02T10:15:44.9780319Z *** >>> Setting SA Password and enabling SA
2020-10-02T10:15:44.9790280Z *** >>> Creating admin as SQL User and add to sysadmin
2020-10-02T10:15:44.9801414Z *** >>> Creating SUPER user
2020-10-02T10:15:44.9814874Z *** >>> Container IP Address: 172.31.153.65
2020-10-02T10:15:44.9825947Z *** >>> Container Hostname  : 791ed7fab92c
2020-10-02T10:15:44.9836618Z *** >>> Container Dns Name  : 791ed7fab92c
2020-10-02T10:15:44.9848185Z *** >>> Web Client          : https://791ed7fab92c/BC/
2020-10-02T10:15:44.9860125Z *** >>> Admin Username      : admin
2020-10-02T10:15:44.9870538Z *** >>> Admin Password      : Xuro9463
2020-10-02T10:15:44.9882406Z *** >>> Dev. Server         : https://791ed7fab92c
2020-10-02T10:15:44.9893401Z *** >>> Dev. ServerInstance : BC
2020-10-02T10:15:44.9905175Z *** >>> 
2020-10-02T10:15:44.9915652Z *** >>> Files:
2020-10-02T10:15:44.9925916Z *** >>> http://791ed7fab92c:8080/ALLanguage.vsix
2020-10-02T10:15:44.9937429Z *** >>> http://791ed7fab92c:8080/certificate.cer
2020-10-02T10:15:44.9947168Z *** >>> 
2020-10-02T10:15:44.9956891Z *** >>> Initialization took 104 seconds
2020-10-02T10:15:44.9967094Z *** >>> Ready for connections!
2020-10-02T10:15:44.9977460Z *** >>> Starting EventLog Monitor
2020-10-02T10:15:44.9987316Z *** >>> Monitoring EventSources from EventLog[Application]:
2020-10-02T10:15:44.9997538Z *** >>> - MicrosoftDynamicsNAVClientClientService
2020-10-02T10:15:45.0008547Z *** >>> - MicrosoftDynamicsNAVClientWebClient
2020-10-02T10:15:45.0019170Z *** >>> - MicrosoftDynamicsNavServer$BC
2020-10-02T10:15:45.0029228Z *** >>> - MSSQL$SQLEXPRESS
2020-10-02T10:15:45.0041004Z *** >>> 
2020-10-02T10:15:45.0050606Z *** >>> TimeGenerated : 10/02/2020 12:13:35
2020-10-02T10:15:45.0062609Z *** >>> EventSource: MicrosoftDynamicsNavServer$BC
2020-10-02T10:15:45.0072165Z *** >>> EntryType : Warning
2020-10-02T10:15:45.0083775Z *** >>> Message : 
2020-10-02T10:15:45.0095170Z *** >>> Server instance: BC
2020-10-02T10:15:45.0105855Z *** >>> Category: Sql
2020-10-02T10:15:45.0116270Z *** >>> ClientSessionId: b93c4bea-1ff1-41cc-884d-988016fbfcda
2020-10-02T10:15:45.0125941Z *** >>> ClientActivityId: 3a8d9e4a-9324-452b-aa92-7c2992e67937
2020-10-02T10:15:45.0136429Z *** >>> ServerSessionUniqueId: 2e5305d4-754d-48a9-bd9c-bb59268a2a22
2020-10-02T10:15:45.0146848Z *** >>> ServerActivityId: b0d0e5f5-77ac-41a8-bc14-ca658ac45627
2020-10-02T10:15:45.0157836Z *** >>> EventTime: 10/02/2020 10:13:35
2020-10-02T10:15:45.0168327Z *** >>> Message Action completed successfully, but it took longer than the given threshold.
2020-10-02T10:15:45.0179827Z *** >>>   Execution time: 1895 ms
2020-10-02T10:15:45.0190121Z *** >>>   Threshold: 750 ms
2020-10-02T10:15:45.0202098Z *** >>>   Message: Long running SQL statement
2020-10-02T10:15:45.0216652Z *** >>>   Task ID: 2
2020-10-02T10:15:45.0227573Z *** >>>   Connection ID: 2
2020-10-02T10:15:45.0238840Z *** >>>   SQL server session ID: 52
2020-10-02T10:15:45.0249818Z *** >>>   Client Type: ManagementClient
2020-10-02T10:15:45.0261293Z *** >>>   Database Name: CRONUS
2020-10-02T10:15:45.0276075Z *** >>>   Current Company Name: 
2020-10-02T10:15:45.0284264Z *** >>>   Statement: INSERT INTO [SQLDATABASE].[dbo].[Published Application] ([Runtime Package ID], [Package ID], [ID], [Name], [Publisher], [Version Major], [Version Minor], [Version Build], [Version Revision], [Brief], [Description], [Privacy Statement], [EULA], [Url], [Help], [Logo], [Screenshots], [Blob], [Package Type], [Symbols], [Content Hash], [Tenant ID], [Show My Code], [Published As], [Package Hash], [Application Insights Key]) VALUES (@0, @1, @2, @3, @4, @5, @6, @7, @8, @9, @10, @11, @12, @13, @14, @15, @16, @17, @18, @19, @20, @21, @22, @23, @24, @25)
2020-10-02T10:15:45.0293505Z *** >>>   
2020-10-02T10:15:45.0306094Z *** >>> ProcessId: 2672
2020-10-02T10:15:45.0317295Z *** >>> Tag: 000007L
2020-10-02T10:15:45.0329197Z *** >>> ThreadId: 48
2020-10-02T10:15:45.0341893Z *** >>> CounterInformation: 
2020-10-02T10:15:45.0353369Z *** >>> CustomParameters: {
2020-10-02T10:15:45.0364224Z *** >>> }
2020-10-02T10:15:45.0378320Z *** >>> GatewayCorrelationId: e2853978-133f-4147-b356-57c3ba19c270
2020-10-02T10:15:45.0394648Z *** >>> 
2020-10-02T10:15:45.0407239Z *** <<< Print Container Logs: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35 <<<
2020-10-02T10:15:45.0418682Z *** Stop Docker container: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:15:48.1434346Z *** Remove Docker container: 791ed7fab92c2e817b141435c96fcf9f74d0b2c71c4328e64b67fb1921a9aa35
2020-10-02T10:15:48.3365605Z *** Docker Remove OK.
2020-10-02T10:15:48.3451389Z *** Cleanup VSTS Environment: True
2020-10-02T10:15:50.7975265Z ##[section]Finishing: ALOps Remove Docker Container
2020-10-02T10:15:50.8124893Z ##[section]Starting: Checkout ElbekVejrup/dilling-underwear@develop to s
2020-10-02T10:15:50.8245829Z ==============================================================================
2020-10-02T10:15:50.8246304Z Task         : Get sources
2020-10-02T10:15:50.8246698Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2020-10-02T10:15:50.8247040Z Version      : 1.0.0
2020-10-02T10:15:50.8247306Z Author       : Microsoft
2020-10-02T10:15:50.8247655Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2020-10-02T10:15:50.8248096Z ==============================================================================
2020-10-02T10:15:51.3309076Z Cleaning any cached credential from repository: ElbekVejrup/dilling-underwear (Bitbucket)
2020-10-02T10:15:51.3416684Z ##[section]Finishing: Checkout ElbekVejrup/dilling-underwear@develop to s
2020-10-02T10:15:51.3579026Z ##[section]Starting: Finalize Job
2020-10-02T10:15:51.3612728Z Cleaning up task key
2020-10-02T10:15:51.3614308Z Start cleaning up orphan processes.
2020-10-02T10:15:51.3695419Z ##[section]Finishing: Finalize Job
2020-10-02T10:15:51.3829197Z ##[section]Finishing: Job

Additional context We have other pipelines with same setup that does not have the same issue.

Version: Business Central 16 CU4 DK

In VS Code 1.49.2 with AL Language v6.0.344420 the code from the same branch builds and publishes to a Docker Container with no error (and it is also possible to download symbols as well).

The build has failed the last four times, Each fail in the same step but in different places in the step and with different error messages. The Raw log above is from one of these fails. Let me know if you want logs from all four cases. The screenshots below show these four errors

Any idea on how to fix this issue?

Screen shots image image image image

baftos commented 4 years ago

Update: We are now experiencing same issue on (at least one other Pipeline - also BC16)

waldo1001 commented 4 years ago

We're not changing anything at this moment, so I strongly advice you to look at your build server, windows updates, network issues, .. . May be just restart that server that hosts the build agent, just to rule that out?

Since it errors out on different places, I really suspect it to be something on server-level..

AdminHodor commented 4 years ago

Very likely this is cause by issues with the build server, the default dotnet assemblies not being found is a big indicator of that. Please also check if the build server has a Virus-Scanner enabled, we noticed some virus-scanner being very aggressive on docker-processes.

baftos commented 4 years ago

Thank you for the suggestions. I will ask our IT department to check the areas mentioned above

baftos commented 4 years ago

It seems that an additional restart of the server fixed the issues (the server had been restarted not so long before the errors appeared).

I will close this issue.