microsoft / navcontainerhelper

Official Microsoft repository for BcContainerHelper, a PowerShell module, which makes it easier to work with Business Central Containers on Docker.
MIT License
379 stars 243 forks source link

Run-ALValidation: File not found error when running AppSourceCop if app file has spaces in file name #1668

Closed spapke closed 3 years ago

spapke commented 3 years ago

PLEASE DO NOT INCLUDE ANY PASSWORDS OR TOKENS IN YOUR ISSUE!!!

When using the Run-ALValidation command, AppSourceCop will error with "file not found" if the .app file being validated has spaces in the file name. Please note that this was observed using the command in a DevOps pipeline.

Param(
    [Parameter(Mandatory=$true)]
    [string] $buildProjectFolder,
    [Parameter(Mandatory=$true)]
    [string] $buildArtifactFolder
)

$baseapp = "$($env:REPONAME)" -match 'Base'
$bcLicenseFile = "$($env:AGENT_WORKFOLDER)\builddependencies\<LicenseFile>.flf"
$prevRelease = ""
$baseRelease = ""
$app = ""

if (-not $baseapp) {

    Get-ChildItem -Path "$($env:AGENT_WORKFOLDER)\builddependencies\Releases" -Recurse -Include *.app | ForEach-Object {    
        if ($_.Name -notmatch 'runtime') {
            if ($_.Name -match '[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,4}') {
                if ([version]$v -lt [version]$matches[0]) {
                    $v = $matches[0]
                    $prevRelease = $_.FullName
                }
            }
        }
    }

        (Get-ChildItem -Path "$env:BUILD_SOURCESDIRECTORY" -Include *.app -Recurse) | ForEach-Object {
            if ($_.Name -notmatch 'runtime') {
                if ($_.Name -match 'Base') {
                    $baseRelease = $_.FullName
                }
            }
        }

    Get-ChildItem -Path (Join-Path $buildArtifactFolder $buildProjectFolder) | ForEach-Object {
        $app = $_.FullName
    }
        write-host "Running AL Validation for $app against previous version $prevRelease and base version $baseRelease..."

        Run-AlValidation `
          -licenseFile "$bcLicenseFile" `
          -installApps @("$baseRelease") `
          -previousApps @("$prevRelease") `
          -apps @("$app") `
          -affixes @("-CL-") `
          -countries @("us") `
          -supportedcountries @("us") `
          -skipVerification
}

2021-02-01T17:15:38.0381064Z ##[section]Starting: Run AL Validation
2021-02-01T17:15:38.0531578Z ==============================================================================
2021-02-01T17:15:38.0532494Z Task         : PowerShell
2021-02-01T17:15:38.0533185Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-02-01T17:15:38.0533788Z Version      : 2.180.1
2021-02-01T17:15:38.0534487Z Author       : Microsoft Corporation
2021-02-01T17:15:38.0535200Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-02-01T17:15:38.0536057Z ==============================================================================
2021-02-01T17:15:39.5615658Z Generating script.
2021-02-01T17:15:39.5686079Z Formatted command: . 'C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\s\BuildTemplates\scripts\Run-AlValidation.ps1' -buildProjectFolder "CLPayments_BC15" -buildArtifactFolder "C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a"
2021-02-01T17:15:39.6210878Z ========================== Starting Command Output ===========================
2021-02-01T17:15:39.6501248Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\_temp\a66bc8dd-e82b-4c41-a9e1-eea33e44732e.ps1'"
2021-02-01T17:15:40.1698242Z Running AL Validation for C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app against previous version C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app and base version C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\s\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app...
2021-02-01T17:15:40.4675776Z BcContainerHelper version 2.0.4
2021-02-01T17:15:43.2935177Z   _____                               _                
2021-02-01T17:15:43.2936874Z  |  __ \                             | |               
2021-02-01T17:15:43.2937936Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2021-02-01T17:15:43.2938818Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2021-02-01T17:15:43.2939665Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2021-02-01T17:15:43.2940625Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2021-02-01T17:15:43.2941406Z 
2021-02-01T17:15:43.2969410Z Container name               bcserver
2021-02-01T17:15:43.2988567Z Image name                   
2021-02-01T17:15:43.3166394Z Credential                   ***/Gopy4567
2021-02-01T17:15:43.3740742Z License file                 Specified
2021-02-01T17:15:43.3768403Z MemoryLimit                  8G
2021-02-01T17:15:43.3787190Z validateVersion              
2021-02-01T17:15:43.3817002Z validateCurrent              False
2021-02-01T17:15:43.3840364Z validateNextMinor            False
2021-02-01T17:15:43.3869583Z validateNextMajor            False
2021-02-01T17:15:43.3894960Z SasToken                     Not Specified
2021-02-01T17:15:43.3947183Z countries                    us,ca
2021-02-01T17:15:43.3971702Z validateCountries            us,ca
2021-02-01T17:15:43.3994620Z affixes                      -CL-
2021-02-01T17:15:43.4017431Z supportedCountries           us,ca
2021-02-01T17:15:43.4036229Z vsixFile                     
2021-02-01T17:15:43.4048279Z Install Apps
2021-02-01T17:15:43.4157307Z - C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\s\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app
2021-02-01T17:15:43.4169185Z Previous Apps
2021-02-01T17:15:43.4206370Z - C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T17:15:43.4218193Z Apps
2021-02-01T17:15:43.4255948Z - C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:15:43.4384769Z   _____       _                      _                         _   _  __           _       
2021-02-01T17:15:43.4386170Z  |  __ \     | |                    (_)                       | | (_)/ _|         | |      
2021-02-01T17:15:43.4387365Z  | |  | | ___| |_ ___ _ __ _ __ ___  _ _ __   ___    __ _ _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-02-01T17:15:43.4388569Z  | |  | |/ _ \ __/ _ \ '__| '_ ` _ \| | '_ \ / _ \  / _` | '__| __| |  _/ _` |/ __| __/ __|
2021-02-01T17:15:43.4389823Z  | |__| |  __/ |_  __/ |  | | | | | | | | | |  __/ | (_| | |  | |_| | || (_| | (__| |_\__ \
2021-02-01T17:15:43.4390883Z  |_____/ \___|\__\___|_|  |_| |_| |_|_|_| |_|\___|  \__,_|_|   \__|_|_| \__,_|\___|\__|___/
2021-02-01T17:15:43.4392107Z                                                                                            
2021-02-01T17:16:01.1973430Z Found https://bcartifacts.azureedge.net/sandbox/17.3.20469.21609/us
2021-02-01T17:16:18.7236920Z Found https://bcartifacts.azureedge.net/sandbox/17.3.20469.21609/ca
2021-02-01T17:16:18.9203096Z Using https://bcartifacts.azureedge.net/sandbox/17.3.20469.21609/us
2021-02-01T17:16:18.9213642Z   _____       _                      _       _                   _                           _                       
2021-02-01T17:16:18.9215259Z  |  __ \     | |                    (_)     (_)                 | |                         | |                      
2021-02-01T17:16:18.9216553Z  | |  | | ___| |_ ___ _ __ _ __ ___  _ _ __  _ _ __   __ _    __| | ___ _ __   ___ _ __   __| | ___ _ __   ___ _   _ 
2021-02-01T17:16:18.9217764Z  | |  | |/ _ \ __/ _ \ '__| '_ ` _ \| | '_ \| | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '_ \ / _` |/ _ \ '_ \ / __| | | |
2021-02-01T17:16:18.9219005Z  | |__| |  __/ |_  __/ |  | | | | | | | | | | | | | | (_| | | (_| |  __/ |_) |  __/ | | | (_| |  __/ | | | (__| |_| |
2021-02-01T17:16:18.9220210Z  |_____/ \___|\__\___|_|  |_| |_| |_|_|_| |_|_|_| |_|\__, |  \__,_|\___| .__/ \___|_| |_|\__,_|\___|_| |_|\___|\__, |
2021-02-01T17:16:18.9221435Z                                                       __/ |            | |                                      __/ |
2021-02-01T17:16:18.9222621Z                                                      |___/             |_|                                     |___/ 
2021-02-01T17:16:18.9662298Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\s\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.appC:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:16:18.9784001Z Validating against Current Version (17.3)
2021-02-01T17:16:18.9809566Z Additionally validating against application dependency (17.0)
2021-02-01T17:16:18.9935108Z 
2021-02-01T17:16:18.9936531Z   _____       _ _ _                                          _        _                            
2021-02-01T17:16:18.9937928Z  |  __ \     | | (_)                                        (_)      (_)                           
2021-02-01T17:16:18.9938931Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2021-02-01T17:16:18.9940279Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2021-02-01T17:16:18.9941516Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2021-02-01T17:16:18.9943548Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2021-02-01T17:16:18.9944694Z                            __/ |   __/ |                                                 __/ |     
2021-02-01T17:16:18.9945750Z                           |___/   |___/                                                 |___/      
2021-02-01T17:16:18.9946469Z 
2021-02-01T17:16:18.9954599Z Pulling mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:16:19.6789710Z 
2021-02-01T17:16:19.6795569Z Pulling generic image took 1 seconds
2021-02-01T17:16:19.7292696Z 
2021-02-01T17:16:19.7294433Z    _____                _   _                               _        _                 
2021-02-01T17:16:19.7295772Z   / ____|              | | (_)                             | |      (_)                
2021-02-01T17:16:19.7296822Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T17:16:19.7297927Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T17:16:19.7298983Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T17:16:19.7300017Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T17:16:19.7301150Z                                      __/ |                                             
2021-02-01T17:16:19.7302112Z                                     |___/                                              
2021-02-01T17:16:19.7302749Z 
2021-02-01T17:16:19.7427009Z Creating container for country us
2021-02-01T17:16:20.1631897Z BcContainerHelper is version 2.0.4
2021-02-01T17:16:20.1644164Z BcContainerHelper is running as ***istrator
2021-02-01T17:16:20.1672166Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2021-02-01T17:16:20.4853281Z Docker Client Version is 20.10.2
2021-02-01T17:16:20.4884996Z Docker Server Version is 20.10.2
2021-02-01T17:16:21.2646316Z Fetching all docker images
2021-02-01T17:16:22.0171932Z Using image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:16:22.3712904Z Creating Container bcserver
2021-02-01T17:16:22.3729122Z Version: 17.3.20469.21609-US
2021-02-01T17:16:22.3748499Z Style: sandbox
2021-02-01T17:16:22.3766522Z Multitenant: No
2021-02-01T17:16:22.3803294Z Platform: 17.0.20458.21528
2021-02-01T17:16:22.3839671Z Generic Tag: 1.0.1.3
2021-02-01T17:16:22.3896077Z Container OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:16:22.3911693Z Host OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:16:22.3940966Z Using process isolation
2021-02-01T17:16:22.3992568Z Using locale en-US
2021-02-01T17:16:22.4024350Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-02-01T17:16:22.4133035Z Using license file C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\ChargeLogicBC16.flf
2021-02-01T17:16:22.4615342Z Additional Parameters:
2021-02-01T17:16:22.4655932Z --env customNavSettings=EnableTaskScheduler=True
2021-02-01T17:16:22.4670666Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my:
2021-02-01T17:16:22.4741139Z - AdditionalOutput.ps1
2021-02-01T17:16:22.4756566Z - license.flf
2021-02-01T17:16:22.4771751Z - MainLoop.ps1
2021-02-01T17:16:22.4788633Z - SetupVariables.ps1
2021-02-01T17:16:22.4806640Z - updatehosts.ps1
2021-02-01T17:16:22.4823874Z Creating container bcserver from image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:16:22.9336705Z 26ab76ef968bfa1d302b35bad7e59784515ecc569441c0d4253b4e15f017a60c
2021-02-01T17:16:27.8298731Z Waiting for container bcserver to be ready
2021-02-01T17:16:32.0973493Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.3.20469.21609/us
2021-02-01T17:16:32.0975056Z Using installer from C:\Run\150-new
2021-02-01T17:16:32.0976140Z Installing Business Central
2021-02-01T17:16:32.0977371Z Installing from artifacts
2021-02-01T17:16:39.3359856Z Starting Local SQL Server
2021-02-01T17:16:39.3362601Z Starting Internet Information Server
2021-02-01T17:16:40.7825360Z Copying Service Tier Files
2021-02-01T17:16:40.7827072Z Copying PowerShell Scripts
2021-02-01T17:16:42.1313947Z Copying dependencies
2021-02-01T17:16:42.1315141Z Copying ReportBuilder
2021-02-01T17:16:42.1316227Z Importing PowerShell Modules
2021-02-01T17:16:44.9317013Z Determining Database Collation from c:\dl\sandbox\17.3.20469.21609\us\BusinessCentral-US.bak
2021-02-01T17:17:20.0074829Z Restoring CRONUS Demo Database
2021-02-01T17:17:26.7028623Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-02-01T17:17:26.7030378Z Modifying Business Central Service Tier Config File for Docker
2021-02-01T17:17:26.7031358Z Creating Business Central Service Tier
2021-02-01T17:17:28.2042692Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-02-01T17:17:28.2045805Z Copying Web Client Files
2021-02-01T17:17:28.2049547Z Copying Client Files
2021-02-01T17:17:28.2051088Z Copying ModernDev Files
2021-02-01T17:17:28.2053544Z Copying additional files
2021-02-01T17:17:28.2055161Z Copying ConfigurationPackages
2021-02-01T17:17:28.2056930Z Copying Test Assemblies
2021-02-01T17:17:28.2059346Z Copying Extensions
2021-02-01T17:17:28.2064144Z Copying Applications
2021-02-01T17:17:28.2066082Z Copying Applications.US
2021-02-01T17:21:33.3146887Z Starting Business Central Service Tier
2021-02-01T17:21:34.7454152Z Importing license file
2021-02-01T17:21:34.7455811Z Stopping Business Central Service Tier
2021-02-01T17:21:34.7457168Z Installation took 302 seconds
2021-02-01T17:21:34.7458309Z Installation complete
2021-02-01T17:21:34.7459481Z Initializing...
2021-02-01T17:21:34.7460663Z Setting host.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T17:21:34.7462038Z Setting gateway.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T17:21:34.7463886Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-02-01T17:21:34.7466459Z Setting host.containerhelper.internal to 172.22.208.1 in container hosts file
2021-02-01T17:21:34.7468616Z Starting Container
2021-02-01T17:21:34.7470690Z Hostname is bcserver
2021-02-01T17:21:36.1201196Z PublicDnsName is bcserver
2021-02-01T17:21:36.1202835Z Using NavUserPassword Authentication
2021-02-01T17:21:38.7995158Z Creating Self Signed Certificate
2021-02-01T17:21:38.7996594Z Self Signed Certificate Thumbprint 4B02654A179C70C24DC83D7722D6EDB711350405
2021-02-01T17:21:38.7997618Z Modifying Service Tier Config File with Instance Specific Settings
2021-02-01T17:21:38.7998528Z Modifying Service Tier Config File with settings from environment variable
2021-02-01T17:21:38.7999337Z Setting EnableTaskScheduler to True
2021-02-01T17:22:32.2421499Z Starting Service Tier
2021-02-01T17:22:32.2422747Z Registering event sources
2021-02-01T17:23:08.4373404Z Creating DotNetCore Web Server Instance
2021-02-01T17:23:08.4374870Z Enabling Financials User Experience
2021-02-01T17:23:08.4376179Z Using license file 'c:\run\my\license.flf'
2021-02-01T17:23:09.8351855Z Import License
2021-02-01T17:23:11.3975248Z Creating http download site
2021-02-01T17:23:11.3978103Z Setting SA Password and enabling SA
2021-02-01T17:23:11.3980828Z Creating *** as SQL User and add to sys***
2021-02-01T17:23:27.3208688Z Creating SUPER user
2021-02-01T17:23:27.3214319Z Container IP Address: 172.22.212.127
2021-02-01T17:23:27.3216993Z Container Hostname  : bcserver
2021-02-01T17:23:27.3218391Z Container Dns Name  : bcserver
2021-02-01T17:23:27.3219363Z Web Client          : http://bcserver/BC/
2021-02-01T17:23:27.3220339Z Dev. Server         : http://bcserver
2021-02-01T17:23:27.3221211Z Dev. ServerInstance : BC
2021-02-01T17:23:27.3222204Z Setting bcserver to 172.22.212.127 in host hosts file
2021-02-01T17:23:27.3222831Z 
2021-02-01T17:23:27.3223815Z Files:
2021-02-01T17:23:27.3224730Z http://bcserver:8080/ALLanguage.vsix
2021-02-01T17:23:27.3229558Z 
2021-02-01T17:23:27.3230540Z Container Total Physical Memory is 16.0Gb
2021-02-01T17:23:27.3231490Z Container Free Physical Memory is 3.3Gb
2021-02-01T17:23:27.3232107Z 
2021-02-01T17:23:27.3233021Z Initialization took 113 seconds
2021-02-01T17:23:27.3233862Z Ready for connections!
2021-02-01T17:23:27.3239183Z Reading CustomSettings.config from bcserver
2021-02-01T17:23:29.7608572Z Creating Desktop Shortcuts for bcserver
2021-02-01T17:23:30.0776814Z Container bcserver successfully created
2021-02-01T17:23:30.0780785Z 
2021-02-01T17:23:30.0797686Z Use:
2021-02-01T17:23:30.0826653Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container
2021-02-01T17:23:30.0852949Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container
2021-02-01T17:23:30.0879455Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container
2021-02-01T17:23:30.0905197Z Remove-BcContainer -containerName bcserver to remove the container again
2021-02-01T17:23:30.0941237Z docker logs bcserver to retrieve information about URL's again
2021-02-01T17:23:30.1197226Z 
2021-02-01T17:23:30.1200363Z Creating container took 430 seconds
2021-02-01T17:23:30.1208922Z 
2021-02-01T17:23:30.1210614Z   _____           _        _ _ _                                     
2021-02-01T17:23:30.1212384Z  |_   _|         | |      | | (_)                                    
2021-02-01T17:23:30.1213751Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-02-01T17:23:30.1215216Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-02-01T17:23:30.1216442Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-02-01T17:23:30.1217598Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-02-01T17:23:30.1218567Z                                         __/ |       | |   | |        
2021-02-01T17:23:30.1219543Z                                        |___/        |_|   |_|        
2021-02-01T17:23:30.1220176Z 
2021-02-01T17:23:31.5435247Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\43e3cb53-5bee-4764-aa1a-ff5da826f87b\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app
2021-02-01T17:23:42.0188203Z Synchronizing ChargeLogic Base on tenant default
2021-02-01T17:23:46.5058367Z Installing ChargeLogic Base on tenant default
2021-02-01T17:23:53.1107270Z App ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app successfully published
2021-02-01T17:23:53.1232598Z 
2021-02-01T17:23:53.1236819Z Installing apps took 23 seconds
2021-02-01T17:23:53.1258381Z   _____                   _                                    _____                           _____            
2021-02-01T17:23:53.1259721Z  |  __ \                 (_)                 /\               / ____|                         / ____|           
2021-02-01T17:23:53.1260881Z  | |__) |   _ _ __  _ __  _ _ __   __ _     /  \   _ __  _ __| (___   ___  _   _ _ __ ___ ___| |     ___  _ __  
2021-02-01T17:23:53.1262108Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \\___ \ / _ \| | | | '__/ __/ _ \ |    / _ \| '_ \ 
2021-02-01T17:23:53.1263160Z  | | \ \ |_| | | | | | | | | | | | (_| |  / ____ \| |_) | |_) |___) | (_) | |_| | | | (__  __/ |____ (_) | |_) |
2021-02-01T17:23:53.1264205Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/_____/ \___/ \__,_|_|  \___\___|\_____\___/| .__/ 
2021-02-01T17:23:53.1265421Z                                    __/ |          | |   | |                                              | |    
2021-02-01T17:23:53.1266832Z                                   |___/           |_|   |_|                                              |_|    
2021-02-01T17:23:53.2943785Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic
2021-02-01T17:23:53.2966002Z File not found: LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:23:53.3000095Z Copying previous apps to packages folder
2021-02-01T17:23:53.3029631Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic
2021-02-01T17:23:53.3052234Z File not found: LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T17:23:53.3265951Z 
2021-02-01T17:23:53.3269967Z Running AppSourceCop took 0 seconds
2021-02-01T17:23:53.3280187Z 
2021-02-01T17:23:53.3281376Z   _____           _        _ _ _               _____                _                                            
2021-02-01T17:23:53.3282751Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-02-01T17:23:53.3284919Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-02-01T17:23:53.3285986Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-02-01T17:23:53.3287074Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-02-01T17:23:53.3288256Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-02-01T17:23:53.3289344Z                                         __/ |                                                   | |   | |        
2021-02-01T17:23:53.3290392Z                                        |___/                                                    |_|   |_|        
2021-02-01T17:23:53.3291071Z 
2021-02-01T17:23:55.7048585Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\52407c6e-1e36-48f2-90b1-65670d935e7c\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T17:24:55.8084035Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T17:25:14.2959223Z Installing ChargeLogic Payments on tenant default
2021-02-01T17:26:20.5639159Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app successfully published
2021-02-01T17:26:20.5994230Z 
2021-02-01T17:26:20.5998303Z Installing apps took 147 seconds
2021-02-01T17:26:20.6010224Z 
2021-02-01T17:26:20.6011629Z   _____       _     _ _     _     _                                        
2021-02-01T17:26:20.6013015Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-02-01T17:26:20.6014122Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-02-01T17:26:20.6015073Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-02-01T17:26:20.6016439Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-02-01T17:26:20.6017900Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-02-01T17:26:20.6019310Z                                            __/ |          | |   | |        
2021-02-01T17:26:20.6020666Z                                           |___/           |_|   |_|        
2021-02-01T17:26:20.6021588Z 
2021-02-01T17:26:22.1542130Z Extracting C:\Users\chargelogic\AppData\Local\Temp\467889b7-1110-4bd8-b6a8-2b6511bdf27b\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:26:37.4895899Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\180d4402-a085-4594-a4ed-d9ad1306cb04\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:27:30.1768001Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T17:27:36.0410678Z Upgrading ChargeLogic Payments on tenant default
2021-02-01T17:28:19.9955833Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app successfully published
2021-02-01T17:28:20.0210768Z 
2021-02-01T17:28:20.0214164Z Publishing apps took 119 seconds
2021-02-01T17:28:20.0225153Z    _____                            _   _               _           _   
2021-02-01T17:28:20.0226465Z   / ____|                          | | (_)             | |         | |  
2021-02-01T17:28:20.0231156Z  | |     ___  _ __  _ __   ___  ___| |_ _  ___  _ __   | |_ ___ ___| |_ 
2021-02-01T17:28:20.0232476Z  | |    / _ \| '_ \| '_ \ / _ \/ __| __| |/ _ \| '_ \  | __/ _ \ __| __|
2021-02-01T17:28:20.0234184Z  | |____ (_) | | | | | | |  __/ (__| |_| | (_) | | | | | |_  __\__ \ |_ 
2021-02-01T17:28:20.0235374Z   \_____\___/|_| |_|_| |_|\___|\___|\__|_|\___/|_| |_|  \__\___|___/\__|
2021-02-01T17:28:58.2728619Z Rolecenter 9022 opened successfully
2021-02-01T17:28:59.6588494Z Sales and receivables setup successfully opened
2021-02-01T17:29:11.6019529Z Customer List opened successfully, title is (Customer List - View - Customers)
2021-02-01T17:29:14.9450036Z DIALOG: Config Templates Select a template for a new customer - Invoke OK
2021-02-01T17:29:18.5244325Z New Customer Action successfully invoked, opened page has title Customer Card New - Customer Card - C00010
2021-02-01T17:29:18.8487344Z Customer page successfully closed
2021-02-01T17:29:19.0721299Z Customer list successfully closed
2021-02-01T17:29:19.5847435Z 
2021-02-01T17:29:19.5849225Z Running Connection Test took 60 seconds
2021-02-01T17:29:19.5859225Z 
2021-02-01T17:29:19.5860492Z    _____                _   _                               _        _                 
2021-02-01T17:29:19.5861971Z   / ____|              | | (_)                             | |      (_)                
2021-02-01T17:29:19.5863823Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T17:29:19.5865236Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T17:29:19.5866622Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T17:29:19.5868029Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T17:29:19.5870168Z                                      __/ |                                             
2021-02-01T17:29:19.5871411Z                                     |___/                                              
2021-02-01T17:29:19.5872234Z 
2021-02-01T17:29:19.5886122Z Creating container for country ca
2021-02-01T17:29:20.1915212Z BcContainerHelper is version 2.0.4
2021-02-01T17:29:20.1927973Z BcContainerHelper is running as ***istrator
2021-02-01T17:29:20.1941931Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2021-02-01T17:29:20.5367146Z Docker Client Version is 20.10.2
2021-02-01T17:29:20.5382598Z Docker Server Version is 20.10.2
2021-02-01T17:29:23.2513473Z Removing container bcserver
2021-02-01T17:29:27.6797630Z Removing bcserver from host hosts file
2021-02-01T17:29:27.7634873Z Removing bcserver-* from host hosts file
2021-02-01T17:29:27.8045663Z Removing C:\ProgramData\BcContainerHelper\Extensions\bcserver
2021-02-01T17:29:27.8536782Z Downloading application artifact /sandbox/17.3.20469.21609/ca
2021-02-01T17:29:27.8714910Z Downloading C:\Users\chargelogic\AppData\Local\Temp\5d1692b0-cc0e-45c0-b1aa-f046a9f4b083.zip
2021-02-01T17:33:03.3944743Z Unpacking application artifact to tmp folder using Expand-Archive
2021-02-01T17:33:21.0049203Z Fetching all docker images
2021-02-01T17:33:22.0770637Z Using image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:33:22.3883049Z Creating Container bcserver
2021-02-01T17:33:22.3895474Z Version: 17.3.20469.21609-CA
2021-02-01T17:33:22.3909255Z Style: sandbox
2021-02-01T17:33:22.3925930Z Multitenant: No
2021-02-01T17:33:22.3940247Z Platform: 17.0.20458.21528
2021-02-01T17:33:22.3954913Z Generic Tag: 1.0.1.3
2021-02-01T17:33:22.3967428Z Container OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:33:22.3982839Z Host OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:33:22.3995733Z Using process isolation
2021-02-01T17:33:22.4013473Z Using locale en-CA
2021-02-01T17:33:22.4040080Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-02-01T17:33:22.4158686Z Using license file C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\ChargeLogicBC16.flf
2021-02-01T17:33:22.4735379Z Additional Parameters:
2021-02-01T17:33:22.4751850Z --env customNavSettings=EnableTaskScheduler=True
2021-02-01T17:33:22.4768126Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my:
2021-02-01T17:33:22.4793682Z - AdditionalOutput.ps1
2021-02-01T17:33:22.4810790Z - license.flf
2021-02-01T17:33:22.4826193Z - MainLoop.ps1
2021-02-01T17:33:22.4839038Z - SetupVariables.ps1
2021-02-01T17:33:22.4853768Z - updatehosts.ps1
2021-02-01T17:33:22.4868643Z Creating container bcserver from image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:33:23.3210005Z 217af3d0724ccc96c1db5d899b93b0e8f628877f5b8ff96f61967231a634c641
2021-02-01T17:33:28.2890440Z Waiting for container bcserver to be ready
2021-02-01T17:33:31.1192844Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.3.20469.21609/ca
2021-02-01T17:33:31.1195135Z Using installer from C:\Run\150-new
2021-02-01T17:33:31.1196124Z Installing Business Central
2021-02-01T17:33:31.1197006Z Installing from artifacts
2021-02-01T17:33:35.4327506Z Starting Local SQL Server
2021-02-01T17:33:35.4328942Z Starting Internet Information Server
2021-02-01T17:33:43.2224074Z Copying Service Tier Files
2021-02-01T17:33:43.2226414Z Copying PowerShell Scripts
2021-02-01T17:33:43.2229348Z Copying dependencies
2021-02-01T17:33:43.2230447Z Copying ReportBuilder
2021-02-01T17:33:43.2231571Z Importing PowerShell Modules
2021-02-01T17:33:46.0108047Z Determining Database Collation from c:\dl\sandbox\17.3.20469.21609\ca\BusinessCentral-CA.bak
2021-02-01T17:34:16.1286605Z Restoring CRONUS Demo Database
2021-02-01T17:34:17.6817754Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-02-01T17:34:17.6819541Z Modifying Business Central Service Tier Config File for Docker
2021-02-01T17:34:17.6820801Z Creating Business Central Service Tier
2021-02-01T17:34:27.6167274Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-02-01T17:34:27.6168927Z Copying Web Client Files
2021-02-01T17:34:27.6169963Z Copying Client Files
2021-02-01T17:34:27.6171255Z Copying ModernDev Files
2021-02-01T17:34:27.6172332Z Copying additional files
2021-02-01T17:34:27.6173568Z Copying ConfigurationPackages
2021-02-01T17:34:27.6174385Z Copying Test Assemblies
2021-02-01T17:34:27.6175424Z Copying Extensions
2021-02-01T17:34:27.6176426Z Copying Applications
2021-02-01T17:34:27.6177457Z Copying Applications.CA
2021-02-01T17:38:12.3176948Z Starting Business Central Service Tier
2021-02-01T17:38:13.7395261Z Importing license file
2021-02-01T17:38:13.7396708Z Stopping Business Central Service Tier
2021-02-01T17:38:13.7397896Z Installation took 283 seconds
2021-02-01T17:38:13.7398800Z Installation complete
2021-02-01T17:38:15.1114610Z Initializing...
2021-02-01T17:38:15.1116723Z Setting host.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T17:38:15.1118228Z Setting gateway.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T17:38:15.1119597Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-02-01T17:38:15.1121094Z Setting host.containerhelper.internal to 172.22.208.1 in container hosts file
2021-02-01T17:38:15.1122651Z Starting Container
2021-02-01T17:38:15.1123782Z Hostname is bcserver
2021-02-01T17:38:15.1125059Z PublicDnsName is bcserver
2021-02-01T17:38:15.1126607Z Using NavUserPassword Authentication
2021-02-01T17:38:16.4666197Z Creating Self Signed Certificate
2021-02-01T17:38:16.4669704Z Self Signed Certificate Thumbprint 976CB6E6D29762EC9931F64BB23F1BAAD64A0CC3
2021-02-01T17:38:16.4675876Z Modifying Service Tier Config File with Instance Specific Settings
2021-02-01T17:38:16.4677453Z Modifying Service Tier Config File with settings from environment variable
2021-02-01T17:38:17.8719466Z Setting EnableTaskScheduler to True
2021-02-01T17:39:08.9458583Z Starting Service Tier
2021-02-01T17:39:08.9460238Z Registering event sources
2021-02-01T17:39:44.7940463Z Creating DotNetCore Web Server Instance
2021-02-01T17:39:44.7942466Z Enabling Financials User Experience
2021-02-01T17:39:44.7944006Z Using license file 'c:\run\my\license.flf'
2021-02-01T17:39:44.7944877Z Import License
2021-02-01T17:39:46.1822349Z Creating http download site
2021-02-01T17:39:46.1823858Z Setting SA Password and enabling SA
2021-02-01T17:39:46.1825259Z Creating *** as SQL User and add to sys***
2021-02-01T17:40:00.4528722Z Creating SUPER user
2021-02-01T17:40:00.4530365Z Container IP Address: 172.22.218.209
2021-02-01T17:40:00.4531823Z Container Hostname  : bcserver
2021-02-01T17:40:00.4532997Z Container Dns Name  : bcserver
2021-02-01T17:40:00.4534645Z Web Client          : http://bcserver/BC/
2021-02-01T17:40:00.4536413Z Dev. Server         : http://bcserver
2021-02-01T17:40:00.4537605Z Dev. ServerInstance : BC
2021-02-01T17:40:00.4539100Z Setting bcserver to 172.22.218.209 in host hosts file
2021-02-01T17:40:00.4539916Z 
2021-02-01T17:40:00.4541035Z Files:
2021-02-01T17:40:00.4542441Z http://bcserver:8080/ALLanguage.vsix
2021-02-01T17:40:00.4543196Z 
2021-02-01T17:40:00.4544404Z Container Total Physical Memory is 16.0Gb
2021-02-01T17:40:00.4545475Z Container Free Physical Memory is 3.1Gb
2021-02-01T17:40:00.4546269Z 
2021-02-01T17:40:00.4547269Z Initialization took 106 seconds
2021-02-01T17:40:00.4548306Z Ready for connections!
2021-02-01T17:40:00.4595965Z Reading CustomSettings.config from bcserver
2021-02-01T17:40:02.6598226Z Creating Desktop Shortcuts for bcserver
2021-02-01T17:40:02.7301060Z Container bcserver successfully created
2021-02-01T17:40:02.7307593Z 
2021-02-01T17:40:02.7319103Z Use:
2021-02-01T17:40:02.7356917Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container
2021-02-01T17:40:02.7381336Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container
2021-02-01T17:40:02.7405836Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container
2021-02-01T17:40:02.7429825Z Remove-BcContainer -containerName bcserver to remove the container again
2021-02-01T17:40:02.7453463Z docker logs bcserver to retrieve information about URL's again
2021-02-01T17:40:02.7558378Z 
2021-02-01T17:40:02.7561112Z Creating container took 643 seconds
2021-02-01T17:40:02.7571005Z 
2021-02-01T17:40:02.7572449Z   _____           _        _ _ _                                     
2021-02-01T17:40:02.7574193Z  |_   _|         | |      | | (_)                                    
2021-02-01T17:40:02.7575787Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-02-01T17:40:02.7577534Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-02-01T17:40:02.7582658Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-02-01T17:40:02.7584588Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-02-01T17:40:02.7587303Z                                         __/ |       | |   | |        
2021-02-01T17:40:02.7589039Z                                        |___/        |_|   |_|        
2021-02-01T17:40:02.7590340Z 
2021-02-01T17:40:03.9669033Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\c05111e0-a7de-41a0-940d-38f430064977\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app
2021-02-01T17:40:15.5812164Z Synchronizing ChargeLogic Base on tenant default
2021-02-01T17:40:20.7899151Z Installing ChargeLogic Base on tenant default
2021-02-01T17:40:27.8234699Z App ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app successfully published
2021-02-01T17:40:27.8268767Z 
2021-02-01T17:40:27.8272946Z Installing apps took 25 seconds
2021-02-01T17:40:27.8290290Z   _____                   _                                    _____                           _____            
2021-02-01T17:40:27.8292005Z  |  __ \                 (_)                 /\               / ____|                         / ____|           
2021-02-01T17:40:27.8293402Z  | |__) |   _ _ __  _ __  _ _ __   __ _     /  \   _ __  _ __| (___   ___  _   _ _ __ ___ ___| |     ___  _ __  
2021-02-01T17:40:27.8294901Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \\___ \ / _ \| | | | '__/ __/ _ \ |    / _ \| '_ \ 
2021-02-01T17:40:27.8296804Z  | | \ \ |_| | | | | | | | | | | | (_| |  / ____ \| |_) | |_) |___) | (_) | |_| | | | (__  __/ |____ (_) | |_) |
2021-02-01T17:40:27.8298346Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/_____/ \___/ \__,_|_|  \___\___|\_____\___/| .__/ 
2021-02-01T17:40:27.8299935Z                                    __/ |          | |   | |                                              | |    
2021-02-01T17:40:27.8301507Z                                   |___/           |_|   |_|                                              |_|    
2021-02-01T17:40:27.8397702Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic
2021-02-01T17:40:27.8410912Z File not found: LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:40:27.8471455Z Copying previous apps to packages folder
2021-02-01T17:40:29.0238692Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic
2021-02-01T17:40:29.0240525Z File not found: LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T17:40:29.0241493Z 
2021-02-01T17:40:29.0242468Z Running AppSourceCop took 0 seconds
2021-02-01T17:40:29.0243391Z 
2021-02-01T17:40:29.0244501Z   _____           _        _ _ _               _____                _                                            
2021-02-01T17:40:29.0246132Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-02-01T17:40:29.0247487Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-02-01T17:40:29.0248852Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-02-01T17:40:29.0249975Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-02-01T17:40:29.0251437Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-02-01T17:40:29.0252814Z                                         __/ |                                                   | |   | |        
2021-02-01T17:40:29.0254026Z                                        |___/                                                    |_|   |_|        
2021-02-01T17:40:29.0254736Z 
2021-02-01T17:40:29.6743137Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\46e71a0d-28fd-44b3-8711-f600835723e3\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T17:41:25.6363770Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T17:41:44.7598087Z Installing ChargeLogic Payments on tenant default
2021-02-01T17:42:51.0360593Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app successfully published
2021-02-01T17:42:51.0495979Z 
2021-02-01T17:42:51.0499655Z Installing apps took 143 seconds
2021-02-01T17:42:51.0526617Z 
2021-02-01T17:42:51.0527602Z   _____       _     _ _     _     _                                        
2021-02-01T17:42:51.0528685Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-02-01T17:42:51.0529828Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-02-01T17:42:51.0530950Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-02-01T17:42:51.0531966Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-02-01T17:42:51.0533142Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-02-01T17:42:51.0534658Z                                            __/ |          | |   | |        
2021-02-01T17:42:51.0535679Z                                           |___/           |_|   |_|        
2021-02-01T17:42:51.0536363Z 
2021-02-01T17:42:52.5002067Z Extracting C:\Users\chargelogic\AppData\Local\Temp\96ac8c83-851b-47ab-938a-e4d846052fd7\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:43:06.6215294Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\3d88c8ff-b362-4d84-ab56-315f3d90d3d8\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T17:43:57.5787142Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T17:44:03.3543604Z Upgrading ChargeLogic Payments on tenant default
2021-02-01T17:44:48.1890072Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app successfully published
2021-02-01T17:44:48.2054362Z 
2021-02-01T17:44:48.2058291Z Publishing apps took 117 seconds
2021-02-01T17:44:48.2068797Z    _____                            _   _               _           _   
2021-02-01T17:44:48.2070223Z   / ____|                          | | (_)             | |         | |  
2021-02-01T17:44:48.2071718Z  | |     ___  _ __  _ __   ___  ___| |_ _  ___  _ __   | |_ ___ ___| |_ 
2021-02-01T17:44:48.2072899Z  | |    / _ \| '_ \| '_ \ / _ \/ __| __| |/ _ \| '_ \  | __/ _ \ __| __|
2021-02-01T17:44:48.2074419Z  | |____ (_) | | | | | | |  __/ (__| |_| | (_) | | | | | |_  __\__ \ |_ 
2021-02-01T17:44:48.2078509Z   \_____\___/|_| |_|_| |_|\___|\___|\__|_|\___/|_| |_|  \__\___|___/\__|
2021-02-01T17:45:21.7887089Z Rolecenter 9022 opened successfully
2021-02-01T17:45:23.1696563Z Sales and receivables setup successfully opened
2021-02-01T17:45:34.9541288Z Customer List opened successfully, title is (Customer List - View - Customers)
2021-02-01T17:45:38.5210178Z DIALOG: Config Templates Select a template for a new customer - Invoke OK
2021-02-01T17:45:41.6905858Z New Customer Action successfully invoked, opened page has title Customer Card New - Customer Card - C00010
2021-02-01T17:45:42.0201943Z Customer page successfully closed
2021-02-01T17:45:42.2287736Z Customer list successfully closed
2021-02-01T17:45:42.7038382Z 
2021-02-01T17:45:42.7039766Z Running Connection Test took 54 seconds
2021-02-01T17:45:42.7051328Z 
2021-02-01T17:45:42.7053343Z   _____                           _                _____            _        _                 
2021-02-01T17:45:42.7055094Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-02-01T17:45:42.7056533Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T17:45:42.7058077Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T17:45:42.7060079Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T17:45:42.7062701Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T17:45:42.7064060Z                                            __/ |                                               
2021-02-01T17:45:42.7065459Z                                           |___/                                                
2021-02-01T17:45:42.7066358Z 
2021-02-01T17:45:45.8740965Z Removing container bcserver
2021-02-01T17:45:50.2706542Z Removing bcserver from host hosts file
2021-02-01T17:45:50.2869436Z Removing bcserver-* from host hosts file
2021-02-01T17:45:50.3292038Z Removing C:\ProgramData\BcContainerHelper\Extensions\bcserver
2021-02-01T17:45:50.3686241Z 
2021-02-01T17:45:50.3690194Z Removing container took 8 seconds
2021-02-01T17:45:50.3701401Z   _____       _                      _                         _   _  __           _       
2021-02-01T17:45:50.3702802Z  |  __ \     | |                    (_)                       | | (_)/ _|         | |      
2021-02-01T17:45:50.3703784Z  | |  | | ___| |_ ___ _ __ _ __ ___  _ _ __   ___    __ _ _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-02-01T17:45:50.3704899Z  | |  | |/ _ \ __/ _ \ '__| '_ ` _ \| | '_ \ / _ \  / _` | '__| __| |  _/ _` |/ __| __/ __|
2021-02-01T17:45:50.3705998Z  | |__| |  __/ |_  __/ |  | | | | | | | | | |  __/ | (_| | |  | |_| | || (_| | (__| |_\__ \
2021-02-01T17:45:50.3707066Z  |_____/ \___|\__\___|_|  |_| |_| |_|_|_| |_|\___|  \__,_|_|   \__|_|_| \__,_|\___|\__|___/
2021-02-01T17:45:50.3708426Z                                                                                            
2021-02-01T17:45:54.9847513Z Found https://bcartifacts.azureedge.net/sandbox/17.0.17126.21586/us
2021-02-01T17:46:00.5886340Z Found https://bcartifacts.azureedge.net/sandbox/17.0.17126.21586/ca
2021-02-01T17:46:00.7951383Z Using https://bcartifacts.azureedge.net/sandbox/17.0.17126.21586/us
2021-02-01T17:46:00.7962635Z 
2021-02-01T17:46:00.7964078Z    _____                _   _                               _        _                 
2021-02-01T17:46:00.7968188Z   / ____|              | | (_)                             | |      (_)                
2021-02-01T17:46:00.7969427Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T17:46:00.7970480Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T17:46:00.7971562Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T17:46:00.7972608Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T17:46:00.7973634Z                                      __/ |                                             
2021-02-01T17:46:00.7974690Z                                     |___/                                              
2021-02-01T17:46:00.7975364Z 
2021-02-01T17:46:00.7982094Z Creating container for country us
2021-02-01T17:46:01.1635486Z BcContainerHelper is version 2.0.4
2021-02-01T17:46:01.1650844Z BcContainerHelper is running as ***istrator
2021-02-01T17:46:01.1663812Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2021-02-01T17:46:01.4522817Z Docker Client Version is 20.10.2
2021-02-01T17:46:01.4539095Z Docker Server Version is 20.10.2
2021-02-01T17:46:02.1011048Z Downloading application artifact /sandbox/17.0.17126.21586/us
2021-02-01T17:46:02.1038353Z Downloading C:\Users\chargelogic\AppData\Local\Temp\e7a75a81-01f6-4a47-acce-461027a8036d.zip
2021-02-01T17:48:45.5406770Z Unpacking application artifact to tmp folder using Expand-Archive
2021-02-01T17:49:02.3920789Z Downloading platform artifact /sandbox/17.0.17126.21586/platform
2021-02-01T17:49:02.3954391Z Downloading C:\Users\chargelogic\AppData\Local\Temp\f230f8e9-80aa-49ec-bf8d-0582b12698bd.zip
2021-02-01T17:51:52.1970102Z Unpacking platform artifact to tmp folder using Expand-Archive
2021-02-01T17:55:20.7198834Z Downloading Prerequisite Components
2021-02-01T17:55:20.7477037Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.21586\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2021-02-01T17:55:20.8301361Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.21586\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2021-02-01T17:55:20.8847262Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.21586\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2021-02-01T17:55:21.5991273Z Fetching all docker images
2021-02-01T17:55:22.4490608Z Using image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:55:22.8303039Z Creating Container bcserver
2021-02-01T17:55:22.8318184Z Version: 17.0.17126.21586-US
2021-02-01T17:55:22.8330586Z Style: sandbox
2021-02-01T17:55:22.8344545Z Multitenant: No
2021-02-01T17:55:22.8357670Z Platform: 17.0.17020.21538
2021-02-01T17:55:22.8372023Z Generic Tag: 1.0.1.3
2021-02-01T17:55:22.8386268Z Container OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:55:22.8399459Z Host OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T17:55:22.8413066Z Using process isolation
2021-02-01T17:55:22.8428824Z Using locale en-US
2021-02-01T17:55:22.8455127Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-02-01T17:55:22.8507315Z Using license file C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\ChargeLogicBC16.flf
2021-02-01T17:55:22.8874784Z Additional Parameters:
2021-02-01T17:55:22.8892079Z --env customNavSettings=EnableTaskScheduler=True
2021-02-01T17:55:22.8908920Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my:
2021-02-01T17:55:22.8929201Z - AdditionalOutput.ps1
2021-02-01T17:55:22.8947010Z - license.flf
2021-02-01T17:55:22.8963554Z - MainLoop.ps1
2021-02-01T17:55:22.8981581Z - SetupVariables.ps1
2021-02-01T17:55:22.9004424Z - updatehosts.ps1
2021-02-01T17:55:22.9022264Z Creating container bcserver from image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T17:55:24.0155515Z b6c18be9cc7d9d45bc2897a376fc72f9ec8bfbfb992038ad3edb4179d7ad4e9a
2021-02-01T17:55:28.6997579Z Waiting for container bcserver to be ready
2021-02-01T17:55:33.2119278Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.21586/us
2021-02-01T17:55:33.2122308Z Using installer from C:\Run\150-new
2021-02-01T17:55:33.2131623Z Installing Business Central
2021-02-01T17:55:33.2138809Z Installing from artifacts
2021-02-01T17:55:38.0049010Z Starting Local SQL Server
2021-02-01T17:55:38.0060924Z Starting Internet Information Server
2021-02-01T17:55:41.1373110Z Copying Service Tier Files
2021-02-01T17:55:41.1374502Z Copying PowerShell Scripts
2021-02-01T17:55:41.1375591Z Copying dependencies
2021-02-01T17:55:41.1376582Z Copying ReportBuilder
2021-02-01T17:55:41.1377523Z Importing PowerShell Modules
2021-02-01T17:55:44.2926715Z Determining Database Collation from c:\dl\sandbox\17.0.17126.21586\us\BusinessCentral-US.bak
2021-02-01T17:56:17.5450180Z Restoring CRONUS Demo Database
2021-02-01T17:56:23.3508852Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-02-01T17:56:23.3511477Z Modifying Business Central Service Tier Config File for Docker
2021-02-01T17:56:23.3513518Z Creating Business Central Service Tier
2021-02-01T17:56:24.7987595Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-02-01T17:56:24.7992905Z Copying Web Client Files
2021-02-01T17:56:24.7994148Z Copying Client Files
2021-02-01T17:56:24.7995284Z Copying ModernDev Files
2021-02-01T17:56:24.7996966Z Copying additional files
2021-02-01T17:56:24.7997897Z Copying ConfigurationPackages
2021-02-01T17:56:24.7998781Z Copying Test Assemblies
2021-02-01T17:56:24.7999638Z Copying Extensions
2021-02-01T17:56:24.8000541Z Copying Applications
2021-02-01T17:56:24.8001421Z Copying Applications.US
2021-02-01T18:04:04.9415572Z Starting Business Central Service Tier
2021-02-01T18:04:09.6889585Z Importing license file
2021-02-01T18:04:09.6891177Z Stopping Business Central Service Tier
2021-02-01T18:04:09.6892287Z Installation took 517 seconds
2021-02-01T18:04:09.6893294Z Installation complete
2021-02-01T18:04:11.1223754Z Initializing...
2021-02-01T18:04:11.1226329Z Setting host.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T18:04:11.1228663Z Setting gateway.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T18:04:11.1231321Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-02-01T18:04:11.1232876Z Setting host.containerhelper.internal to 172.22.208.1 in container hosts file
2021-02-01T18:04:11.1234958Z Starting Container
2021-02-01T18:04:11.1236542Z Hostname is bcserver
2021-02-01T18:04:12.5893483Z PublicDnsName is bcserver
2021-02-01T18:04:12.5894583Z Using NavUserPassword Authentication
2021-02-01T18:04:14.0565395Z Creating Self Signed Certificate
2021-02-01T18:04:14.0567257Z Self Signed Certificate Thumbprint F513091FC5C1586CDE61ADA9B08FE708823A1183
2021-02-01T18:04:15.6648018Z Modifying Service Tier Config File with Instance Specific Settings
2021-02-01T18:04:15.6653763Z Modifying Service Tier Config File with settings from environment variable
2021-02-01T18:04:15.6655643Z Setting EnableTaskScheduler to True
2021-02-01T18:06:04.1533285Z Starting Service Tier
2021-02-01T18:06:04.1535145Z Registering event sources
2021-02-01T18:07:04.8885388Z Creating DotNetCore Web Server Instance
2021-02-01T18:07:04.8889730Z Enabling Financials User Experience
2021-02-01T18:07:04.8892215Z Using license file 'c:\run\my\license.flf'
2021-02-01T18:07:11.4392225Z Import License
2021-02-01T18:07:13.5336449Z Creating http download site
2021-02-01T18:07:13.5338435Z Setting SA Password and enabling SA
2021-02-01T18:07:18.3162391Z Creating *** as SQL User and add to sys***
2021-02-01T18:08:10.0566740Z Creating SUPER user
2021-02-01T18:08:10.0568174Z Container IP Address: 172.22.213.188
2021-02-01T18:08:10.0571206Z Container Hostname  : bcserver
2021-02-01T18:08:10.0574563Z Container Dns Name  : bcserver
2021-02-01T18:08:10.0577128Z Web Client          : http://bcserver/BC/
2021-02-01T18:08:10.0579870Z Dev. Server         : http://bcserver
2021-02-01T18:08:10.0581100Z Dev. ServerInstance : BC
2021-02-01T18:08:10.0628705Z Setting bcserver to 172.22.213.188 in host hosts file
2021-02-01T18:08:10.0629967Z 
2021-02-01T18:08:10.0630866Z Files:
2021-02-01T18:08:10.0631852Z http://bcserver:8080/ALLanguage.vsix
2021-02-01T18:08:10.0632717Z 
2021-02-01T18:08:10.0633650Z Container Total Physical Memory is 16.0Gb
2021-02-01T18:08:10.0634770Z Container Free Physical Memory is 0.2Gb
2021-02-01T18:08:10.0635566Z 
2021-02-01T18:08:10.0636441Z Initialization took 240 seconds
2021-02-01T18:08:10.0637396Z Ready for connections!
2021-02-01T18:08:10.0638423Z Reading CustomSettings.config from bcserver
2021-02-01T18:08:14.0982778Z Creating Desktop Shortcuts for bcserver
2021-02-01T18:08:14.2543952Z Container bcserver successfully created
2021-02-01T18:08:14.2551063Z 
2021-02-01T18:08:14.2566339Z Use:
2021-02-01T18:08:14.2639869Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container
2021-02-01T18:08:14.2667507Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container
2021-02-01T18:08:14.2710906Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container
2021-02-01T18:08:14.2739079Z Remove-BcContainer -containerName bcserver to remove the container again
2021-02-01T18:08:14.2769587Z docker logs bcserver to retrieve information about URL's again
2021-02-01T18:08:14.3009965Z 
2021-02-01T18:08:14.3014110Z Creating container took 1333 seconds
2021-02-01T18:08:14.3023703Z 
2021-02-01T18:08:14.3025422Z   _____           _        _ _ _                                     
2021-02-01T18:08:14.3026474Z  |_   _|         | |      | | (_)                                    
2021-02-01T18:08:14.3027583Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-02-01T18:08:14.3028579Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-02-01T18:08:14.3029606Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-02-01T18:08:14.3030589Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-02-01T18:08:14.3031601Z                                         __/ |       | |   | |        
2021-02-01T18:08:14.3032600Z                                        |___/        |_|   |_|        
2021-02-01T18:08:14.3033253Z 
2021-02-01T18:08:16.7514189Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\6d0893c2-210a-4c04-a2d2-0ca5054904ab\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app
2021-02-01T18:08:55.9850322Z Synchronizing ChargeLogic Base on tenant default
2021-02-01T18:09:51.7396688Z Installing ChargeLogic Base on tenant default
2021-02-01T18:12:18.9782447Z App ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app successfully published
2021-02-01T18:12:18.9834642Z 
2021-02-01T18:12:18.9837220Z Installing apps took 245 seconds
2021-02-01T18:12:18.9849626Z   _____                   _                                    _____                           _____            
2021-02-01T18:12:18.9851366Z  |  __ \                 (_)                 /\               / ____|                         / ____|           
2021-02-01T18:12:18.9852948Z  | |__) |   _ _ __  _ __  _ _ __   __ _     /  \   _ __  _ __| (___   ___  _   _ _ __ ___ ___| |     ___  _ __  
2021-02-01T18:12:18.9855247Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \\___ \ / _ \| | | | '__/ __/ _ \ |    / _ \| '_ \ 
2021-02-01T18:12:18.9857223Z  | | \ \ |_| | | | | | | | | | | | (_| |  / ____ \| |_) | |_) |___) | (_) | |_| | | | (__  __/ |____ (_) | |_) |
2021-02-01T18:12:18.9858768Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/_____/ \___/ \__,_|_|  \___\___|\_____\___/| .__/ 
2021-02-01T18:12:18.9860344Z                                    __/ |          | |   | |                                              | |    
2021-02-01T18:12:18.9862236Z                                   |___/           |_|   |_|                                              |_|    
2021-02-01T18:12:18.9952744Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic
2021-02-01T18:12:18.9973530Z File not found: LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:12:19.0003506Z Copying previous apps to packages folder
2021-02-01T18:12:19.0042208Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic
2021-02-01T18:12:19.0061481Z File not found: LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T18:12:19.0131534Z 
2021-02-01T18:12:19.0134313Z Running AppSourceCop took 0 seconds
2021-02-01T18:12:19.0145713Z 
2021-02-01T18:12:19.0147426Z   _____           _        _ _ _               _____                _                                            
2021-02-01T18:12:19.0149020Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-02-01T18:12:19.0150559Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-02-01T18:12:19.0152052Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-02-01T18:12:19.0153602Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-02-01T18:12:19.0155142Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-02-01T18:12:19.0156615Z                                         __/ |                                                   | |   | |        
2021-02-01T18:12:19.0158142Z                                        |___/                                                    |_|   |_|        
2021-02-01T18:12:19.0159038Z 
2021-02-01T18:12:22.5428576Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\30969592-372b-4f74-87c9-b25565224fab\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T18:13:39.6235054Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T18:13:59.8916201Z Installing ChargeLogic Payments on tenant default
2021-02-01T18:15:09.2710743Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app successfully published
2021-02-01T18:15:09.2797197Z 
2021-02-01T18:15:09.2800782Z Installing apps took 170 seconds
2021-02-01T18:15:09.2808795Z 
2021-02-01T18:15:09.2810015Z   _____       _     _ _     _     _                                        
2021-02-01T18:15:09.2811357Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-02-01T18:15:09.2812624Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-02-01T18:15:09.2813864Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-02-01T18:15:09.2815064Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-02-01T18:15:09.2816388Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-02-01T18:15:09.2817614Z                                            __/ |          | |   | |        
2021-02-01T18:15:09.2818665Z                                           |___/           |_|   |_|        
2021-02-01T18:15:09.2819574Z 
2021-02-01T18:15:10.8330425Z Extracting C:\Users\chargelogic\AppData\Local\Temp\555be784-a841-4b98-a03d-0a70dc30d754\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:15:26.7719980Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\160223be-3d81-412a-bec3-31e53528d178\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:16:19.7674863Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T18:16:25.6692365Z Upgrading ChargeLogic Payments on tenant default
2021-02-01T18:17:12.2703700Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app successfully published
2021-02-01T18:17:12.2890855Z 
2021-02-01T18:17:12.2894644Z Publishing apps took 123 seconds
2021-02-01T18:17:12.2905655Z    _____                            _   _               _           _   
2021-02-01T18:17:12.2907073Z   / ____|                          | | (_)             | |         | |  
2021-02-01T18:17:12.2908163Z  | |     ___  _ __  _ __   ___  ___| |_ _  ___  _ __   | |_ ___ ___| |_ 
2021-02-01T18:17:12.2909411Z  | |    / _ \| '_ \| '_ \ / _ \/ __| __| |/ _ \| '_ \  | __/ _ \ __| __|
2021-02-01T18:17:12.2910784Z  | |____ (_) | | | | | | |  __/ (__| |_| | (_) | | | | | |_  __\__ \ |_ 
2021-02-01T18:17:12.2912138Z   \_____\___/|_| |_|_| |_|\___|\___|\__|_|\___/|_| |_|  \__\___|___/\__|
2021-02-01T18:17:43.6938379Z Rolecenter 9022 opened successfully
2021-02-01T18:17:45.3916748Z Sales and receivables setup successfully opened
2021-02-01T18:17:58.1323890Z Customer List opened successfully, title is (Customer List - View - Customers)
2021-02-01T18:18:02.9726176Z DIALOG: Config Templates Select a template for a new customer - Invoke OK
2021-02-01T18:18:07.2130591Z New Customer Action successfully invoked, opened page has title Customer Card New - Customer Card - C00010
2021-02-01T18:18:07.5441402Z Customer page successfully closed
2021-02-01T18:18:08.0843377Z Customer list successfully closed
2021-02-01T18:18:08.4305727Z 
2021-02-01T18:18:08.4307872Z Running Connection Test took 56 seconds
2021-02-01T18:18:08.4320001Z 
2021-02-01T18:18:08.4321707Z    _____                _   _                               _        _                 
2021-02-01T18:18:08.4323607Z   / ____|              | | (_)                             | |      (_)                
2021-02-01T18:18:08.4324810Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T18:18:08.4326297Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T18:18:08.4327737Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T18:18:08.4329178Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T18:18:08.4330914Z                                      __/ |                                             
2021-02-01T18:18:08.4332477Z                                     |___/                                              
2021-02-01T18:18:08.4333538Z 
2021-02-01T18:18:08.4341765Z Creating container for country ca
2021-02-01T18:18:08.9297505Z BcContainerHelper is version 2.0.4
2021-02-01T18:18:08.9310768Z BcContainerHelper is running as ***istrator
2021-02-01T18:18:08.9326394Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2021-02-01T18:18:09.3240827Z Docker Client Version is 20.10.2
2021-02-01T18:18:09.3256885Z Docker Server Version is 20.10.2
2021-02-01T18:18:11.6548019Z Removing container bcserver
2021-02-01T18:18:15.7256115Z Removing bcserver from host hosts file
2021-02-01T18:18:15.7438782Z Removing bcserver-* from host hosts file
2021-02-01T18:18:15.7771330Z Removing C:\ProgramData\BcContainerHelper\Extensions\bcserver
2021-02-01T18:18:15.8018060Z Downloading application artifact /sandbox/17.0.17126.21586/ca
2021-02-01T18:18:15.8044519Z Downloading C:\Users\chargelogic\AppData\Local\Temp\ac2086f4-eb5d-41f8-b39e-6620e619a057.zip
2021-02-01T18:19:28.7522670Z Unpacking application artifact to tmp folder using Expand-Archive
2021-02-01T18:19:45.8762405Z Fetching all docker images
2021-02-01T18:19:48.1124317Z Using image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T18:19:48.5010720Z Creating Container bcserver
2021-02-01T18:19:48.5025082Z Version: 17.0.17126.21586-CA
2021-02-01T18:19:48.5039634Z Style: sandbox
2021-02-01T18:19:48.5053175Z Multitenant: No
2021-02-01T18:19:48.5074495Z Platform: 17.0.17020.21538
2021-02-01T18:19:48.5085880Z Generic Tag: 1.0.1.3
2021-02-01T18:19:48.5102810Z Container OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T18:19:48.5113539Z Host OS Version: 10.0.17763.1697 (ltsc2019)
2021-02-01T18:19:48.5133589Z Using process isolation
2021-02-01T18:19:48.5152568Z Using locale en-CA
2021-02-01T18:19:48.5182539Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-02-01T18:19:48.5315537Z Using license file C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\ChargeLogicBC16.flf
2021-02-01T18:19:48.5814581Z Additional Parameters:
2021-02-01T18:19:48.5830790Z --env customNavSettings=EnableTaskScheduler=True
2021-02-01T18:19:48.5845307Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my:
2021-02-01T18:19:48.5870826Z - AdditionalOutput.ps1
2021-02-01T18:19:48.5895785Z - license.flf
2021-02-01T18:19:48.5953626Z - MainLoop.ps1
2021-02-01T18:19:48.5968727Z - SetupVariables.ps1
2021-02-01T18:19:48.5983017Z - updatehosts.ps1
2021-02-01T18:19:48.5997930Z Creating container bcserver from image mcr.microsoft.com/businesscentral:10.0.17763.1697
2021-02-01T18:19:50.1860749Z 855bda6ea8766c811e96bbdd9d1ac581f9441ec0b929bd7dc2e4705becf520f6
2021-02-01T18:19:54.2811271Z Waiting for container bcserver to be ready
2021-02-01T18:19:58.7037691Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.21586/ca
2021-02-01T18:19:58.7039081Z Using installer from C:\Run\150-new
2021-02-01T18:19:58.7040006Z Installing Business Central
2021-02-01T18:19:58.7040793Z Installing from artifacts
2021-02-01T18:20:02.9932856Z Starting Local SQL Server
2021-02-01T18:20:02.9935702Z Starting Internet Information Server
2021-02-01T18:20:12.2312524Z Copying Service Tier Files
2021-02-01T18:20:13.6211348Z Copying PowerShell Scripts
2021-02-01T18:20:16.3775452Z Copying dependencies
2021-02-01T18:20:16.3776874Z Copying ReportBuilder
2021-02-01T18:20:16.3777916Z Importing PowerShell Modules
2021-02-01T18:20:16.3779052Z Determining Database Collation from c:\dl\sandbox\17.0.17126.21586\ca\BusinessCentral-CA.bak
2021-02-01T18:20:50.7427953Z Restoring CRONUS Demo Database
2021-02-01T18:20:54.8898908Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-02-01T18:20:54.8900558Z Modifying Business Central Service Tier Config File for Docker
2021-02-01T18:20:56.2701215Z Creating Business Central Service Tier
2021-02-01T18:20:56.2703168Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-02-01T18:20:56.2704626Z Copying Web Client Files
2021-02-01T18:20:56.2705651Z Copying Client Files
2021-02-01T18:20:56.2706652Z Copying ModernDev Files
2021-02-01T18:20:56.2708190Z Copying additional files
2021-02-01T18:20:56.2709257Z Copying ConfigurationPackages
2021-02-01T18:20:56.2710375Z Copying Test Assemblies
2021-02-01T18:20:56.2711393Z Copying Extensions
2021-02-01T18:20:56.2712433Z Copying Applications
2021-02-01T18:20:56.2713439Z Copying Applications.CA
2021-02-01T18:24:49.8618627Z Starting Business Central Service Tier
2021-02-01T18:24:51.3560108Z Importing license file
2021-02-01T18:24:51.3561724Z Stopping Business Central Service Tier
2021-02-01T18:24:51.3562867Z Installation took 293 seconds
2021-02-01T18:24:51.3564241Z Installation complete
2021-02-01T18:24:51.3565313Z Initializing...
2021-02-01T18:24:51.3566509Z Setting host.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T18:24:51.3567995Z Setting gateway.docker.internal to 10.1.0.4 in container hosts file (copy from host hosts file)
2021-02-01T18:24:51.3569413Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-02-01T18:24:51.3571112Z Setting host.containerhelper.internal to 172.22.208.1 in container hosts file
2021-02-01T18:24:51.3572238Z Starting Container
2021-02-01T18:24:51.3573175Z Hostname is bcserver
2021-02-01T18:24:52.7175376Z PublicDnsName is bcserver
2021-02-01T18:24:52.7177047Z Using NavUserPassword Authentication
2021-02-01T18:24:54.3586352Z Creating Self Signed Certificate
2021-02-01T18:24:54.3594970Z Self Signed Certificate Thumbprint EF634F6026D2B7E4C4EF11C507B0E9E7AD4C6096
2021-02-01T18:24:54.3597202Z Modifying Service Tier Config File with Instance Specific Settings
2021-02-01T18:24:54.3600933Z Modifying Service Tier Config File with settings from environment variable
2021-02-01T18:24:54.3613301Z Setting EnableTaskScheduler to True
2021-02-01T18:25:51.0990455Z Starting Service Tier
2021-02-01T18:25:51.0993084Z Registering event sources
2021-02-01T18:26:27.5326626Z Creating DotNetCore Web Server Instance
2021-02-01T18:26:27.5327952Z Enabling Financials User Experience
2021-02-01T18:26:27.5329163Z Using license file 'c:\run\my\license.flf'
2021-02-01T18:26:27.5330009Z Import License
2021-02-01T18:26:28.9267134Z Creating http download site
2021-02-01T18:26:28.9268891Z Setting SA Password and enabling SA
2021-02-01T18:26:28.9270301Z Creating *** as SQL User and add to sys***
2021-02-01T18:26:42.1051961Z Creating SUPER user
2021-02-01T18:26:42.1053470Z Container IP Address: 172.22.219.129
2021-02-01T18:26:42.1054511Z Container Hostname  : bcserver
2021-02-01T18:26:42.1055603Z Container Dns Name  : bcserver
2021-02-01T18:26:42.1056787Z Web Client          : http://bcserver/BC/
2021-02-01T18:26:42.1057873Z Dev. Server         : http://bcserver
2021-02-01T18:26:42.1058924Z Dev. ServerInstance : BC
2021-02-01T18:26:42.1059931Z Setting bcserver to 172.22.219.129 in host hosts file
2021-02-01T18:26:42.1060727Z 
2021-02-01T18:26:42.1061508Z Files:
2021-02-01T18:26:42.1062477Z http://bcserver:8080/ALLanguage.vsix
2021-02-01T18:26:42.1063256Z 
2021-02-01T18:26:42.1064152Z Container Total Physical Memory is 16.0Gb
2021-02-01T18:26:42.1065166Z Container Free Physical Memory is 5.4Gb
2021-02-01T18:26:42.1065964Z 
2021-02-01T18:26:42.1066820Z Initialization took 112 seconds
2021-02-01T18:26:42.1067742Z Ready for connections!
2021-02-01T18:26:42.1081949Z Reading CustomSettings.config from bcserver
2021-02-01T18:26:44.9279339Z Creating Desktop Shortcuts for bcserver
2021-02-01T18:26:45.0128837Z Container bcserver successfully created
2021-02-01T18:26:45.0133227Z 
2021-02-01T18:26:45.0144798Z Use:
2021-02-01T18:26:45.0174001Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container
2021-02-01T18:26:45.0200641Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container
2021-02-01T18:26:45.0229853Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container
2021-02-01T18:26:45.0256900Z Remove-BcContainer -containerName bcserver to remove the container again
2021-02-01T18:26:45.0283482Z docker logs bcserver to retrieve information about URL's again
2021-02-01T18:26:45.0403625Z 
2021-02-01T18:26:45.0405110Z Creating container took 517 seconds
2021-02-01T18:26:45.0416202Z 
2021-02-01T18:26:45.0417483Z   _____           _        _ _ _                                     
2021-02-01T18:26:45.0419417Z  |_   _|         | |      | | (_)                                    
2021-02-01T18:26:45.0420613Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-02-01T18:26:45.0421670Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-02-01T18:26:45.0422705Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-02-01T18:26:45.0423750Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-02-01T18:26:45.0424881Z                                         __/ |       | |   | |        
2021-02-01T18:26:45.0425959Z                                        |___/        |_|   |_|        
2021-02-01T18:26:45.0427563Z 
2021-02-01T18:26:46.4638875Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\c6b4e1b8-6134-4274-be3c-3ca96f6cffd5\ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app
2021-02-01T18:26:56.9013844Z Synchronizing ChargeLogic Base on tenant default
2021-02-01T18:27:02.0215493Z Installing ChargeLogic Base on tenant default
2021-02-01T18:27:08.5539563Z App ChargeLogic, LLC_ChargeLogic Base_1.3.0.4016.app successfully published
2021-02-01T18:27:08.5574343Z 
2021-02-01T18:27:08.5578590Z Installing apps took 24 seconds
2021-02-01T18:27:08.5588146Z   _____                   _                                    _____                           _____            
2021-02-01T18:27:08.5589843Z  |  __ \                 (_)                 /\               / ____|                         / ____|           
2021-02-01T18:27:08.5591468Z  | |__) |   _ _ __  _ __  _ _ __   __ _     /  \   _ __  _ __| (___   ___  _   _ _ __ ___ ___| |     ___  _ __  
2021-02-01T18:27:08.5593059Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \\___ \ / _ \| | | | '__/ __/ _ \ |    / _ \| '_ \ 
2021-02-01T18:27:08.5594675Z  | | \ \ |_| | | | | | | | | | | | (_| |  / ____ \| |_) | |_) |___) | (_) | |_| | | | (__  __/ |____ (_) | |_) |
2021-02-01T18:27:08.5596262Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/_____/ \___/ \__,_|_|  \___\___|\_____\___/| .__/ 
2021-02-01T18:27:08.5597921Z                                    __/ |          | |   | |                                              | |    
2021-02-01T18:27:08.5599503Z                                   |___/           |_|   |_|                                              |_|    
2021-02-01T18:27:08.5649335Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\1762\a\CLPayments_BC15\ChargeLogic
2021-02-01T18:27:08.5668308Z File not found: LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:27:08.5697231Z Copying previous apps to packages folder
2021-02-01T18:27:08.5725824Z File not found: C:\Users\chargelogic\Desktop\vsts-agent-win-x64-2.163.1\_work\builddependencies\Releases\ChargeLogic
2021-02-01T18:27:08.5763513Z File not found: LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T18:27:08.5844241Z 
2021-02-01T18:27:08.5848367Z Running AppSourceCop took 0 seconds
2021-02-01T18:27:08.5857990Z 
2021-02-01T18:27:08.5860740Z   _____           _        _ _ _               _____                _                                            
2021-02-01T18:27:08.5862472Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-02-01T18:27:08.5864059Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-02-01T18:27:08.5865713Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-02-01T18:27:08.5867281Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-02-01T18:27:08.5868866Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-02-01T18:27:08.5870169Z                                         __/ |                                                   | |   | |        
2021-02-01T18:27:08.5871759Z                                        |___/                                                    |_|   |_|        
2021-02-01T18:27:08.5872856Z 
2021-02-01T18:27:10.2122132Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\d7cc5583-bbe9-49b3-8c6d-5a61ecc3f5f2\ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app
2021-02-01T18:28:08.5818549Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T18:28:27.8743418Z Installing ChargeLogic Payments on tenant default
2021-02-01T18:29:35.4119386Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.1.19.app successfully published
2021-02-01T18:29:35.4304079Z 
2021-02-01T18:29:35.4308599Z Installing apps took 147 seconds
2021-02-01T18:29:35.4319166Z 
2021-02-01T18:29:35.4320369Z   _____       _     _ _     _     _                                        
2021-02-01T18:29:35.4321688Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-02-01T18:29:35.4322893Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-02-01T18:29:35.4324336Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-02-01T18:29:35.4325673Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-02-01T18:29:35.4327431Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-02-01T18:29:35.4329016Z                                            __/ |          | |   | |        
2021-02-01T18:29:35.4330241Z                                           |___/           |_|   |_|        
2021-02-01T18:29:35.4331355Z 
2021-02-01T18:29:36.7884687Z Extracting C:\Users\chargelogic\AppData\Local\Temp\7e3e0210-9666-41fa-b029-179f17c7c8db\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:29:51.4149607Z Publishing C:\ProgramData\BcContainerHelper\Extensions\bcserver\2705187e-ee47-4fb6-8c05-d797e584c3ed\ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app
2021-02-01T18:30:43.5739116Z Synchronizing ChargeLogic Payments on tenant default
2021-02-01T18:30:49.5344757Z Upgrading ChargeLogic Payments on tenant default
2021-02-01T18:31:34.5692384Z App ChargeLogic, LLC_ChargeLogic Payments_4.1.2.21.app successfully published
2021-02-01T18:31:34.5867453Z 
2021-02-01T18:31:34.5872060Z Publishing apps took 119 seconds
2021-02-01T18:31:34.5883027Z    _____                            _   _               _           _   
2021-02-01T18:31:34.5884888Z   / ____|                          | | (_)             | |         | |  
2021-02-01T18:31:34.5886240Z  | |     ___  _ __  _ __   ___  ___| |_ _  ___  _ __   | |_ ___ ___| |_ 
2021-02-01T18:31:34.5887684Z  | |    / _ \| '_ \| '_ \ / _ \/ __| __| |/ _ \| '_ \  | __/ _ \ __| __|
2021-02-01T18:31:34.5888903Z  | |____ (_) | | | | | | |  __/ (__| |_| | (_) | | | | | |_  __\__ \ |_ 
2021-02-01T18:31:34.5889911Z   \_____\___/|_| |_|_| |_|\___|\___|\__|_|\___/|_| |_|  \__\___|___/\__|
2021-02-01T18:32:04.2174236Z Rolecenter 9022 opened successfully
2021-02-01T18:32:05.5136199Z Sales and receivables setup successfully opened
2021-02-01T18:32:17.5018212Z Customer List opened successfully, title is (Customer List - View - Customers)
2021-02-01T18:32:21.5815351Z DIALOG: Config Templates Select a template for a new customer - Invoke OK
2021-02-01T18:32:26.0267890Z New Customer Action successfully invoked, opened page has title Customer Card New - Customer Card - C00010
2021-02-01T18:32:26.3577143Z Customer page successfully closed
2021-02-01T18:32:26.9113701Z Customer list successfully closed
2021-02-01T18:32:27.2101414Z 
2021-02-01T18:32:27.2103112Z Running Connection Test took 53 seconds
2021-02-01T18:32:27.2114227Z 
2021-02-01T18:32:27.2115520Z   _____                           _                _____            _        _                 
2021-02-01T18:32:27.2117032Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-02-01T18:32:27.2118341Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-02-01T18:32:27.2119490Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-02-01T18:32:27.2120660Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-02-01T18:32:27.2121824Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-02-01T18:32:27.2122990Z                                            __/ |                                               
2021-02-01T18:32:27.2124116Z                                           |___/                                                
2021-02-01T18:32:27.2124841Z 
2021-02-01T18:32:29.6091584Z Removing container bcserver
2021-02-01T18:32:34.9997058Z Removing bcserver from host hosts file
2021-02-01T18:32:35.0164482Z Removing bcserver-* from host hosts file
2021-02-01T18:32:35.0527443Z Removing C:\ProgramData\BcContainerHelper\Extensions\bcserver
2021-02-01T18:32:35.0998200Z 
2021-02-01T18:32:35.1002043Z Removing container took 8 seconds
2021-02-01T18:32:35.1105881Z 
2021-02-01T18:32:35.1109924Z AL Validation finished in 4575 seconds
2021-02-01T18:32:35.1119538Z   _____                          ___      __   _ _     _       _   _                _____                            
2021-02-01T18:32:35.1122538Z  |  __ \                   /\   | \ \    / /  | (_)   | |     | | (_)              / ____|                           
2021-02-01T18:32:35.1124168Z  | |__) |   _ _ __ ______ /  \  | |\ \  / /_ _| |_  __| | __ _| |_ _  ___  _ __   | (___  _   _  ___ ___ ___ ___ ___ 
2021-02-01T18:32:35.1125929Z  |  _  / | | | '_ \______/ /\ \ | | \ \/ / _` | | |/ _` |/ _` | __| |/ _ \| '_ \   \___ \| | | |/ __/ __/ _ \ __/ __|
2021-02-01T18:32:35.1127578Z  | | \ \ |_| | | | |    / ____ \| |  \  / (_| | | | (_| | (_| | |_| | (_) | | | |  ____) | |_| | (__ (__  __\__ \__ \
2021-02-01T18:32:35.1129183Z  |_|  \_\__,_|_| |_|   /_/    \_\_|   \/ \__,_|_|_|\__,_|\__,_|\__|_|\___/|_| |_| |_____/ \__,_|\___\___\___|___/___/
2021-02-01T18:32:35.1130545Z                                                                                                   
2021-02-01T18:32:35.2162114Z ##[section]Finishing: Run AL Validation

image

This occurred on a self-hosted Azure DevOps pipeline build agent.

freddydk commented 3 years ago

The problem is not the space - it is the comma. I will fix this asap.

freddydk commented 3 years ago

A 2.0.5 preview build should be available in 3-4 hours - this will be included in 2.0.5

freddydk commented 3 years ago

Shipped in 2.0.5-preview338

freddydk commented 3 years ago

Fix shipped in 2.0.5