microsoft / navcontainerhelper

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

Compile-AppInBcContainer : Exception calling "DownloadFile" with "2" argument(s): "The remote server returned an error: (404) Not Found #1375

Closed Pellic closed 4 years ago

Pellic commented 4 years ago

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

Describe the issue impossible to complete the build pipeline,

Scripts used to create container and cause the issue All scripts comes from the last commit of the https://dev.azure.com/businesscentralapps/HelloWorld.AppSource/_git/HelloWorld.AppSource/commits

the only customization is in the Read-Settings script line 39: $pipelineName = "${ENV:SYSTEM_TEAMPROJECT}-$version"

DevOps-Pipeline.ps1:

Param(
    [Parameter(Mandatory=$true)]
    [string] $version,
    [Parameter(Mandatory=$false)]
    [int] $appBuild = 0,
    [Parameter(Mandatory=$false)]
    [int] $appRevision = 0
)

$buildArtifactFolder = $ENV:BUILD_ARTIFACTSTAGINGDIRECTORY
$baseFolder = (Get-Item (Join-Path $PSScriptRoot "..")).FullName
. (Join-Path $PSScriptRoot "Read-Settings.ps1") -version $version

$bcContainerHelperVersion = "latest"
if ($settings.PSObject.Properties.Name -eq 'bcContainerHelperVersion' -and $settings.bcContainerHelperVersion) {
    $bcContainerHelperVersion = $settings.bcContainerHelperVersion
}
Write-Host "Use bcContainerHelper Version: $bcContainerHelperVersion"

if ($bcContainerHelperVersion -like "https://*") {
    Remove-Module BcContainerHelper -ErrorAction SilentlyContinue
    $tempName = Join-Path $env:TEMP ([Guid]::NewGuid().ToString())
    Write-Host "Downloading $bcContainerHelperVersion"
    (New-Object System.Net.WebClient).DownloadFile($bcContainerHelperVersion, "$tempName.zip")
    Expand-Archive -Path "$tempName.zip" -DestinationPath $tempName
    $modulePath = (Get-Item (Join-Path $tempName "*\BcContainerHelper.psm1")).FullName
    Write-Host $modulePath
    Import-Module $modulePath -DisableNameChecking
}
else {
    throw "x"
}

$params = @{}
$insiderSasToken = "$ENV:insiderSasToken"
$licenseFile = "$ENV:licenseFile"
$codeSigncertPfxFile = "$ENV:CodeSignCertPfxFile"
if ($signapp -and $codeSigncertPfxFile) {
    if ("$ENV:CodeSignCertPfxPassword" -ne "") {
        $codeSignCertPfxPassword = try { "$ENV:CodeSignCertPfxPassword" | ConvertTo-SecureString } catch { ConvertTo-SecureString -String "$ENV:CodeSignCertPfxPassword" -AsPlainText -Force }
        $params = @{
            "codeSignCertPfxFile" = $codeSignCertPfxFile
            "codeSignCertPfxPassword" = $codeSignCertPfxPassword
        }
    }
    else {
        $codeSignCertPfxPassword = $null
    }
}

$testResultsFile = Join-Path $baseFolder "TestResults.xml"
if (Test-Path $testResultsFile) {
    Remove-Item $testResultsFile -Force
}

Run-AlPipeline @params `
    -pipelinename $pipelineName `
    -containerName $containerName `
    -imageName $imageName `
    -artifact $artifact.replace('{INSIDERSASTOKEN}',$insiderSasToken) `
    -memoryLimit $memoryLimit `
    -baseFolder $baseFolder `
    -licenseFile $LicenseFile `
    -installApps $installApps `
    -previousApps $previousApps `
    -appFolders $appFolders `
    -testFolders $testFolders `
    -testResultsFile $testResultsFile `
    -testResultsFormat 'JUnit' `
    -installTestFramework:$installTestFramework `
    -installTestLibraries:$installTestLibraries `
    -installPerformanceToolkit:$installPerformanceToolkit `
    -enableCodeCop:$enableCodeCop `
    -enableAppSourceCop:$enableAppSourceCop `
    -enablePerTenantExtensionCop:$enablePerTenantExtensionCop `
    -enableUICop:$enableUICop `
    -AppSourceCopMandatoryAffixes $appSourceCopMandatoryAffixes `
    -AppSourceCopSupportedCountries $appSourceCopSupportedCountries `
    -buildArtifactFolder $buildArtifactFolder `
    -CreateRuntimePackages `
    -additionalCountries $additionalCountries `
    -appBuild $appBuild -appRevision $appRevision

if (Test-Path $testResultsFile) {
    Write-Host "##vso[task.setvariable variable=TestResultsAvailable]True"
}

the settings.json:
{
    "name": "",
    "appFolders": "app",
    "testFolders": "test",
    "memoryLimit": "12G",
    "installApps": "",
    "installTestFramework": true,
    "installTestLibraries": true,
    "installPerformanceToolkit": false,
    "enableCodeCop": false,
    "enableAppSourceCop": true,
    "enablePerTenantExtensionCop": false,
    "enableUICop": true,
    "appSourceCopSupportedCountries": "it,us",
    "AppSourceCopMandatoryAffixes" : "CGK",
    "additionalCountries":  "it,us",
    "bcContainerHelperVersion":  "https://github.com/microsoft/navcontainerhelper/archive/dev.zip",
    "versions": [
        {
            "version": "current",
            "artifact": "bcartifacts/sandbox//it/Latest",
            "imageName": "ci",
            "signapp":  true
        },
        {
            "version": "nextminor",
            "artifact": "bcinsider/sandbox//it/SecondToLastMajor",
            "imageName": "nextminor",
            "signapp":  true
        },
        {
            "version": "nextmajor",
            "artifact": "bcinsider/sandbox//it/Latest",
            "imageName": "nextmajor",
            "signapp":  true
        }
    ]
}
the Read-Settings.ps1:
Param(
    [switch] $local,

    [Parameter(Mandatory=$true)]
    [string] $version
)

$agentName = ""
if (!$local) {
    $agentName = $ENV:AGENT_NAME
}

$settings = (Get-Content (Join-Path $PSScriptRoot "settings.json") | ConvertFrom-Json)
if ("$version" -eq "")  {
    $version = $settings.versions[0].version
    Write-Host "Version not defined, using $version"
}

$buildversion = $settings.versions | Where-Object { $_.version -eq $version }
if ($buildversion) {
    Write-Host "Set artifact = $($buildVersion.artifact)"
    Set-Variable -Name "artifact" -Value $buildVersion.artifact

    if ($buildversion.PSObject.Properties.Name -eq "signapp") {
        $signapp = $buildversion.signapp
    }
    else {
        $signapp = $true
    }
    Write-Host "Set signapp = $signapp"
    Set-Variable -Name "signapp" -Value $signapp
}
else {
    throw "Unknown version: $version"
}

$pipelineName = "$($settings.Name)-$version"
# CGK
$pipelineName = "${ENV:SYSTEM_TEAMPROJECT}-$version"

Write-Host "Set pipelineName = $pipelineName"

$imageName = ""
if ($local -or ("$AgentName" -ne "Hosted Agent" -and "$AgentName" -notlike "Azure Pipelines*")) {
    $imageName = "bcimage"
}

if ($agentName) {
    $containerName = "$($agentName -replace '[^a-zA-Z0-9---]', '')-$($pipelineName -replace '[^a-zA-Z0-9---]', '')"
}
else {
    $containerName = $pipelineName.Replace('.','-') -replace '[^a-zA-Z0-9---]', ''
}
Write-Host "Set containerName = $containerName"
if (!$local) {
    Write-Host "##vso[task.setvariable variable=containerName]$containerName"
}

"installApps", "previousApps", "appSourceCopMandatoryAffixes", "appSourceCopSupportedCountries","appFolders", "testFolders", "memoryLimit","additionalCountries" | ForEach-Object {
    $str = ""
    if ($settings.PSObject.Properties.Name -eq $_) {
        $str = $settings."$_"
    }
    Write-Host "Set $_ = $str"
    Set-Variable -Name $_ -Value $str
}

"installTestFramework", "installTestLibraries", "installPerformanceToolkit", "enableCodeCop", "enableAppSourceCop", "enablePerTenantExtensionCop", "enableUICop" | ForEach-Object {
    $str = "False"
    if ($settings.PSObject.Properties.Name -eq $_) {
        $str = $settings."$_"
    }
    Write-Host "Set $_ = $str"
    Set-Variable -Name $_ -Value ($str -eq "True")
}

if ($settings.PSObject.Properties.Name -eq "genericImageName") {
    Import-Module BcContainerHelper -DisableNameChecking
    $bcContainerHelperConfig.genericImageName = $settings.genericImageName
}

Full output of scripts

2020-10-17T07:21:48.1802248Z ##[section]Starting: Run Pipeline
2020-10-17T07:21:48.2152348Z ==============================================================================
2020-10-17T07:21:48.2152689Z Task         : PowerShell
2020-10-17T07:21:48.2152973Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-17T07:21:48.2153272Z Version      : 2.170.1
2020-10-17T07:21:48.2153501Z Author       : Microsoft Corporation
2020-10-17T07:21:48.2153840Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-17T07:21:48.2154234Z ==============================================================================
2020-10-17T07:21:50.0122643Z Generating script.
2020-10-17T07:21:50.0123531Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 393 -appRevision 0
2020-10-17T07:21:50.0124747Z ========================== Starting Command Output ===========================
2020-10-17T07:21:50.0126045Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\4db8483c-9de6-4fc8-9ee6-69b06eb42226.ps1'"
2020-10-17T07:21:50.1320968Z Set artifact = bcartifacts/sandbox//it/Latest
2020-10-17T07:21:50.1660345Z Set signapp = True
2020-10-17T07:21:50.1709856Z Set pipelineName = CGK-ELI-current
2020-10-17T07:21:50.1784963Z Set containerName = HostedAgent-CGK-ELI-current
2020-10-17T07:21:50.1984019Z Set installApps = C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-17T07:21:50.2039767Z Set previousApps = 
2020-10-17T07:21:50.2058868Z Set appSourceCopMandatoryAffixes = CGK
2020-10-17T07:21:50.2133267Z Set appSourceCopSupportedCountries = it,us
2020-10-17T07:21:50.2156485Z Set appFolders = app
2020-10-17T07:21:50.2203868Z Set testFolders = test
2020-10-17T07:21:50.2263519Z Set memoryLimit = 12G
2020-10-17T07:21:50.2372989Z Set additionalCountries = it,us
2020-10-17T07:21:50.2450313Z Set installTestFramework = True
2020-10-17T07:21:50.2540772Z Set installTestLibraries = False
2020-10-17T07:21:50.2637578Z Set installPerformanceToolkit = False
2020-10-17T07:21:50.2676167Z Set enableCodeCop = False
2020-10-17T07:21:50.2760290Z Set enableAppSourceCop = True
2020-10-17T07:21:50.2781849Z Set enablePerTenantExtensionCop = False
2020-10-17T07:21:50.2843139Z Set enableUICop = True
2020-10-17T07:21:50.2869080Z Use bcContainerHelper Version: https://github.com/microsoft/navcontainerhelper/archive/dev.zip
2020-10-17T07:21:50.2967463Z Downloading https://github.com/microsoft/navcontainerhelper/archive/dev.zip
2020-10-17T07:22:13.3914770Z C:\Users\VssAdministrator\AppData\Local\Temp\82fac35d-b761-4783-8d5b-242d5ff7dc9d\navcontainerhelper-dev\BcContainerHelper.psm1
2020-10-17T07:22:16.9130859Z Determining artifacts to use
2020-10-17T07:22:24.8120453Z Found https://bcartifacts.azureedge.net/sandbox/17.0.17126.17731/it
2020-10-17T07:22:31.7568835Z Found https://bcartifacts.azureedge.net/sandbox/17.0.17126.17731/it
2020-10-17T07:22:40.5107851Z Found https://bcartifacts.azureedge.net/sandbox/17.0.17126.17731/us
2020-10-17T07:22:40.5894518Z   _____                               _                
2020-10-17T07:22:40.5912382Z  |  __ \                             | |               
2020-10-17T07:22:40.5930466Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2020-10-17T07:22:40.5946789Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2020-10-17T07:22:40.5977703Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2020-10-17T07:22:40.5998977Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2020-10-17T07:22:40.6010707Z 
2020-10-17T07:22:40.6033767Z Pipeline name               CGK-ELI-current
2020-10-17T07:22:40.6086921Z Container name              HostedAgent-CGK-ELI-current
2020-10-17T07:22:40.6089553Z Image name                  
2020-10-17T07:22:40.6105621Z ArtifactUrl                 https://bcartifacts.azureedge.net/sandbox/17.0.17126.17731/it
2020-10-17T07:22:40.6124457Z SasToken                    Not Specified
2020-10-17T07:22:40.6438542Z Credential                  admin/Zemy9100
2020-10-17T07:22:40.6495295Z MemoryLimit                 12G
2020-10-17T07:22:40.6527405Z Enable Task Scheduler       False
2020-10-17T07:22:40.6558949Z Assign Premium Plan         False
2020-10-17T07:22:40.6590512Z Install Test Framework      True
2020-10-17T07:22:40.6624494Z Install Test Libraries      False
2020-10-17T07:22:40.6734487Z Install Perf. Toolkit       False
2020-10-17T07:22:40.6771544Z enableCodeCop               False
2020-10-17T07:22:40.6881961Z enableAppSourceCop          True
2020-10-17T07:22:40.6909246Z enableUICop                 True
2020-10-17T07:22:40.6941932Z enablePerTenantExtensionCop False
2020-10-17T07:22:40.6985244Z azureDevOps                 False
2020-10-17T07:22:40.7021335Z License file                Specified
2020-10-17T07:22:40.7081969Z CodeSignCertPfxFile         Specified
2020-10-17T07:22:40.7145238Z TestResultsFile             D:\a\1\s\TestResults.xml
2020-10-17T07:22:40.7180141Z TestResultsFormat           JUnit
2020-10-17T07:22:40.7244630Z AdditionalCountries         it,us
2020-10-17T07:22:40.7278364Z PackagesFolder              D:\a\1\s\.packages
2020-10-17T07:22:40.7343581Z OutputFolder                D:\a\1\s\.output
2020-10-17T07:22:40.7373078Z BuildArtifactFolder         D:\a\1\a
2020-10-17T07:22:40.7464104Z CreateRuntimePackages       True
2020-10-17T07:22:40.7497916Z AppBuild                    393
2020-10-17T07:22:40.7530216Z AppRevision                 0
2020-10-17T07:22:40.7563324Z Mandatory Affixes           CGK
2020-10-17T07:22:40.7597222Z Supported Countries         it,us
2020-10-17T07:22:40.7616994Z Install Apps
2020-10-17T07:22:40.7641161Z - C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-17T07:22:40.7681085Z Previous Apps
2020-10-17T07:22:40.7716208Z - None
2020-10-17T07:22:40.7752750Z Application folders
2020-10-17T07:22:40.7771947Z - D:\a\1\s\app
2020-10-17T07:22:40.7790224Z Test application folders
2020-10-17T07:22:40.7807180Z - D:\a\1\s\test
2020-10-17T07:22:40.7915459Z 
2020-10-17T07:22:40.7933421Z   _____       _ _ _                                          _        _                            
2020-10-17T07:22:40.7980747Z  |  __ \     | | (_)                                        (_)      (_)                           
2020-10-17T07:22:40.7998390Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2020-10-17T07:22:40.8016799Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2020-10-17T07:22:40.8031214Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2020-10-17T07:22:40.8062546Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2020-10-17T07:22:40.8063286Z                            __/ |   __/ |                                                 __/ |     
2020-10-17T07:22:40.8070654Z                           |___/   |___/                                                 |___/      
2020-10-17T07:22:40.8075881Z 
2020-10-17T07:22:40.8091822Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-17T07:25:36.1985476Z 
2020-10-17T07:25:36.2006894Z Pulling generic image took 175 seconds
2020-10-17T07:25:36.2019807Z 
2020-10-17T07:25:36.2041515Z    _____                _   _                               _        _                 
2020-10-17T07:25:36.2055121Z   / ____|              | | (_)                             | |      (_)                
2020-10-17T07:25:36.2074732Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-17T07:25:36.2090082Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-17T07:25:36.2109052Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-17T07:25:36.2127600Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-17T07:25:36.2157615Z                                      __/ |                                             
2020-10-17T07:25:36.2251422Z                                     |___/                                              
2020-10-17T07:25:36.2259065Z 
2020-10-17T07:25:36.4236443Z WARNING: Container name should not exceed 15 characters
2020-10-17T07:26:09.8456516Z BcContainerHelper is version 1.0.10
2020-10-17T07:26:09.8471981Z BcContainerHelper is running as administrator
2020-10-17T07:26:09.8510970Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2020-10-17T07:26:10.7795533Z Docker Client Version is 19.03.12
2020-10-17T07:26:10.7836501Z Docker Server Version is 19.03.12
2020-10-17T07:26:11.5053180Z Downloading application artifact /sandbox/17.0.17126.17731/it
2020-10-17T07:26:11.5070016Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\e2c3d9ff-93d4-407f-af73-ec2192372c5c.zip
2020-10-17T07:26:19.5412100Z Unpacking application artifact to tmp folder using 7zip
2020-10-17T07:26:29.7292044Z Downloading platform artifact /sandbox/17.0.17126.17731/platform
2020-10-17T07:26:29.7315263Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\a41be9ae-20f8-4953-99d7-98f6ee342de2.zip
2020-10-17T07:26:35.9535716Z Unpacking platform artifact to tmp folder using 7zip
2020-10-17T07:26:59.3358894Z Downloading Prerequisite Components
2020-10-17T07:26:59.3597659Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17731\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2020-10-17T07:26:59.3879388Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17731\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2020-10-17T07:26:59.4490872Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17731\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2020-10-17T07:27:01.3573738Z Fetching all docker images
2020-10-17T07:27:01.9699769Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-17T07:27:02.3440697Z Creating Container HostedAgent-CGK-ELI-current
2020-10-17T07:27:02.3460942Z Version: 17.0.17126.17731-IT
2020-10-17T07:27:02.3478474Z Style: sandbox
2020-10-17T07:27:02.3496617Z Multitenant: Yes
2020-10-17T07:27:02.3516735Z Platform: 17.0.17020.17674
2020-10-17T07:27:02.3535516Z Generic Tag: 0.1.0.24
2020-10-17T07:27:02.3607942Z Container OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-17T07:27:02.3624215Z Host OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-17T07:27:02.3770290Z Using process isolation
2020-10-17T07:27:02.3841396Z Using locale it-IT
2020-10-17T07:27:02.3891847Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2020-10-17T07:27:02.4082970Z Using license file C:\License.flf
2020-10-17T07:27:02.4806629Z Additional Parameters:
2020-10-17T07:27:02.4829495Z --volume "D:\a\1\s:c:\sources"
2020-10-17T07:27:02.4849382Z --env customNavSettings=EnableTaskScheduler=False
2020-10-17T07:27:02.4876685Z Files in C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\my:
2020-10-17T07:27:02.4982844Z - AdditionalOutput.ps1
2020-10-17T07:27:02.5006239Z - license.flf
2020-10-17T07:27:02.5056788Z - MainLoop.ps1
2020-10-17T07:27:02.5089280Z - SetupVariables.ps1
2020-10-17T07:27:02.5111743Z - updatehosts.ps1
2020-10-17T07:27:02.5131001Z Creating container HostedAgent-CGK-ELI-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-17T07:27:03.4980880Z b2f5cc4dba5988f612452bafb4682f2bf6e3311b75d4badc7fece60a6ce575d7
2020-10-17T07:27:11.9331671Z Waiting for container HostedAgent-CGK-ELI-current to be ready
2020-10-17T07:27:19.6778151Z Adding HOSTEDAGENT-CGK to hosts file
2020-10-17T07:27:22.7167506Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17731/it
2020-10-17T07:27:22.7185538Z Using installer from C:\Run\150-new
2020-10-17T07:27:22.7195908Z Installing Business Central
2020-10-17T07:27:22.7213260Z Installing from artifacts
2020-10-17T07:27:33.0515019Z Starting Local SQL Server
2020-10-17T07:27:33.0532289Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2020-10-17T07:27:34.9618796Z start...
2020-10-17T07:27:34.9634022Z Starting Internet Information Server
2020-10-17T07:27:36.4467881Z Copying Service Tier Files
2020-10-17T07:27:40.4575835Z Copying PowerShell Scripts
2020-10-17T07:27:40.4652797Z Copying dependencies
2020-10-17T07:27:40.4673096Z Copying ReportBuilder
2020-10-17T07:27:40.4698520Z Importing PowerShell Modules
2020-10-17T07:27:57.3955472Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17731\it\BusinessCentral-IT.bak
2020-10-17T07:28:22.1713569Z Restoring CRONUS Demo Database
2020-10-17T07:33:11.8111742Z Exporting Application to CRONUS
2020-10-17T07:33:20.1231590Z Removing Application from tenant
2020-10-17T07:33:20.1383185Z Modifying Business Central Service Tier Config File for Docker
2020-10-17T07:33:20.1383986Z Creating Business Central Service Tier
2020-10-17T07:33:21.4537672Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2020-10-17T07:33:21.4563500Z Copying Web Client Files
2020-10-17T07:33:21.4592349Z Copying Client Files
2020-10-17T07:33:21.4629698Z Copying ModernDev Files
2020-10-17T07:33:21.5054470Z Copying additional files
2020-10-17T07:33:21.5081403Z Copying ConfigurationPackages
2020-10-17T07:33:21.5099791Z Copying Test Assemblies
2020-10-17T07:33:21.5138742Z Copying Extensions
2020-10-17T07:33:21.5186456Z Copying Applications
2020-10-17T07:33:21.5230286Z Copying Applications.IT
2020-10-17T07:33:59.9023165Z Starting Business Central Service Tier
2020-10-17T07:34:02.3862391Z Importing license file
2020-10-17T07:34:02.3884974Z Copying Database on localhost\SQLEXPRESS from tenant to default
2020-10-17T07:34:02.3902426Z Taking database tenant offline
2020-10-17T07:34:21.2973892Z Copying database files
2020-10-17T07:34:21.2991743Z Attaching files as new Database default
2020-10-17T07:34:21.3037217Z Putting database tenant back online
2020-10-17T07:34:21.3069869Z Mounting tenant database
2020-10-17T07:36:09.8360785Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-17T07:36:11.6972037Z Sync'ing Tenant
2020-10-17T07:36:11.7039150Z Tenant is Operational
2020-10-17T07:36:12.9844804Z Stopping Business Central Service Tier
2020-10-17T07:36:12.9984306Z Installation took 530 seconds
2020-10-17T07:36:13.1429733Z Installation complete
2020-10-17T07:36:13.1430082Z Initializing...
2020-10-17T07:36:13.1441916Z Setting host.containerhelper.internal to 172.23.144.1 in container hosts file
2020-10-17T07:36:13.1465894Z Starting Container
2020-10-17T07:36:13.1520604Z Hostname is HostedAgent-CGK-ELI-current
2020-10-17T07:36:15.7729174Z PublicDnsName is HostedAgent-CGK-ELI-current
2020-10-17T07:36:15.8029622Z Using NavUserPassword Authentication
2020-10-17T07:36:18.5907900Z Creating Self Signed Certificate
2020-10-17T07:36:19.9419770Z Self Signed Certificate Thumbprint 7FF0FD1C648156EA245C9CC7CDD0BE3E10222F63
2020-10-17T07:36:19.9503117Z Modifying Service Tier Config File with Instance Specific Settings
2020-10-17T07:36:19.9513738Z Modifying Service Tier Config File with settings from environment variable
2020-10-17T07:36:21.3269862Z Setting EnableTaskScheduler to False
2020-10-17T07:36:37.3556902Z Starting Service Tier
2020-10-17T07:36:37.3572969Z Registering event sources
2020-10-17T07:36:45.1314333Z Creating DotNetCore Web Server Instance
2020-10-17T07:36:45.1326010Z Enabling Financials User Experience
2020-10-17T07:36:45.1362320Z Enabling rewrite rule: Don't rewrite system files
2020-10-17T07:36:45.1385482Z Enabling rewrite rule: Already have tenant specified
2020-10-17T07:36:45.1401122Z Enabling rewrite rule: Hostname (without port) to tenant
2020-10-17T07:36:45.1421618Z Using license file 'c:\run\my\license.flf'
2020-10-17T07:36:46.5390041Z Import License
2020-10-17T07:36:46.5406141Z Dismounting Tenant
2020-10-17T07:36:46.5420296Z Mounting Tenant
2020-10-17T07:36:58.5982158Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-17T07:37:01.4215532Z Sync'ing Tenant
2020-10-17T07:37:01.4259432Z Tenant is Operational
2020-10-17T07:37:05.5285350Z Creating http download site
2020-10-17T07:37:05.5313290Z Setting SA Password and enabling SA
2020-10-17T07:37:05.5341645Z Creating admin as SQL User and add to sysadmin
2020-10-17T07:37:05.5376419Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:37:05.5400532Z Creating SUPER user
2020-10-17T07:37:14.6805082Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:37:18.7057754Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:37:18.7084019Z Container IP Address: 172.23.146.242
2020-10-17T07:37:18.7100946Z Container Hostname  : HostedAgent-CGK-ELI-current
2020-10-17T07:37:18.7169646Z Container Dns Name  : HostedAgent-CGK-ELI-current
2020-10-17T07:37:18.7195412Z Web Client          : http://HostedAgent-CGK-ELI-current/BC/?tenant=default
2020-10-17T07:37:18.7224181Z Dev. Server         : http://HostedAgent-CGK-ELI-current
2020-10-17T07:37:18.7240490Z Dev. ServerInstance : BC
2020-10-17T07:37:18.7272203Z Dev. Server Tenant  : default
2020-10-17T07:37:18.7311305Z Setting HostedAgent-CGK-ELI-current to 172.23.146.242 in host hosts file
2020-10-17T07:37:18.7336320Z Setting HostedAgent-CGK-ELI-current-default to 172.23.146.242 in host hosts file
2020-10-17T07:37:18.7357365Z 
2020-10-17T07:37:18.7383435Z Files:
2020-10-17T07:37:18.7401580Z http://HostedAgent-CGK-ELI-current:8080/ALLanguage.vsix
2020-10-17T07:37:18.7409536Z 
2020-10-17T07:37:18.7483317Z Container Total Physical Memory is 7.0Gb
2020-10-17T07:37:18.7498612Z Container Free Physical Memory is 2.5Gb
2020-10-17T07:37:18.7507630Z 
2020-10-17T07:37:18.7568683Z Initialization took 65 seconds
2020-10-17T07:37:18.7624445Z Ready for connections!
2020-10-17T07:37:19.0474218Z Reading CustomSettings.config from HostedAgent-CGK-ELI-current
2020-10-17T07:37:22.8393527Z Creating Desktop Shortcuts for HostedAgent-CGK-ELI-current
2020-10-17T07:37:23.3769399Z Container HostedAgent-CGK-ELI-current successfully created
2020-10-17T07:37:23.3774562Z 
2020-10-17T07:37:23.3794757Z Use:
2020-10-17T07:37:23.3815432Z Get-BcContainerEventLog -containerName HostedAgent-CGK-ELI-current to retrieve a snapshot of the event log from the container
2020-10-17T07:37:23.3842432Z Get-BcContainerDebugInfo -containerName HostedAgent-CGK-ELI-current to get debug information about the container
2020-10-17T07:37:23.3884332Z Enter-BcContainer -containerName HostedAgent-CGK-ELI-current to open a PowerShell prompt inside the container
2020-10-17T07:37:23.3892943Z Remove-BcContainer -containerName HostedAgent-CGK-ELI-current to remove the container again
2020-10-17T07:37:23.3921567Z docker logs HostedAgent-CGK-ELI-current to retrieve information about URL's again
2020-10-17T07:37:23.4210662Z 
2020-10-17T07:37:23.4287658Z Creating container took 707 seconds
2020-10-17T07:37:23.4296244Z 
2020-10-17T07:37:23.4357907Z   _____           _        _ _ _                                     
2020-10-17T07:37:23.4383285Z  |_   _|         | |      | | (_)                                    
2020-10-17T07:37:23.4403266Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-17T07:37:23.4438544Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-17T07:37:23.4477653Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-17T07:37:23.4496530Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-17T07:37:23.4512515Z                                         __/ |       | |   | |        
2020-10-17T07:37:23.4544553Z                                        |___/        |_|   |_|        
2020-10-17T07:37:23.4551896Z 
2020-10-17T07:37:25.6767793Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-17T07:37:26.1592574Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:37:41.4498688Z Synchronizing Core Management on tenant default
2020-10-17T07:37:44.2257576Z Installing Core Management on tenant default
2020-10-17T07:37:44.2422037Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:37:49.4529063Z App successfully published
2020-10-17T07:37:49.4535881Z 
2020-10-17T07:37:49.4561094Z Installing apps took 26 seconds
2020-10-17T07:37:49.4594903Z 
2020-10-17T07:37:49.4616757Z    _____                      _ _ _                                     
2020-10-17T07:37:49.4632631Z   / ____|                    (_) (_)                                    
2020-10-17T07:37:49.4659267Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-17T07:37:49.4681248Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-17T07:37:49.4705154Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-17T07:37:49.4726561Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-17T07:37:49.4746687Z                        | |                 __/ |       | |   | |        
2020-10-17T07:37:49.4781532Z                        |_|                |___/        |_|   |_|        
2020-10-17T07:37:49.4788531Z 
2020-10-17T07:37:49.5219099Z Using Version 1.0.393.0
2020-10-17T07:37:49.6727985Z Creating AppSourceCop.json for validation
2020-10-17T07:37:52.3476964Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-17T07:38:01.9345049Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:02.1588239Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:03.2357528Z Downloading symbols: Microsoft_Application_17.0.17126.17731.app
2020-10-17T07:38:03.2531766Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:06.0272093Z Adding dependency to System Application from Microsoft
2020-10-17T07:38:06.1640485Z Adding dependency to Base Application from Microsoft
2020-10-17T07:38:06.1641596Z Downloading symbols: Microsoft_System_17.0.17020.17674.app
2020-10-17T07:38:06.1642728Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:07.2981858Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-17T07:38:07.3001642Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default
2020-10-17T07:38:08.4927068Z Downloading symbols: Microsoft_System Application_17.0.17126.17731.app
2020-10-17T07:38:08.4945846Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:09.8636890Z Downloading symbols: Microsoft_Base Application_17.0.17126.17731.app
2020-10-17T07:38:09.8647164Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:11.2709777Z Compiling...
2020-10-17T07:38:11.3017525Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.393.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2020-10-17T07:38:25.5485562Z Microsoft (R) AL Compiler version 6.0.5.10826
2020-10-17T07:38:25.5507862Z Copyright (C) Microsoft Corporation. All rights reserved
2020-10-17T07:38:25.5513768Z 
2020-10-17T07:38:25.5561351Z Compilation started for project 'Electronic Invoicing' containing '66' files at '7:38:11.853'.
2020-10-17T07:38:25.5567787Z 
2020-10-17T07:38:35.0857457Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.0886601Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.0946455Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.0954717Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.0972683Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1019128Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1031352Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1046571Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1062080Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1076167Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1145084Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1170563Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1189314Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1207064Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1229077Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.1248972Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1264720Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1282787Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1311238Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1326333Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1339956Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.1356147Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1370326Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1391995Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1409777Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1423121Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1442172Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1458613Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1475276Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-17T07:38:35.1492631Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.1506385Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-17T07:38:35.1522976Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field.
2020-10-17T07:38:35.1541578Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'.
2020-10-17T07:38:35.1560991Z 
2020-10-17T07:38:35.1573662Z Compilation ended at '7:38:25.161'.
2020-10-17T07:38:35.1578988Z 
2020-10-17T07:38:35.1596101Z D:\a\1\s\.output\Cegeka S.p.A._Electronic Invoicing_1.0.393.0.app successfully created in 45 seconds
2020-10-17T07:38:35.1620333Z Cegeka S.p.A._Electronic Invoicing_1.0.393.0.app copied to D:\a\1\s\.packages
2020-10-17T07:38:35.1636967Z   _____                            _   _               _______       _     _______          _ _    _ _   
2020-10-17T07:38:35.1655287Z  |_   _|                          | | (_)             |__   __|     | |   |__   __|        | | |  (_) |  
2020-10-17T07:38:35.1678333Z    | |  _ __ ___  _ __   ___  _ __| |_ _ _ __   __ _     | | ___ ___| |_     | | ___   ___ | | | ___| |_ 
2020-10-17T07:38:35.1693116Z    | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` |    | |/ _ \ __| __|    | |/ _ \ / _ \| | |/ / | __|
2020-10-17T07:38:35.1746528Z   _| |_| | | | | | |_) | (_) | |  | |_| | | | | (_| |    | |  __\__ \ |_     | | (_) | (_) | |   <| | |_ 
2020-10-17T07:38:35.1761087Z  |_____|_| |_| |_| .__/ \___/|_|   \__|_|_| |_|\__, |    |_|\___|___/\__|    |_|\___/ \___/|_|_|\_\_|\__|
2020-10-17T07:38:35.1776515Z                  | |                            __/ |                                                    
2020-10-17T07:38:35.1791364Z                  |_|                           |___/                                                     
2020-10-17T07:38:37.3043803Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:38.1693260Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17731.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Any_17.0.17126.17731.app
2020-10-17T07:38:38.9587500Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Any_17.0.17126.17731.app
2020-10-17T07:38:38.9662794Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:39.4416256Z Synchronizing Any on tenant default
2020-10-17T07:38:39.5701289Z Installing Any on tenant default
2020-10-17T07:38:39.5889776Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:39.7491736Z App successfully published
2020-10-17T07:38:39.7753993Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:40.4800263Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17731.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Assert_17.0.17126.17731.app
2020-10-17T07:38:41.3576526Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Assert_17.0.17126.17731.app
2020-10-17T07:38:41.3696638Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:41.5330620Z Synchronizing Library Assert on tenant default
2020-10-17T07:38:41.6285073Z Installing Library Assert on tenant default
2020-10-17T07:38:41.6439321Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:41.8151235Z App successfully published
2020-10-17T07:38:41.8487098Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:42.6619131Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17731.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Variable Storage_17.0.17126.17731.app
2020-10-17T07:38:43.6444559Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Variable Storage_17.0.17126.17731.app
2020-10-17T07:38:43.6585977Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:43.7763813Z Synchronizing Library Variable Storage on tenant default
2020-10-17T07:38:43.8924246Z Installing Library Variable Storage on tenant default
2020-10-17T07:38:43.9065681Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:44.1554158Z App successfully published
2020-10-17T07:38:44.2327876Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:44.9367330Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Test Runner.app
2020-10-17T07:38:45.7549594Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Test Runner.app
2020-10-17T07:38:45.7681336Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:46.5900641Z Synchronizing Test Runner on tenant default
2020-10-17T07:38:47.5165954Z Installing Test Runner on tenant default
2020-10-17T07:38:47.5286545Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:47.8523295Z App successfully published
2020-10-17T07:38:47.8544895Z TestToolkit successfully imported
2020-10-17T07:38:47.8552547Z 
2020-10-17T07:38:47.8585932Z Importing Test Toolkit took 13 seconds
2020-10-17T07:38:47.8591321Z    _____                      _ _ _               _           _                           
2020-10-17T07:38:47.8608818Z   / ____|                    (_) (_)             | |         | |                          
2020-10-17T07:38:47.8627310Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _  | |_ ___ ___| |_    __ _ _ __  _ __  ___ 
2020-10-17T07:38:47.8643697Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` | | __/ _ \ __| __|  / _` | '_ \| '_ \/ __|
2020-10-17T07:38:47.8663042Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | |_  __\__ \ |_  | (_| | |_) | |_) \__ \
2020-10-17T07:38:47.8684843Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__\___|___/\__|  \__,_| .__/| .__/|___/
2020-10-17T07:38:47.8714657Z                        | |                 __/ |                         | |   | |        
2020-10-17T07:38:47.8729021Z                        |_|                |___/                          |_|   |_|        
2020-10-17T07:38:47.9252047Z Using Version 1.0.393.0
2020-10-17T07:38:48.9834494Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-17T07:38:49.4136223Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:49.4539455Z WARNING: This license is not compatible with this version of Business Central.
2020-10-17T07:38:49.5060150Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17731.app
2020-10-17T07:38:49.5076082Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:50.1840957Z Downloading symbols: Microsoft_Any_17.0.17126.17731.app
2020-10-17T07:38:50.1857625Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:50.6758022Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17731.app
2020-10-17T07:38:50.6780627Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:51.2335893Z Downloading symbols: Microsoft_System Application Test Library_17.0.0.0.app
2020-10-17T07:38:51.2348863Z Url : http://172.23.146.242:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default
2020-10-17T07:38:51.5858561Z 
2020-10-17T07:38:51.5878222Z   _____                           _                _____            _        _                 
2020-10-17T07:38:51.5900910Z  |  __ \                         (_)              / ____|          | |      (_)                
2020-10-17T07:38:51.5967356Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-17T07:38:51.5996629Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-17T07:38:51.6019229Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-17T07:38:51.6040228Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-17T07:38:51.6057856Z                                            __/ |                                               
2020-10-17T07:38:51.6077716Z                                           |___/                                                
2020-10-17T07:38:51.6082796Z 
2020-10-17T07:38:53.1711393Z Removing container HostedAgent-CGK-ELI-current
2020-10-17T07:38:58.5759021Z Removing HostedAgent-CGK-ELI-current from host hosts file
2020-10-17T07:38:58.7957887Z Removing HostedAgent-CGK-ELI-current-* from host hosts file
2020-10-17T07:38:58.8482922Z Removing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current
2020-10-17T07:38:58.8811741Z 
2020-10-17T07:38:58.8829939Z Removing container took 7 seconds
2020-10-17T07:39:00.4050530Z ##[error]Compile-AppInBcContainer : Exception calling "DownloadFile" with "2" argument(s): "The remote server returned an 
error: (404) Not Found."
At C:\Users\VssAdministrator\AppData\Local\Temp\82fac35d-b761-4783-8d5b-242d5ff7dc9d\navcontainerhelper-dev\AppHandling
\Run-AlPipeline.ps1:431 char:64
+ ...  Param([Hashtable]$parameters) Compile-AppInBcContainer @parameters }
+                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Compile-AppInBcContainer], MethodInvocationException
    + FullyQualifiedErrorId : WebException,Compile-AppInBcContainer
2020-10-17T07:39:00.4865299Z ##[error]PowerShell exited with code '1'.
2020-10-17T07:39:00.5615020Z ##[section]Finishing: Run Pipeline
2020-10-17T07:39:00.6959025Z ##[section]Starting: Cleanup
2020-10-17T07:39:00.9268375Z ==============================================================================
2020-10-17T07:39:00.9268698Z Task         : PowerShell
2020-10-17T07:39:00.9269007Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-17T07:39:00.9269296Z Version      : 2.170.1
2020-10-17T07:39:00.9269555Z Author       : Microsoft Corporation
2020-10-17T07:39:00.9270614Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-17T07:39:00.9270992Z ==============================================================================
2020-10-17T07:39:04.4965527Z Generating script.
2020-10-17T07:39:04.5921668Z ========================== Starting Command Output ===========================
2020-10-17T07:39:04.6309661Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\afd17065-6a13-466e-9f3f-24c57b52ec77.ps1'"
2020-10-17T07:39:11.1650509Z Total reclaimed space: 0B
2020-10-17T07:39:11.2690475Z ##[section]Finishing: Cleanup
2020-10-17T07:39:11.2736164Z ##[section]Starting: Checkout CGK-CIPipeline@master to s
2020-10-17T07:39:11.2956829Z ==============================================================================
2020-10-17T07:39:11.2957189Z Task         : Get sources
2020-10-17T07:39:11.2957527Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2020-10-17T07:39:11.2957835Z Version      : 1.0.0
2020-10-17T07:39:11.2958042Z Author       : Microsoft
2020-10-17T07:39:11.2958387Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2020-10-17T07:39:11.2958756Z ==============================================================================
2020-10-17T07:39:12.7630160Z Cleaning any cached credential from repository: CGK-CIPipeline (Git)
2020-10-17T07:39:12.7839274Z ##[section]Finishing: Checkout CGK-CIPipeline@master to s
2020-10-17T07:39:12.8114862Z ##[section]Starting: Finalize Job
2020-10-17T07:39:12.8363145Z Cleaning up task key
2020-10-17T07:39:12.8365223Z Start cleaning up orphan processes.
2020-10-17T07:39:13.2213892Z ##[section]Finishing: Finalize Job
2020-10-17T07:39:13.2305695Z ##[section]Finishing: Build

...
previous log:
2020-10-15T08:03:57.9736154Z ##[section]Starting: Run Pipeline
2020-10-15T08:03:57.9946935Z ==============================================================================
2020-10-15T08:03:57.9947263Z Task         : PowerShell
2020-10-15T08:03:57.9947589Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-15T08:03:57.9947852Z Version      : 2.170.1
2020-10-15T08:03:57.9948069Z Author       : Microsoft Corporation
2020-10-15T08:03:57.9948984Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-15T08:03:57.9949618Z ==============================================================================
2020-10-15T08:03:59.5346875Z Generating script.
2020-10-15T08:03:59.5425358Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 341 -appRevision 0
2020-10-15T08:03:59.6167091Z ========================== Starting Command Output ===========================
2020-10-15T08:03:59.6652511Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\15b5e69b-6f3f-4c11-93aa-f45a9e0c69b3.ps1'"
2020-10-15T08:04:00.3326540Z Set artifact = bcartifacts/sandbox//it/Latest
2020-10-15T08:04:00.3633886Z Set signapp = True
2020-10-15T08:04:00.3678771Z Set pipelineName = CGK-ELI-current
2020-10-15T08:04:00.3853611Z Set containerName = HostedAgent-CGK-ELI-current
2020-10-15T08:04:00.4021771Z Set installApps = C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-15T08:04:00.4083167Z Set previousApps = 
2020-10-15T08:04:00.4114265Z Set appSourceCopMandatoryAffixes = CGK
2020-10-15T08:04:00.4188885Z Set appSourceCopSupportedCountries = it,us
2020-10-15T08:04:00.4262562Z Set appFolders = app
2020-10-15T08:04:00.4309583Z Set testFolders = test
2020-10-15T08:04:00.4362727Z Set memoryLimit = 12G
2020-10-15T08:04:00.4491536Z Set installTestFramework = True
2020-10-15T08:04:00.4590017Z Set installTestLibraries = True
2020-10-15T08:04:00.4691995Z Set installPerformanceToolkit = False
2020-10-15T08:04:00.4794351Z Set enableCodeCop = False
2020-10-15T08:04:00.4964399Z Set enableAppSourceCop = True
2020-10-15T08:04:00.5033080Z Set enablePerTenantExtensionCop = False
2020-10-15T08:04:00.5125773Z Set enableUICop = True
2020-10-15T08:04:13.9917073Z   _____                               _                
2020-10-15T08:04:13.9979871Z  |  __ \                             | |               
2020-10-15T08:04:14.0008190Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2020-10-15T08:04:14.0024339Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2020-10-15T08:04:14.0041815Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2020-10-15T08:04:14.0099260Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2020-10-15T08:04:14.0107849Z 
2020-10-15T08:04:14.0143103Z Pipeline name               CGK-ELI-current
2020-10-15T08:04:14.0190151Z Container name              HostedAgent-CGK-ELI-current
2020-10-15T08:04:14.0215580Z Image name                  
2020-10-15T08:04:14.0236487Z ArtifactUrl                 https://bcartifacts.azureedge.net/sandbox/17.0.17126.17680/it
2020-10-15T08:04:14.0259416Z SasToken                    Not Specified
2020-10-15T08:04:14.0626527Z Credential                  admin/July6145
2020-10-15T08:04:14.0735046Z MemoryLimit                 12G
2020-10-15T08:04:14.0756051Z Enable Task Scheduler       False
2020-10-15T08:04:14.0818645Z Assign Premium Plan         False
2020-10-15T08:04:14.0861073Z Install Test Framework      True
2020-10-15T08:04:14.0909458Z Install Test Libraries      True
2020-10-15T08:04:14.0964791Z Install Perf. Toolkit       False
2020-10-15T08:04:14.1041158Z enableCodeCop               False
2020-10-15T08:04:14.1129778Z enableAppSourceCop          True
2020-10-15T08:04:14.1173970Z enableUICop                 True
2020-10-15T08:04:14.1226980Z enablePerTenantExtensionCop False
2020-10-15T08:04:14.1285673Z azureDevOps                 False
2020-10-15T08:04:14.1348758Z License file                Specified
2020-10-15T08:04:14.1389162Z CodeSignCertPfxFile         Specified
2020-10-15T08:04:14.1434789Z TestResultsFile             D:\a\1\s\TestResults.xml
2020-10-15T08:04:14.1480006Z TestResultsFormat           JUnit
2020-10-15T08:04:14.1534265Z PackagesFolder              D:\a\1\s\.packages
2020-10-15T08:04:14.1579191Z OutputFolder                D:\a\1\s\.output
2020-10-15T08:04:14.1616273Z BuildArtifactFolder         D:\a\1\a
2020-10-15T08:04:14.1668711Z CreateRuntimePackages       True
2020-10-15T08:04:14.1728637Z AppBuild                    341
2020-10-15T08:04:14.1769663Z AppRevision                 0
2020-10-15T08:04:14.1891850Z Mandatory Affixes           CGK
2020-10-15T08:04:14.1930959Z Supported Countries         it,us
2020-10-15T08:04:14.1960616Z Install Apps
2020-10-15T08:04:14.1984124Z - C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-15T08:04:14.2003006Z Previous Apps
2020-10-15T08:04:14.2024533Z - None
2020-10-15T08:04:14.2045177Z Application folders
2020-10-15T08:04:14.2076192Z - D:\a\1\s\app
2020-10-15T08:04:14.2106519Z Test application folders
2020-10-15T08:04:14.2138749Z - D:\a\1\s\test
2020-10-15T08:04:14.2231843Z 
2020-10-15T08:04:14.2254300Z   _____       _ _ _                                          _        _                            
2020-10-15T08:04:14.2275269Z  |  __ \     | | (_)                                        (_)      (_)                           
2020-10-15T08:04:14.2292743Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2020-10-15T08:04:14.2336080Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2020-10-15T08:04:14.2356783Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2020-10-15T08:04:14.2380053Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2020-10-15T08:04:14.2402028Z                            __/ |   __/ |                                                 __/ |     
2020-10-15T08:04:14.2422114Z                           |___/   |___/                                                 |___/      
2020-10-15T08:04:14.2429098Z 
2020-10-15T08:04:15.5502044Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-15T08:07:25.8745599Z 
2020-10-15T08:07:25.8756507Z Pulling generic image took 192 seconds
2020-10-15T08:07:25.8763453Z 
2020-10-15T08:07:25.8782142Z    _____                _   _                               _        _                 
2020-10-15T08:07:25.8800497Z   / ____|              | | (_)                             | |      (_)                
2020-10-15T08:07:25.8822779Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-15T08:07:25.8841857Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-15T08:07:25.8862864Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-15T08:07:25.8879740Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-15T08:07:25.8899849Z                                      __/ |                                             
2020-10-15T08:07:25.8921201Z                                     |___/                                              
2020-10-15T08:07:25.8928370Z 
2020-10-15T08:07:26.0988750Z WARNING: Container name should not exceed 15 characters
2020-10-15T08:07:27.5361536Z BcContainerHelper is version 1.0.8
2020-10-15T08:07:27.5380598Z BcContainerHelper is running as administrator
2020-10-15T08:07:27.5452246Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2020-10-15T08:07:29.4975833Z Docker Client Version is 19.03.12
2020-10-15T08:07:29.5016098Z Docker Server Version is 19.03.12
2020-10-15T08:07:30.1531862Z Downloading application artifact /sandbox/17.0.17126.17680/it
2020-10-15T08:07:30.1761453Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\e04ee52e-2522-4774-ad9c-0807df201e35.zip
2020-10-15T08:07:46.2120148Z Unpacking application artifact to tmp folder using 7zip
2020-10-15T08:07:55.2832283Z Downloading platform artifact /sandbox/17.0.17126.17680/platform
2020-10-15T08:07:55.2875688Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\d537ee5b-4721-4b87-b017-5e9dd8fb83e5.zip
2020-10-15T08:08:06.4754609Z Unpacking platform artifact to tmp folder using 7zip
2020-10-15T08:08:30.7182375Z Downloading Prerequisite Components
2020-10-15T08:08:30.7379424Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17680\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2020-10-15T08:08:30.8032107Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17680\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2020-10-15T08:08:30.9427681Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17680\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2020-10-15T08:08:33.4142040Z Fetching all docker images
2020-10-15T08:08:35.6500875Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-15T08:08:36.1548320Z Creating Container HostedAgent-CGK-ELI-current
2020-10-15T08:08:36.1564622Z Version: 17.0.17126.17680-IT
2020-10-15T08:08:36.1618775Z Style: sandbox
2020-10-15T08:08:36.1636098Z Multitenant: Yes
2020-10-15T08:08:36.1657976Z Platform: 17.0.17020.17501
2020-10-15T08:08:36.1686759Z Generic Tag: 0.1.0.24
2020-10-15T08:08:36.1765704Z Container OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-15T08:08:36.1805020Z Host OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-15T08:08:36.1927652Z Using process isolation
2020-10-15T08:08:36.1969296Z Using locale it-IT
2020-10-15T08:08:36.2049159Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2020-10-15T08:08:36.2176994Z Using license file C:\License.flf
2020-10-15T08:08:36.2762030Z Additional Parameters:
2020-10-15T08:08:36.2785835Z --volume D:\a\1\s:c:\sources
2020-10-15T08:08:36.2805935Z --env customNavSettings=EnableTaskScheduler=False
2020-10-15T08:08:36.2830312Z Files in C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\my:
2020-10-15T08:08:36.2929234Z - AdditionalOutput.ps1
2020-10-15T08:08:36.2949004Z - license.flf
2020-10-15T08:08:36.2967901Z - MainLoop.ps1
2020-10-15T08:08:36.3014528Z - SetupVariables.ps1
2020-10-15T08:08:36.3070616Z - updatehosts.ps1
2020-10-15T08:08:36.3090524Z Creating container HostedAgent-CGK-ELI-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-15T08:08:37.6209441Z db94441330859f60a8816fdd84934143f470dee4ebaa7d7ec66289a48a3451ac
2020-10-15T08:08:49.1807719Z Waiting for container HostedAgent-CGK-ELI-current to be ready
2020-10-15T08:09:07.1996485Z Adding HOSTEDAGENT-CGK to hosts file
2020-10-15T08:09:08.5950483Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17680/it
2020-10-15T08:09:08.5977511Z Using installer from C:\Run\150-new
2020-10-15T08:09:08.5997027Z Installing Business Central
2020-10-15T08:09:08.6018431Z Installing from artifacts
2020-10-15T08:09:20.0934191Z Starting Local SQL Server
2020-10-15T08:09:20.0956083Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2020-10-15T08:09:20.0976805Z start...
2020-10-15T08:09:21.6326669Z Starting Internet Information Server
2020-10-15T08:09:23.5049278Z Copying Service Tier Files
2020-10-15T08:09:26.5237329Z Copying PowerShell Scripts
2020-10-15T08:09:26.5479078Z Copying dependencies
2020-10-15T08:09:26.5480025Z Copying ReportBuilder
2020-10-15T08:09:26.5480405Z Importing PowerShell Modules
2020-10-15T08:09:30.9578633Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17680\it\BusinessCentral-IT.bak
2020-10-15T08:10:20.1093017Z Restoring CRONUS Demo Database
2020-10-15T08:15:09.9735396Z Exporting Application to CRONUS
2020-10-15T08:15:20.0407832Z Removing Application from tenant
2020-10-15T08:15:20.0427255Z Modifying Business Central Service Tier Config File for Docker
2020-10-15T08:15:20.0449061Z Creating Business Central Service Tier
2020-10-15T08:15:21.4095835Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2020-10-15T08:15:21.4117277Z Copying Web Client Files
2020-10-15T08:15:21.4139059Z Copying Client Files
2020-10-15T08:15:21.4212305Z Copying ModernDev Files
2020-10-15T08:15:21.4230937Z Copying additional files
2020-10-15T08:15:21.4249250Z Copying ConfigurationPackages
2020-10-15T08:15:21.4273653Z Copying Test Assemblies
2020-10-15T08:15:21.4295678Z Copying Extensions
2020-10-15T08:15:21.4318699Z Copying Applications
2020-10-15T08:15:21.4341697Z Copying Applications.IT
2020-10-15T08:15:59.2951558Z Starting Business Central Service Tier
2020-10-15T08:16:00.8015481Z Importing license file
2020-10-15T08:16:00.8016712Z Copying Database on localhost\SQLEXPRESS from tenant to default
2020-10-15T08:16:03.2590498Z Taking database tenant offline
2020-10-15T08:16:34.8848684Z Copying database files
2020-10-15T08:16:34.8863822Z Attaching files as new Database default
2020-10-15T08:16:34.8908739Z Putting database tenant back online
2020-10-15T08:16:34.8932380Z Mounting tenant database
2020-10-15T08:18:42.0996239Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-15T08:18:46.4012030Z Sync'ing Tenant
2020-10-15T08:18:46.4138748Z Tenant is Operational
2020-10-15T08:18:46.4181638Z Stopping Business Central Service Tier
2020-10-15T08:18:46.4252042Z Installation took 577 seconds
2020-10-15T08:18:46.4286680Z Installation complete
2020-10-15T08:18:47.7652146Z Initializing...
2020-10-15T08:18:47.7702327Z Setting host.containerhelper.internal to 172.24.48.1 in container hosts file
2020-10-15T08:18:47.7725997Z Starting Container
2020-10-15T08:18:47.7767755Z Hostname is HostedAgent-CGK-ELI-current
2020-10-15T08:18:49.1516413Z PublicDnsName is HostedAgent-CGK-ELI-current
2020-10-15T08:18:50.6519895Z Using NavUserPassword Authentication
2020-10-15T08:18:53.3465359Z Creating Self Signed Certificate
2020-10-15T08:18:53.3494135Z Self Signed Certificate Thumbprint CEB224EC49F00AFA00C4CF780A37C865CEF83201
2020-10-15T08:18:53.3542088Z Modifying Service Tier Config File with Instance Specific Settings
2020-10-15T08:18:53.3565950Z Modifying Service Tier Config File with settings from environment variable
2020-10-15T08:18:54.7839682Z Setting EnableTaskScheduler to False
2020-10-15T08:19:11.6862038Z Starting Service Tier
2020-10-15T08:19:11.6876165Z Registering event sources
2020-10-15T08:19:22.1798414Z Creating DotNetCore Web Server Instance
2020-10-15T08:19:22.1812586Z Enabling Financials User Experience
2020-10-15T08:19:22.1823323Z Enabling rewrite rule: Don't rewrite system files
2020-10-15T08:19:22.1844475Z Enabling rewrite rule: Already have tenant specified
2020-10-15T08:19:22.1861916Z Enabling rewrite rule: Hostname (without port) to tenant
2020-10-15T08:19:22.1879911Z Using license file 'c:\run\my\license.flf'
2020-10-15T08:19:25.1753412Z Import License
2020-10-15T08:19:25.1896254Z Dismounting Tenant
2020-10-15T08:19:25.1898103Z Mounting Tenant
2020-10-15T08:19:33.9771212Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-15T08:19:38.2020318Z Sync'ing Tenant
2020-10-15T08:19:38.2031739Z Tenant is Operational
2020-10-15T08:19:39.7314327Z Creating http download site
2020-10-15T08:19:39.7334262Z Setting SA Password and enabling SA
2020-10-15T08:19:39.7358503Z Creating admin as SQL User and add to sysadmin
2020-10-15T08:19:39.7378131Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:19:39.7508171Z Creating SUPER user
2020-10-15T08:19:52.6394654Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:19:55.4186732Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:19:55.4269053Z Container IP Address: 172.24.61.167
2020-10-15T08:19:55.4306355Z Container Hostname  : HostedAgent-CGK-ELI-current
2020-10-15T08:19:55.4373799Z Container Dns Name  : HostedAgent-CGK-ELI-current
2020-10-15T08:19:55.4429079Z Web Client          : http://HostedAgent-CGK-ELI-current/BC/?tenant=default
2020-10-15T08:19:55.4467707Z Dev. Server         : http://HostedAgent-CGK-ELI-current
2020-10-15T08:19:55.4502054Z Dev. ServerInstance : BC
2020-10-15T08:19:55.4524718Z Dev. Server Tenant  : default
2020-10-15T08:19:55.4544975Z Setting HostedAgent-CGK-ELI-current to 172.24.61.167 in host hosts file
2020-10-15T08:19:55.4572085Z Setting HostedAgent-CGK-ELI-current-default to 172.24.61.167 in host hosts file
2020-10-15T08:19:55.4582346Z 
2020-10-15T08:19:55.4612121Z Files:
2020-10-15T08:19:55.4643083Z http://HostedAgent-CGK-ELI-current:8080/ALLanguage.vsix
2020-10-15T08:19:55.4681881Z 
2020-10-15T08:19:55.4683036Z Container Total Physical Memory is 7.0Gb
2020-10-15T08:19:55.4729352Z Container Free Physical Memory is 2.6Gb
2020-10-15T08:19:55.4740810Z 
2020-10-15T08:19:55.4763439Z Initialization took 69 seconds
2020-10-15T08:19:55.4787670Z Ready for connections!
2020-10-15T08:19:55.6938902Z Reading CustomSettings.config from HostedAgent-CGK-ELI-current
2020-10-15T08:19:58.9709646Z Creating Desktop Shortcuts for HostedAgent-CGK-ELI-current
2020-10-15T08:20:01.6836761Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:03.2379220Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17680.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Any_17.0.17126.17680.app
2020-10-15T08:20:04.5738034Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Any_17.0.17126.17680.app
2020-10-15T08:20:04.5793727Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:11.2253884Z Synchronizing Any on tenant default
2020-10-15T08:20:11.7815746Z Installing Any on tenant default
2020-10-15T08:20:11.8068870Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:14.2712812Z App successfully published
2020-10-15T08:20:14.3145631Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:15.1674820Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17680.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Assert_17.0.17126.17680.app
2020-10-15T08:20:16.4348041Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Assert_17.0.17126.17680.app
2020-10-15T08:20:16.4542718Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:17.0575923Z Synchronizing Library Assert on tenant default
2020-10-15T08:20:17.1565488Z Installing Library Assert on tenant default
2020-10-15T08:20:17.1784311Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:17.6569184Z App successfully published
2020-10-15T08:20:17.6994076Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:18.4486787Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17680.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Variable Storage_17.0.17126.17680.app
2020-10-15T08:20:19.3861261Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Library Variable Storage_17.0.17126.17680.app
2020-10-15T08:20:19.4023048Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:19.5820715Z Synchronizing Library Variable Storage on tenant default
2020-10-15T08:20:19.7116314Z Installing Library Variable Storage on tenant default
2020-10-15T08:20:19.7328790Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:19.9147261Z App successfully published
2020-10-15T08:20:19.9506803Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:20.7175244Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Test Runner.app
2020-10-15T08:20:21.6094584Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Test Runner.app
2020-10-15T08:20:21.6287544Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:24.1172954Z Synchronizing Test Runner on tenant default
2020-10-15T08:20:24.8041066Z Installing Test Runner on tenant default
2020-10-15T08:20:24.8196402Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:25.7119409Z App successfully published
2020-10-15T08:20:25.7491297Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:26.6506283Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_System Application Test Library_17.0.17126.17680.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_System Application Test Library_17.0.17126.17680.app
2020-10-15T08:20:27.6281619Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_System Application Test Library_17.0.17126.17680.app
2020-10-15T08:20:27.6436402Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:31.3195723Z Synchronizing System Application Test Library on tenant default
2020-10-15T08:20:31.7013627Z Installing System Application Test Library on tenant default
2020-10-15T08:20:31.7154774Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:32.2193199Z App successfully published
2020-10-15T08:20:32.8936960Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:20:33.0450784Z Copy from container HostedAgent-CGK-ELI-current (C:\Applications.IT\Microsoft_Tests-TestLibraries_17.0.17126.17680.app) to C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Tests-TestLibraries_17.0.17126.17680.app
2020-10-15T08:20:34.0967547Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Microsoft_Tests-TestLibraries_17.0.17126.17680.app
2020-10-15T08:20:34.1783345Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:10.4776197Z Synchronizing Tests-TestLibraries on tenant default
2020-10-15T08:21:15.5277965Z Installing Tests-TestLibraries on tenant default
2020-10-15T08:21:15.5481584Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:21.3137368Z App successfully published
2020-10-15T08:21:21.3186892Z TestToolkit successfully imported
2020-10-15T08:21:21.3342629Z Container HostedAgent-CGK-ELI-current successfully created
2020-10-15T08:21:21.3354896Z 
2020-10-15T08:21:21.3382288Z Use:
2020-10-15T08:21:21.3403700Z Get-BcContainerEventLog -containerName HostedAgent-CGK-ELI-current to retrieve a snapshot of the event log from the container
2020-10-15T08:21:21.3472136Z Get-BcContainerDebugInfo -containerName HostedAgent-CGK-ELI-current to get debug information about the container
2020-10-15T08:21:21.3512456Z Enter-BcContainer -containerName HostedAgent-CGK-ELI-current to open a PowerShell prompt inside the container
2020-10-15T08:21:21.3555011Z Remove-BcContainer -containerName HostedAgent-CGK-ELI-current to remove the container again
2020-10-15T08:21:21.3630837Z docker logs HostedAgent-CGK-ELI-current to retrieve information about URL's again
2020-10-15T08:21:21.4023620Z 
2020-10-15T08:21:21.4072395Z Creating container took 836 seconds
2020-10-15T08:21:21.4085941Z 
2020-10-15T08:21:21.4103928Z   _____           _        _ _ _                                     
2020-10-15T08:21:21.4128959Z  |_   _|         | |      | | (_)                                    
2020-10-15T08:21:21.4147831Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-15T08:21:21.4165199Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-15T08:21:21.4206923Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-15T08:21:21.4226817Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-15T08:21:21.4249299Z                                         __/ |       | |   | |        
2020-10-15T08:21:21.4274980Z                                        |___/        |_|   |_|        
2020-10-15T08:21:21.4280474Z 
2020-10-15T08:21:23.7808530Z Publishing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current\_Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-15T08:21:23.8118518Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:25.9858243Z Synchronizing Core Management on tenant default
2020-10-15T08:21:27.1485579Z Installing Core Management on tenant default
2020-10-15T08:21:27.1625582Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:29.0269888Z App successfully published
2020-10-15T08:21:29.0279281Z 
2020-10-15T08:21:29.0299485Z Installing apps took 8 seconds
2020-10-15T08:21:29.0306316Z 
2020-10-15T08:21:29.0327282Z    _____                      _ _ _                                     
2020-10-15T08:21:29.0369343Z   / ____|                    (_) (_)                                    
2020-10-15T08:21:29.0397783Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-15T08:21:29.0416584Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-15T08:21:29.0447364Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-15T08:21:29.0462302Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-15T08:21:29.0480769Z                        | |                 __/ |       | |   | |        
2020-10-15T08:21:29.0554065Z                        |_|                |___/        |_|   |_|        
2020-10-15T08:21:29.0569793Z 
2020-10-15T08:21:29.0864570Z Using Version 1.0.341.0
2020-10-15T08:21:29.2058877Z Creating AppSourceCop.json for validation
2020-10-15T08:21:31.8738919Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-15T08:21:42.1329803Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:42.2416912Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:21:43.4593071Z Downloading symbols: Microsoft_Application_17.0.17126.17680.app
2020-10-15T08:21:43.4741326Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default
2020-10-15T08:21:46.4681294Z Adding dependency to System Application from Microsoft
2020-10-15T08:21:46.4720567Z Adding dependency to Base Application from Microsoft
2020-10-15T08:21:46.4799712Z Downloading symbols: Microsoft_System_17.0.17020.17501.app
2020-10-15T08:21:46.4817560Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default
2020-10-15T08:21:47.9366651Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-15T08:21:47.9390114Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default
2020-10-15T08:21:49.6228794Z Downloading symbols: Microsoft_System Application_17.0.17126.17680.app
2020-10-15T08:21:49.6242305Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default
2020-10-15T08:21:50.9162679Z Downloading symbols: Microsoft_Base Application_17.0.17126.17680.app
2020-10-15T08:21:50.9201856Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default
2020-10-15T08:21:51.9142646Z Compiling...
2020-10-15T08:21:51.9332256Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2020-10-15T08:22:05.9632075Z Microsoft (R) AL Compiler version 6.0.5.10826
2020-10-15T08:22:05.9689416Z Copyright (C) Microsoft Corporation. All rights reserved
2020-10-15T08:22:05.9704592Z 
2020-10-15T08:22:05.9721820Z Compilation started for project 'Electronic Invoicing' containing '66' files at '8:21:52.556'.
2020-10-15T08:22:05.9731432Z 
2020-10-15T08:22:12.5287112Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5321938Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5343525Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5361656Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5397636Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5448732Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5471820Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5489437Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5521507Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5550078Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5580372Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5601584Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5622255Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5643918Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5666688Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5692263Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5716434Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5740729Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5765650Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5793177Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5820785Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5839207Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5864868Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5893627Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.5940600Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5957887Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.5980198Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-15T08:22:12.6012440Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.6031588Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.6053724Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.6078207Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-15T08:22:12.6102908Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field.
2020-10-15T08:22:12.6132199Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'.
2020-10-15T08:22:12.6138082Z 
2020-10-15T08:22:12.6168202Z Compilation ended at '8:22:5.865'.
2020-10-15T08:22:12.6172320Z 
2020-10-15T08:22:12.6363887Z D:\a\1\s\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app successfully created in 43 seconds
2020-10-15T08:22:12.6468010Z Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app copied to D:\a\1\s\.packages
2020-10-15T08:22:12.6761991Z Using Version 1.0.341.0
2020-10-15T08:22:15.0996292Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-15T08:22:15.7009257Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:22:15.7373808Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:22:15.8210154Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17680.app
2020-10-15T08:22:15.8271834Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:16.7957568Z Downloading symbols: Microsoft_Any_17.0.17126.17680.app
2020-10-15T08:22:16.7991783Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:17.4074478Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17680.app
2020-10-15T08:22:17.4099830Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:18.0903096Z Downloading symbols: Microsoft_System Application Test Library_17.0.17126.17680.app
2020-10-15T08:22:18.0917992Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:18.6365432Z Adding dependency to System Application from Microsoft
2020-10-15T08:22:18.6392563Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.17126.17680.app
2020-10-15T08:22:18.6433505Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:19.2944268Z Adding dependency to Library Variable Storage from Microsoft
2020-10-15T08:22:19.3065487Z Downloading symbols: Microsoft_Library Variable Storage_17.0.17126.17680.app
2020-10-15T08:22:19.3081153Z Url : http://172.24.61.167:7049/BC/dev/packages?publisher=Microsoft&appName=Library Variable Storage&versionText=17.0.0.0&tenant=default
2020-10-15T08:22:20.1503019Z Compiling...
2020-10-15T08:22:20.1553480Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.341.0.app" /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2020-10-15T08:22:39.9169314Z Microsoft (R) AL Compiler version 6.0.5.10826
2020-10-15T08:22:39.9212590Z Copyright (C) Microsoft Corporation. All rights reserved
2020-10-15T08:22:39.9270725Z 
2020-10-15T08:22:39.9354308Z Compilation started for project 'Electronic Invoicing - Test' containing '8' files at '8:22:20.613'.
2020-10-15T08:22:39.9355580Z 
2020-10-15T08:22:39.9358510Z c:\sources\test\data\TAB50133.navxdata(1,1): info AL1027: The file at location 'c:\sources\test\data\TAB50133.navxdata' matches the definition for 'TableData'.
2020-10-15T08:22:39.9420826Z 
2020-10-15T08:22:39.9491163Z Compilation ended at '8:22:39.794'.
2020-10-15T08:22:39.9496936Z 
2020-10-15T08:22:39.9524082Z D:\a\1\s\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.341.0.app successfully created in 27 seconds
2020-10-15T08:22:39.9592891Z Cegeka S.p.A._Electronic Invoicing - Test_1.0.341.0.app copied to D:\a\1\s\.packages
2020-10-15T08:22:39.9754908Z 
2020-10-15T08:22:39.9765284Z Compiling apps took 71 seconds
2020-10-15T08:22:39.9787793Z 
2020-10-15T08:22:39.9811167Z    _____ _             _                                        
2020-10-15T08:22:39.9833469Z   / ____(_)           (_)                 /\                    
2020-10-15T08:22:39.9852696Z  | (___  _  __ _ _ __  _ _ __   __ _     /  \   _ __  _ __  ___ 
2020-10-15T08:22:39.9890091Z   \___ \| |/ _` | '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2020-10-15T08:22:39.9928342Z   ____) | | (_| | | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2020-10-15T08:22:39.9953917Z  |_____/|_|\__, |_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2020-10-15T08:22:39.9975272Z             __/ |               __/ |          | |   | |        
2020-10-15T08:22:39.9995505Z            |___/               |___/           |_|   |_|        
2020-10-15T08:22:40.0002382Z 
2020-10-15T08:22:42.4665312Z Copy C:\Cert.pfx to container HostedAgent-CGK-ELI-current (c:\run\Cert.pfx)
2020-10-15T08:22:43.3757870Z Downloading Signing Tools
2020-10-15T08:22:43.6366993Z Installing Signing Tools
2020-10-15T08:23:03.1408574Z Signing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app
2020-10-15T08:23:03.7409810Z Done Adding Additional Store
2020-10-15T08:23:04.5299826Z Successfully signed: c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app
2020-10-15T08:23:04.5306726Z 
2020-10-15T08:23:04.5412695Z 
2020-10-15T08:23:04.5439143Z Signing apps took 25 seconds
2020-10-15T08:23:04.5446328Z 
2020-10-15T08:23:04.5495850Z   _____       _     _ _     _     _                                        
2020-10-15T08:23:04.5551864Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2020-10-15T08:23:04.5574507Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2020-10-15T08:23:04.5597335Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2020-10-15T08:23:04.5621205Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2020-10-15T08:23:04.5649918Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2020-10-15T08:23:04.5689591Z                                            __/ |          | |   | |        
2020-10-15T08:23:04.5690404Z                                           |___/           |_|   |_|        
2020-10-15T08:23:04.5698069Z 
2020-10-15T08:23:04.6290878Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.6669503Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.7199869Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.7536217Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.7743740Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.7947906Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.8132316Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.8417210Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.8637433Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.8905601Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.9072480Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.9236695Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.9479164Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.9664682Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:04.9888698Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.0185079Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.0341034Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.0621289Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.0902271Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.1192939Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.1419944Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.1995913Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.2338858Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.2574341Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.2887309Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.3246610Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.3523595Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.3741195Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.3925391Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.4183566Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.4408820Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.4597953Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.5128109Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.5368426Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.5590021Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.5973102Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.6178693Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.6444289Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.6740524Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.6916397Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.7347586Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.7599895Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.7821742Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.8052357Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.8362801Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.8607517Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.8894598Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.9111986Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.9363654Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.9581404Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:05.9855748Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:06.7021542Z Publishing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app
2020-10-15T08:23:06.7264481Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:11.0102717Z Synchronizing Electronic Invoicing on tenant default
2020-10-15T08:23:13.2325085Z Installing Electronic Invoicing on tenant default
2020-10-15T08:23:13.2395580Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:23:16.7246850Z App successfully published
2020-10-15T08:23:17.3289071Z Publishing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.341.0.app
2020-10-15T08:23:17.3495969Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:24:40.2263611Z Synchronizing Electronic Invoicing - Test on tenant default
2020-10-15T08:24:41.2370489Z Installing Electronic Invoicing - Test on tenant default
2020-10-15T08:24:41.2371217Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:24:54.0413811Z App successfully published
2020-10-15T08:24:54.0424492Z 
2020-10-15T08:24:54.0446251Z Publishing apps took 109 seconds
2020-10-15T08:24:54.0453949Z 
2020-10-15T08:24:54.0476154Z   _____                   _               _______       _       
2020-10-15T08:24:54.0496716Z  |  __ \                 (_)             |__   __|     | |      
2020-10-15T08:24:54.0517011Z  | |__) |   _ _ __  _ __  _ _ __   __ _     | | ___ ___| |_ ___ 
2020-10-15T08:24:54.0569316Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |    | |/ _ \ __| __/ __|
2020-10-15T08:24:54.0595386Z  | | \ \ |_| | | | | | | | | | | | (_| |    | |  __\__ \ |_\__ \
2020-10-15T08:24:54.0659500Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, |    |_|\___|___/\__|___/
2020-10-15T08:24:54.0692579Z                                    __/ |                        
2020-10-15T08:24:54.0713070Z                                   |___/                         
2020-10-15T08:24:54.0717772Z 
2020-10-15T08:29:23.7034377Z UriToShow : BC/cs.DynamicFileHandler.axd?form=D&sessionid=gmsqbm50g2krlfpl4rjn1fqlDEFAULTSR637383471059569181FIN&type=File&fid=agho0uyexbxkoggb2xkvua2k
2020-10-15T08:29:23.7047053Z UriToShow : BC/cs.DynamicFileHandler.axd?form=E&sessionid=gmsqbm50g2krlfpl4rjn1fqlDEFAULTSR637383471059569181FIN&type=File&fid=24f4d2gzfukfpqr05satuhcd
2020-10-15T08:29:23.7061584Z UriToShow : BC/cs.DynamicFileHandler.axd?form=F&sessionid=gmsqbm50g2krlfpl4rjn1fqlDEFAULTSR637383471059569181FIN&type=File&fid=tpux0eqxf2wbs1bznpc2zxnm
2020-10-15T08:29:23.7073885Z UriToShow : BC/cs.DynamicFileHandler.axd?form=10&sessionid=gmsqbm50g2krlfpl4rjn1fqlDEFAULTSR637383471059569181FIN&type=File&fid=v3ar03sgfay0clytml2eitjr
2020-10-15T08:29:23.7085428Z   Codeunit 50133 CGK ELI Test WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:29:23.7099195Z Success (208.555 seconds)
2020-10-15T08:29:23.7118092Z     Testfunction ELI_00000_CORModuleSetupCheck Success (0.034 seconds)
2020-10-15T08:29:23.7128709Z     Testfunction ELI_00000_CheckFeature Success (2.796 seconds)
2020-10-15T08:29:23.7143467Z     Testfunction ELI_00000_RELIntegrationCheck Success (7.034 seconds)
2020-10-15T08:29:23.7157770Z     Testfunction ELI_00328_CheckNewFields Success (10.63 seconds)
2020-10-15T08:29:23.7166466Z     Testfunction ELI_00329_Login Success (1.316 seconds)
2020-10-15T08:29:23.7188635Z     Testfunction ELI_00330_AddInvoiceWithInvalidData Success (47.66 seconds)
2020-10-15T08:29:23.7198175Z     Testfunction ELI_00331_SendInvoiceWithInvalidData Success (1.817 seconds)
2020-10-15T08:29:23.7228219Z     Testfunction ELI_00332_CheckRejectedStatus Success (1.6 seconds)
2020-10-15T08:29:23.7237868Z     Testfunction ELI_00333_CheckRejectedNotes Success (1.896 seconds)
2020-10-15T08:29:23.7250284Z     Testfunction ELI_00334_DownloadXml Success (2.013 seconds)
2020-10-15T08:29:23.7264566Z     Testfunction ELI_00335_ShowDocFromEIADashboard Success (2.37 seconds)
2020-10-15T08:29:23.7276223Z     Testfunction ELI_00336_EIAAddRejectedDoc Success (2.093 seconds)
2020-10-15T08:29:23.7294152Z     Testfunction ELI_00337_AddInvoiceWithInvalidDataWithPDF Success (14.11 seconds)
2020-10-15T08:29:23.7308585Z     Testfunction ELI_00339_EIACheckStatusTransferred Success (1.97 seconds)
2020-10-15T08:29:23.7324953Z     Testfunction ELI_00340_EIACheckStatusTransferred_CreditMemo Success (3.424 seconds)
2020-10-15T08:29:23.7344512Z     Testfunction ELI_00341_EIACheckStatusTransferred_CustomerWithPec Success (1.92 seconds)
2020-10-15T08:29:23.7365419Z     Testfunction ELI_00342_EIPImportFromIx Success (2.777 seconds)
2020-10-15T08:29:23.7384259Z     Testfunction ELI_00343_EIPCreatePreview Success (2.833 seconds)
2020-10-15T08:29:23.7402206Z     Testfunction ELI_00344_EIPCreateDocument Success (5.593 seconds)
2020-10-15T08:29:23.7418135Z     Testfunction ELI_00345_EIPPostDocument Success (16.063 seconds)
2020-10-15T08:29:23.7469983Z     Testfunction ELI_00346_EIPDownloadXml Success (1.907 seconds)
2020-10-15T08:29:23.7523760Z     Testfunction ELI_00347_EIPDownloadPdf Success (2.51 seconds)
2020-10-15T08:29:23.7542248Z     Testfunction ELI_00348_EIPDownloadHtml Success (2.26 seconds)
2020-10-15T08:29:23.7550747Z     Testfunction ELI_00349_EIPDocumentMissingVendor Success (2.117 seconds)
2020-10-15T08:29:23.7569469Z     Testfunction ELI_00350_EIPDocumentMissingVendorCorrection Success (2.837 seconds)
2020-10-15T08:29:23.7576962Z     Testfunction ELI_00351_EIPDocumentDuplicateVatRegNo Success (3.43 seconds)
2020-10-15T08:29:23.7619903Z     Testfunction ELI_00352_EIPImportFromDir Success (1.9 seconds)
2020-10-15T08:29:23.7631489Z     Testfunction ELI_00353_EIPDuplicatePreview Success (2.493 seconds)
2020-10-15T08:29:23.7723170Z     Testfunction ELI_00354_EIPDuplicatePreview Success (3 seconds)
2020-10-15T08:29:23.7735371Z     Testfunction ELI_00355_EIPDuplicatePreview Success (4.78 seconds)
2020-10-15T08:29:23.7753700Z     Testfunction ELI_00356_EIPDocumentVendorPaymentNotMatchingXml Success (2.67 seconds)
2020-10-15T08:29:23.7769907Z     Testfunction ELI_00357_EIPDocumetProductNotMatchingXml Success (2.98 seconds)
2020-10-15T08:29:23.7788217Z     Testfunction ELI_00360_EIPCreatePreviewConfirmWarnings Success (3.89 seconds)
2020-10-15T08:29:23.7799677Z     Testfunction ELI_00361_EIPPurchaseReceiptMatching Success (6.6 seconds)
2020-10-15T08:29:23.7812499Z     Testfunction ELI_00362_EIPPurchaseReceiptMatching Success (5.257 seconds)
2020-10-15T08:29:23.7832130Z     Testfunction ELI_00364_EIPPurchaseReceiptMatching Success (4.216 seconds)
2020-10-15T08:29:23.7872885Z     Testfunction ELI_00380_EIACheckStatusTransferred_ServiceInvoice Success (10.56 seconds)
2020-10-15T08:29:23.7874977Z     Testfunction ELI_00381_EIACheckStatusTransferred_ServiceCM Success (2.023 seconds)
2020-10-15T08:29:23.7886712Z     Testfunction ELI_00382_EIPCMMatchingReturnShipment Success (13.176 seconds)
2020-10-15T08:29:24.3378979Z 
2020-10-15T08:29:24.3400878Z Running tests took 270 seconds
2020-10-15T08:29:24.3476684Z    _____                    _          ____        _ _     _                 _   _  __           _       
2020-10-15T08:29:24.3501224Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2020-10-15T08:29:24.3526932Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2020-10-15T08:29:24.3552181Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2020-10-15T08:29:24.3575233Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2020-10-15T08:29:24.3597917Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2020-10-15T08:29:24.3614849Z              | |     __/ |                                                                               
2020-10-15T08:29:24.3676733Z              |_|    |___/                                                                                
2020-10-15T08:29:24.3965069Z Getting Runtime Package for Cegeka S.p.A._Electronic Invoicing_1.0.341.0.app
2020-10-15T08:29:25.7642558Z WARNING: This license is not compatible with this version of Business Central.
2020-10-15T08:29:28.9912575Z Signing runtime package
2020-10-15T08:29:30.2430085Z Copy C:\Cert.pfx to container HostedAgent-CGK-ELI-current (c:\run\Cert.pfx)
2020-10-15T08:29:30.8692450Z Signing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.runtime.app
2020-10-15T08:29:31.0127542Z Done Adding Additional Store
2020-10-15T08:29:31.4984722Z Successfully signed: c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.341.0.runtime.app
2020-10-15T08:29:31.4985449Z 
2020-10-15T08:29:31.5087651Z Copying runtime package to build artifact
2020-10-15T08:29:31.5345844Z 
2020-10-15T08:29:31.5363949Z Copying to Build Artifacts took 7 seconds
2020-10-15T08:29:31.5439637Z 
2020-10-15T08:29:31.5453445Z   _____                           _                _____            _        _                 
2020-10-15T08:29:31.5503907Z  |  __ \                         (_)              / ____|          | |      (_)                
2020-10-15T08:29:31.5566454Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-15T08:29:31.5587255Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-15T08:29:31.5612479Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-15T08:29:31.5637262Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-15T08:29:31.5655688Z                                            __/ |                                               
2020-10-15T08:29:31.5683770Z                                           |___/                                                
2020-10-15T08:29:31.5689899Z 
2020-10-15T08:29:33.3652305Z Removing container HostedAgent-CGK-ELI-current
2020-10-15T08:29:38.5830044Z Removing HostedAgent-CGK-ELI-current from host hosts file
2020-10-15T08:29:38.8567171Z Removing HostedAgent-CGK-ELI-current-* from host hosts file
2020-10-15T08:29:38.9346742Z Removing C:\ProgramData\BcContainerHelper\Extensions\HostedAgent-CGK-ELI-current
2020-10-15T08:29:38.9842145Z 
2020-10-15T08:29:38.9872684Z Removing container took 7 seconds
2020-10-15T08:29:38.9880425Z 
2020-10-15T08:29:38.9906488Z AL Pipeline finished in 1525 seconds
2020-10-15T08:29:40.0932557Z ##[section]Finishing: Run Pipeline

Screenshots not applicable

Additional context

freddydk commented 4 years ago

I am actually working on that repo yesterday and today, breaking a number of things. Will make sure things works after the weekend.

Pellic commented 4 years ago

I Freddy, I have just try to run our pipeline but I get in to the same error.

[error]Compile-AppInBcContainer : Exception calling "DownloadFile" with "2" argument(s): "The remote server returned an

error: (404) Not Found." Thanks in advance for the support

freddydk commented 4 years ago

Did you grab new scripts? and new .yml files? are you renumbering the objects? currently the objects are using my object range, assuming that you do not have access to this range?

Pellic commented 4 years ago

Yes, just dowload new scripts, object range is ok, everithing is tested in a local environment. I have my own multi stage yml: In my structure the "scripts" folder has is own devops project and I use it for a dozen of AL projects without mantaining dozen of "scripts" folders. My template AL project repository has just the "base" and "app" folders. my yml lokks like this: trigger:

stages:

Anyway, in the last run I update the settings.json with "installTestFramework": false and "installTestLibraries": false, and...the compile-test app task run without issues and the pipeline ends WITH test results! (some AL test failure but that is another problem!) I think I am missing something in the understanding of the two parameters, Aren't they used to skip tests?

freddydk commented 4 years ago

Run-AlPipeline has a parameter called -doNotRunTests test framework and test libraries determines which test apps are getting installed.

Pellic commented 4 years ago

Ok, but I still do not understand the magic because my tests codeunit have references to the test libraries codeunit and functions: "dependencies": [

{
  "id": "dd0be2ea-f733-4d65-bb34-a28f4624fb14",
  "publisher": "Microsoft",
  "name": "Library Assert",
  "version": "17.0.0.0"
},
{
  "id": "e7320ebb-08b3-4406-b1ec-b4927d3e280b",
  "publisher": "Microsoft",
  "name": "Any",
  "version": "17.0.0.0"
},
{
  "id": "23de40a6-dfe8-4f80-80db-d70f83ce8caf",
  "publisher": "Microsoft",
   "name": "Test Runner",
   "version": "17.0.0.0"
},

{
  "id": "9856ae4f-d1a7-46ef-89bb-6ef056398228",
  "publisher": "Microsoft",
  "name": "System Application Test Library",
  "version": "17.0.0.0"
},
{
  "id": "5d86850b-0d76-4eca-bd7b-951ad998e997",
  "publisher": "Microsoft",
   "name": "Tests-TestLibraries",
   "version": "17.0.0.0"
},
{
  "id": "bc432e1c-41ea-4d69-966c-7b3c34403207",
  "name": "Electronic Invoicing",
  "publisher": "Cegeka S.p.A.",
  "version": "1.0.0.0"
},    
{
  "id": "c286a8b5-4e99-41ee-b36f-8fb59527c7af",
  "publisher": "Cegeka S.p.A.",
  "name": "Core Management",
  "version": "1.0.0.0"
}

]

anyway for me the problem is solved, and this is the output of the last run: 2020-10-19T05:59:57.1072763Z ##[section]Starting: Run Pipeline 2020-10-19T05:59:57.1223394Z ============================================================================== 2020-10-19T05:59:57.1223968Z Task : PowerShell 2020-10-19T05:59:57.1224302Z Description : Run a PowerShell script on Linux, macOS, or Windows 2020-10-19T05:59:57.1224581Z Version : 2.170.1 2020-10-19T05:59:57.1224807Z Author : Microsoft Corporation 2020-10-19T05:59:57.1225168Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2020-10-19T05:59:57.1225567Z ============================================================================== 2020-10-19T05:59:58.0647167Z Generating script. 2020-10-19T05:59:58.0727731Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 404 -appRevision 0 2020-10-19T05:59:58.1151686Z ========================== Starting Command Output =========================== 2020-10-19T05:59:58.1442723Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a_temp\675a43c0-dc28-4ee5-9f88-cd0d97a74adc.ps1'" 2020-10-19T05:59:58.5258963Z Set artifact = ///it/Current 2020-10-19T05:59:58.5296082Z Set pipelineName = CGK-ELI-current 2020-10-19T05:59:58.5372497Z Set containerName = hostedagent-cgk-eli-current 2020-10-19T05:59:58.5565469Z Set installApps = 'C:\Dependency\Cegeka S.p.A._Core Management1.0.65.0.app' 2020-10-19T05:59:58.5575528Z Set previousApps = '' 2020-10-19T05:59:58.5609222Z Set appSourceCopMandatoryAffixes = 'CGK' 2020-10-19T05:59:58.5633298Z Set appSourceCopSupportedCountries = 'it,us' 2020-10-19T05:59:58.5661182Z Set appFolders = 'app' 2020-10-19T05:59:58.5689983Z Set testFolders = 'test' 2020-10-19T05:59:58.5719613Z Set memoryLimit = '12G' 2020-10-19T05:59:58.5729806Z Set additionalCountries = '' 2020-10-19T05:59:58.5777700Z Set installTestFramework = False 2020-10-19T05:59:58.5822492Z Set installTestLibraries = False 2020-10-19T05:59:58.5852114Z Set installPerformanceToolkit = False 2020-10-19T05:59:58.5881843Z Set enableCodeCop = False 2020-10-19T05:59:58.5910229Z Set enableAppSourceCop = True 2020-10-19T05:59:58.5941916Z Set enablePerTenantExtensionCop = False 2020-10-19T05:59:58.5972327Z Set enableUICop = True 2020-10-19T05:59:58.5981515Z Set doNotSignApp = False 2020-10-19T05:59:58.6000836Z Set doNotRunTests = False 2020-10-19T05:59:58.6029076Z Set cacheImage = False 2020-10-19T05:59:58.6060233Z Use bcContainerHelper Version: https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T05:59:58.6322913Z Downloading https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T06:00:03.1411433Z C:\Users\VssAdministrator\AppData\Local\Temp\hostedagent-cgk-eli-current\navcontainerhelper-dev\BcContainerHelper.psm1 2020-10-19T06:00:05.4683611Z Determining artifacts to use 2020-10-19T06:00:10.8042872Z ____
2020-10-19T06:00:10.8051193Z | \ | |
2020-10-19T06:00:10.8055337Z | |
) |
__ | |_ 2020-10-19T06:00:10.8064394Z | / _| '__/ _ | ' ` \ / _ \ / \ '/ | 2020-10-19T06:00:10.8068984Z | | | (| | | | (_| | | | | | | _/ | / | _ \ 2020-10-19T06:00:10.8083501Z || _,|| _,|| || ||_|_\|_| |_/ 2020-10-19T06:00:10.8086700Z 2020-10-19T06:00:10.8103155Z Pipeline name CGK-ELI-current 2020-10-19T06:00:10.8114106Z Container name hostedagent-cgk-eli-current 2020-10-19T06:00:10.8127415Z Image name
2020-10-19T06:00:10.8212498Z ArtifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:00:10.8369200Z SasToken Not Specified 2020-10-19T06:00:10.8401363Z Credential admin/Pano5651 2020-10-19T06:00:10.8777495Z MemoryLimit 12G 2020-10-19T06:00:10.8790594Z Enable Task Scheduler False 2020-10-19T06:00:10.8808117Z Assign Premium Plan False 2020-10-19T06:00:10.8821223Z Install Test Framework False 2020-10-19T06:00:10.8834076Z Install Test Libraries False 2020-10-19T06:00:10.8846199Z Install Perf. Toolkit False 2020-10-19T06:00:10.8858249Z enableCodeCop False 2020-10-19T06:00:10.8873248Z enableAppSourceCop True 2020-10-19T06:00:10.8883364Z enableUICop True 2020-10-19T06:00:10.8895796Z enablePerTenantExtensionCop False 2020-10-19T06:00:10.8908257Z azureDevOps False 2020-10-19T06:00:10.8921294Z License file Specified 2020-10-19T06:00:10.8937372Z CodeSignCertPfxFile Not specified 2020-10-19T06:00:10.8949466Z TestResultsFile D:\a\1\s\TestResults.xml 2020-10-19T06:00:10.8960974Z TestResultsFormat JUnit 2020-10-19T06:00:10.9000930Z AdditionalCountries
2020-10-19T06:00:10.9012996Z PackagesFolder D:\a\1\s.packages 2020-10-19T06:00:10.9026311Z OutputFolder D:\a\1\s.output 2020-10-19T06:00:10.9038966Z BuildArtifactFolder D:\a\1\a 2020-10-19T06:00:10.9051753Z CreateRuntimePackages True 2020-10-19T06:00:10.9064525Z AppBuild 404 2020-10-19T06:00:10.9077653Z AppRevision 0 2020-10-19T06:00:10.9090078Z Mandatory Affixes CGK 2020-10-19T06:00:10.9107422Z Supported Countries it,us 2020-10-19T06:00:10.9107937Z Install Apps 2020-10-19T06:00:10.9123228Z - C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app 2020-10-19T06:00:10.9127712Z Previous Apps 2020-10-19T06:00:10.9137710Z - None 2020-10-19T06:00:10.9139191Z Application folders 2020-10-19T06:00:10.9150585Z - D:\a\1\s\app 2020-10-19T06:00:10.9155434Z Test application folders 2020-10-19T06:00:10.9164274Z - D:\a\1\s\test 2020-10-19T06:00:10.9235798Z 2020-10-19T06:00:10.9242402Z ___
_
2020-10-19T06:00:10.9250630Z | \ | | () () (_)
2020-10-19T06:00:10.9254784Z | |_) | | | |
_ _ _ _ _ _ 2020-10-19T06:00:10.9262785Z | _/ | | | | | | ' \ / | / _ |/ \ ' \ / \ '| |/ | | | ' _ \ / _ |/ ` |/ \ 2020-10-19T06:00:10.9267450Z | | | || | | | | | | | (| | | (_| | / | | | / | | | ( | | | | | | | (| | (| | / 2020-10-19T06:00:10.9275526Z || _,||||| ||_, | _, |_|| ||_|| ||_| ||| || ||_,|_, |\| 2020-10-19T06:00:10.9280238Z / | / | / |
2020-10-19T06:00:10.9289681Z |__/ |
/ |_/
2020-10-19T06:00:10.9290448Z 2020-10-19T06:00:10.9294861Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:04:32.0351629Z 2020-10-19T06:04:32.0357894Z Pulling generic image took 261 seconds 2020-10-19T06:04:32.0413929Z 2020-10-19T06:04:32.0418679Z ___

2020-10-19T06:04:32.0429091Z / _| | | () | | ()
2020-10-19T06:04:32.0434914Z | |
_
| | | |_ _ _ 2020-10-19T06:04:32.0443135Z | | | '/ \/ _| __| | '_ \ / _ | / / | ' | / ` | | ' \ / \ '| 2020-10-19T06:04:32.0447522Z | |__| | | __/ (| | || | | | | (| | | ( () | | | | | (| | | | | | / |
2020-10-19T06:04:32.0455824Z \
|| _|\,|_||| ||_, | _\/|| ||__,||| ||_|_|
2020-10-19T06:04:32.0460152Z _/ |
2020-10-19T06:04:32.0468215Z |
/
2020-10-19T06:04:32.0469724Z 2020-10-19T06:04:32.2258089Z WARNING: Container name should not exceed 15 characters 2020-10-19T06:04:33.1606820Z BcContainerHelper is version 1.0.10 2020-10-19T06:04:33.1611644Z BcContainerHelper is running as administrator 2020-10-19T06:04:33.1632564Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019 2020-10-19T06:04:35.1712534Z Docker Client Version is 19.03.12 2020-10-19T06:04:35.1735577Z Docker Server Version is 19.03.12 2020-10-19T06:04:35.8296093Z Downloading application artifact /sandbox/17.0.17126.17806/it 2020-10-19T06:04:35.8510071Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\35c32ce8-0898-4724-8f70-ed413f8ea8aa.zip 2020-10-19T06:04:40.3124883Z Unpacking application artifact to tmp folder using 7zip 2020-10-19T06:04:50.2362907Z Downloading platform artifact /sandbox/17.0.17126.17806/platform 2020-10-19T06:04:50.2386672Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\4c517335-20e2-45d7-ac35-39819b82c833.zip 2020-10-19T06:04:53.0906916Z Unpacking platform artifact to tmp folder using 7zip 2020-10-19T06:05:32.5541642Z Downloading Prerequisite Components 2020-10-19T06:05:32.5651442Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi 2020-10-19T06:05:32.5936729Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi 2020-10-19T06:05:32.6249784Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe 2020-10-19T06:05:33.0615873Z Fetching all docker images 2020-10-19T06:05:33.9307186Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:34.1554242Z Creating Container hostedagent-cgk-eli-current 2020-10-19T06:05:34.1560899Z Version: 17.0.17126.17806-IT 2020-10-19T06:05:34.1569722Z Style: sandbox 2020-10-19T06:05:34.1572750Z Multitenant: Yes 2020-10-19T06:05:34.1580581Z Platform: 17.0.17020.17774 2020-10-19T06:05:34.1591208Z Generic Tag: 0.1.0.24 2020-10-19T06:05:34.1626009Z Container OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1633047Z Host OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1654576Z Using process isolation 2020-10-19T06:05:34.1681914Z Using locale it-IT 2020-10-19T06:05:34.1716076Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) 2020-10-19T06:05:34.1775900Z Using license file C:\License.flf 2020-10-19T06:05:34.5993123Z Additional Parameters: 2020-10-19T06:05:34.6012779Z --volume "D:\a\1\s:c:\sources" 2020-10-19T06:05:34.6019767Z --env customNavSettings=EnableTaskScheduler=False 2020-10-19T06:05:34.6029247Z Files in C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\my: 2020-10-19T06:05:34.6072519Z - AdditionalOutput.ps1 2020-10-19T06:05:34.6084999Z - license.flf 2020-10-19T06:05:34.6095798Z - MainLoop.ps1 2020-10-19T06:05:34.6103705Z - SetupVariables.ps1 2020-10-19T06:05:34.6110011Z - updatehosts.ps1 2020-10-19T06:05:34.6117187Z Creating container hostedagent-cgk-eli-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:35.3434042Z ab9a0cf8568ae7706a0f443e153197c0344b621725d6d5aa2129c39c8ef0bc5f 2020-10-19T06:06:02.1481558Z Waiting for container hostedagent-cgk-eli-current to be ready 2020-10-19T06:06:16.2853436Z Adding HOSTEDAGENT-CGK to hosts file 2020-10-19T06:06:17.6975478Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:06:19.2126897Z Using installer from C:\Run\150-new 2020-10-19T06:06:19.2133664Z Installing Business Central 2020-10-19T06:06:19.2142045Z Installing from artifacts 2020-10-19T06:06:29.6514366Z Starting Local SQL Server 2020-10-19T06:06:29.6523854Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 2020-10-19T06:06:29.6528367Z start... 2020-10-19T06:06:30.9020090Z Starting Internet Information Server 2020-10-19T06:06:30.9026624Z Copying Service Tier Files 2020-10-19T06:06:35.4488640Z Copying PowerShell Scripts 2020-10-19T06:06:35.4496839Z Copying dependencies 2020-10-19T06:06:35.4500525Z Copying ReportBuilder 2020-10-19T06:06:35.4507190Z Importing PowerShell Modules 2020-10-19T06:06:52.3319067Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17806\it\BusinessCentral-IT.bak 2020-10-19T06:07:35.6845830Z Restoring CRONUS Demo Database 2020-10-19T06:10:18.7812381Z Exporting Application to CRONUS 2020-10-19T06:10:25.0961599Z Removing Application from tenant 2020-10-19T06:10:25.0969779Z Modifying Business Central Service Tier Config File for Docker 2020-10-19T06:10:25.0977677Z Creating Business Central Service Tier 2020-10-19T06:10:25.0979456Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll' 2020-10-19T06:10:25.0986779Z Copying Web Client Files 2020-10-19T06:10:25.0995007Z Copying Client Files 2020-10-19T06:10:25.0998997Z Copying ModernDev Files 2020-10-19T06:10:25.1007089Z Copying additional files 2020-10-19T06:10:25.1011095Z Copying ConfigurationPackages 2020-10-19T06:10:25.1018678Z Copying Test Assemblies 2020-10-19T06:10:25.1022463Z Copying Extensions 2020-10-19T06:10:25.1030148Z Copying Applications 2020-10-19T06:10:25.1033644Z Copying Applications.IT 2020-10-19T06:10:55.6119886Z Starting Business Central Service Tier 2020-10-19T06:10:55.6126137Z Importing license file 2020-10-19T06:10:55.6132297Z Copying Database on localhost\SQLEXPRESS from tenant to default 2020-10-19T06:11:06.3699005Z Taking database tenant offline 2020-10-19T06:11:06.3712417Z Copying database files 2020-10-19T06:11:18.7685495Z Attaching files as new Database default 2020-10-19T06:11:18.7694801Z Putting database tenant back online 2020-10-19T06:11:18.7698030Z Mounting tenant database 2020-10-19T06:14:04.5573014Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:14:07.6533174Z Sync'ing Tenant 2020-10-19T06:14:07.6541234Z Tenant is Operational 2020-10-19T06:14:07.6545051Z Stopping Business Central Service Tier 2020-10-19T06:14:07.6553224Z Installation took 469 seconds 2020-10-19T06:14:07.6555899Z Installation complete 2020-10-19T06:14:08.8968162Z Initializing... 2020-10-19T06:14:08.8975959Z Setting host.containerhelper.internal to 172.17.80.1 in container hosts file 2020-10-19T06:14:08.8980016Z Starting Container 2020-10-19T06:14:08.8984719Z Hostname is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2606236Z PublicDnsName is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2612469Z Using NavUserPassword Authentication 2020-10-19T06:14:12.9519247Z Creating Self Signed Certificate 2020-10-19T06:14:12.9528424Z Self Signed Certificate Thumbprint 979EEC9D34EEBE71686D8D281402EB682D8D761F 2020-10-19T06:14:12.9532462Z Modifying Service Tier Config File with Instance Specific Settings 2020-10-19T06:14:12.9537773Z Modifying Service Tier Config File with settings from environment variable 2020-10-19T06:14:15.0408198Z Setting EnableTaskScheduler to False 2020-10-19T06:14:26.8270132Z Starting Service Tier 2020-10-19T06:14:26.8692511Z Registering event sources 2020-10-19T06:14:57.7980481Z Creating DotNetCore Web Server Instance 2020-10-19T06:14:57.7988838Z Enabling Financials User Experience 2020-10-19T06:14:57.7992522Z Enabling rewrite rule: Don't rewrite system files 2020-10-19T06:14:57.8004650Z Enabling rewrite rule: Already have tenant specified 2020-10-19T06:14:57.8008602Z Enabling rewrite rule: Hostname (without port) to tenant 2020-10-19T06:14:57.8013349Z Using license file 'c:\run\my\license.flf' 2020-10-19T06:14:59.0194459Z Import License 2020-10-19T06:14:59.0202522Z Dismounting Tenant 2020-10-19T06:14:59.0205070Z Mounting Tenant 2020-10-19T06:15:00.2623451Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:15:02.6914909Z Sync'ing Tenant 2020-10-19T06:15:02.6923144Z Tenant is Operational 2020-10-19T06:15:05.0848532Z Creating http download site 2020-10-19T06:15:05.1003862Z Setting SA Password and enabling SA 2020-10-19T06:15:05.1022130Z Creating admin as SQL User and add to sysadmin 2020-10-19T06:15:05.1105452Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:05.1106210Z Creating SUPER user 2020-10-19T06:15:17.7007316Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3623152Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3632936Z Container IP Address: 172.17.95.183 2020-10-19T06:15:20.3639213Z Container Hostname : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3647983Z Container Dns Name : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3656779Z Web Client : http://hostedagent-cgk-eli-current/BC/?tenant=default 2020-10-19T06:15:20.3668270Z Dev. Server : http://hostedagent-cgk-eli-current 2020-10-19T06:15:20.3677243Z Dev. ServerInstance : BC 2020-10-19T06:15:20.3684329Z Dev. Server Tenant : default 2020-10-19T06:15:20.3691765Z Setting hostedagent-cgk-eli-current to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3698404Z Setting hostedagent-cgk-eli-current-default to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3702371Z 2020-10-19T06:15:20.3708850Z Files: 2020-10-19T06:15:20.3717513Z http://hostedagent-cgk-eli-current:8080/ALLanguage.vsix 2020-10-19T06:15:20.3721071Z 2020-10-19T06:15:20.3733953Z Container Total Physical Memory is 7.0Gb 2020-10-19T06:15:20.3737506Z Container Free Physical Memory is 2.8Gb 2020-10-19T06:15:20.3741952Z 2020-10-19T06:15:20.3749798Z Initialization took 73 seconds 2020-10-19T06:15:20.3758511Z Ready for connections! 2020-10-19T06:15:20.4969816Z Reading CustomSettings.config from hostedagent-cgk-eli-current 2020-10-19T06:15:23.0487032Z Creating Desktop Shortcuts for hostedagent-cgk-eli-current 2020-10-19T06:15:23.2931102Z Container hostedagent-cgk-eli-current successfully created 2020-10-19T06:15:23.2934776Z 2020-10-19T06:15:23.2944019Z Use: 2020-10-19T06:15:23.2955923Z Get-BcContainerEventLog -containerName hostedagent-cgk-eli-current to retrieve a snapshot of the event log from the container 2020-10-19T06:15:23.2967485Z Get-BcContainerDebugInfo -containerName hostedagent-cgk-eli-current to get debug information about the container 2020-10-19T06:15:23.2978853Z Enter-BcContainer -containerName hostedagent-cgk-eli-current to open a PowerShell prompt inside the container 2020-10-19T06:15:23.2990887Z Remove-BcContainer -containerName hostedagent-cgk-eli-current to remove the container again 2020-10-19T06:15:23.3000775Z docker logs hostedagent-cgk-eli-current to retrieve information about URL's again 2020-10-19T06:15:23.3540779Z 2020-10-19T06:15:23.3546292Z Creating container took 651 seconds 2020-10-19T06:15:23.3551742Z 2020-10-19T06:15:23.3557677Z _
2020-10-19T06:15:23.3563575Z | | | | | | ()
2020-10-19T06:15:23.3572116Z | |
_
| |_ | | | _ _ 2020-10-19T06:15:25.5655059Z | | | ' \/ | / | | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:25.5668657Z | || | | _ \ | (| | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:25.5674110Z |___|| ||/__,||||| ||_, | _,| ./| ./|/ 2020-10-19T06:15:25.5685463Z / | | | | |
2020-10-19T06:15:25.5689763Z |
/ || ||
2020-10-19T06:15:25.5694844Z 2020-10-19T06:15:25.5701777Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Cegeka S.p.A._Core Management1.0.65.0.app 2020-10-19T06:15:25.5709218Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:35.8171766Z Synchronizing Core Management on tenant default 2020-10-19T06:15:37.2760428Z Installing Core Management on tenant default 2020-10-19T06:15:37.2854756Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:41.5265074Z App successfully published 2020-10-19T06:15:41.5287715Z 2020-10-19T06:15:41.5297700Z Installing apps took 18 seconds 2020-10-19T06:15:41.5313075Z 2020-10-19T06:15:41.5328811Z ____
2020-10-19T06:15:41.5336533Z / ____| (
) (_)
2020-10-19T06:15:41.5344675Z | | | | 2020-10-19T06:15:41.5350155Z | | / | ' _ \| '_ \| | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:41.5356951Z | |__ () | | | | | | |) | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:41.5363764Z _____/|| || |_| ._/||||| ||_, | _,_| ./| ./|_/ 2020-10-19T06:15:41.5372021Z | | / | | | | |
2020-10-19T06:15:41.5377678Z || |
/ || ||
2020-10-19T06:15:41.5381012Z 2020-10-19T06:15:41.5919380Z Using Version 1.0.404.0 2020-10-19T06:15:41.6813030Z Creating AppSourceCop.json for validation 2020-10-19T06:15:42.8313137Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:16:15.0864977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:15.2348758Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:16.1048639Z Downloading symbols: Microsoft_Application_17.0.17126.17806.app 2020-10-19T06:16:16.1104903Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:17.8454725Z Adding dependency to System Application from Microsoft 2020-10-19T06:16:17.8483190Z Adding dependency to Base Application from Microsoft 2020-10-19T06:16:17.8547209Z Downloading symbols: Microsoft_System_17.0.17020.17774.app 2020-10-19T06:16:17.8555486Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:18.5312989Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app 2020-10-19T06:16:18.5318372Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default 2020-10-19T06:16:19.2190926Z Downloading symbols: Microsoft_System Application_17.0.17126.17806.app 2020-10-19T06:16:19.2197413Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:20.4367385Z Downloading symbols: Microsoft_Base Application_17.0.17126.17806.app 2020-10-19T06:16:20.4376848Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:21.0151722Z Compiling... 2020-10-19T06:16:21.0305444Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:16:31.9406560Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:16:31.9429312Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:16:31.9431046Z 2020-10-19T06:16:31.9441841Z Compilation started for project 'Electronic Invoicing' containing '66' files at '6:16:21.636'. 2020-10-19T06:16:31.9444370Z 2020-10-19T06:16:33.7010758Z c:\sources\app\src\ELI\CodeUnit\Cod18103705.CGKELIElectronicInvoiceMgt.al(1631,43): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Purchase Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release. 2020-10-19T06:16:33.7086511Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7088401Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7095043Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7096501Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7097505Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7098472Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7099538Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7100320Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7101107Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7101916Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7102824Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7103834Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7104627Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7105789Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107027Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107859Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7108604Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7112473Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7121511Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7126090Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7134321Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7138620Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7143899Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7151288Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7159566Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7164118Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7175916Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7181036Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7188129Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7213190Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7223323Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7227639Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field. 2020-10-19T06:16:33.7233606Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'. 2020-10-19T06:16:33.7238277Z 2020-10-19T06:16:33.7245818Z Compilation ended at '6:16:31.866'. 2020-10-19T06:16:33.7249809Z 2020-10-19T06:16:33.7257521Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app successfully created in 52 seconds 2020-10-19T06:16:33.7263671Z Cegeka S.p.A._Electronic Invoicing1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:16:33.7272773Z
____ ___
2020-10-19T06:16:33.7280676Z | | | | (_) |
| | | | | | | | () |
2020-10-19T06:16:33.7286772Z | |
| | | | | |_ | | | | | | | 2020-10-19T06:16:33.7293778Z | | | ' ` | ' \ / | '| | | ' \ / ` | | |/ \ | | | |/ \ / _ | | |/ / | | 2020-10-19T06:16:33.7301453Z | || | | | | | |) | () | | | || | | | | (| | | | _ \ | | | () | () | | <| | |_ 2020-10-19T06:16:33.7307336Z |___|| || || ./ \/|| _||| ||_, | ||_|/_| ||_/ _/|||__|__| 2020-10-19T06:16:33.7317159Z | | / |
2020-10-19T06:16:33.7324717Z || |
/
2020-10-19T06:16:36.2761208Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:36.8584423Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5077333Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5181303Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.6772498Z Synchronizing Any on tenant default 2020-10-19T06:16:37.7224613Z Installing Any on tenant default 2020-10-19T06:16:37.7295269Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.8388020Z App successfully published 2020-10-19T06:16:37.8705009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:38.4128026Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0382552Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0472265Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.1797871Z Synchronizing Library Assert on tenant default 2020-10-19T06:16:39.2199117Z Installing Library Assert on tenant default 2020-10-19T06:16:39.2267009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.3342370Z App successfully published 2020-10-19T06:16:39.3528812Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.9412743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5744569Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5841430Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.6627870Z Synchronizing Library Variable Storage on tenant default 2020-10-19T06:16:40.7201958Z Installing Library Variable Storage on tenant default 2020-10-19T06:16:40.7282495Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.8420820Z App successfully published 2020-10-19T06:16:40.8665697Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:41.4129949Z Copy from container hostedagent-cgk-eli-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0427252Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0512171Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:42.6528500Z Synchronizing Test Runner on tenant default 2020-10-19T06:16:42.8324356Z Installing Test Runner on tenant default 2020-10-19T06:16:42.8398275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.1540823Z App successfully published 2020-10-19T06:16:43.1727571Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.7237355Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_System Application Test Library_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3714616Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3804648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:45.6611906Z Synchronizing System Application Test Library on tenant default 2020-10-19T06:16:45.8452650Z Installing System Application Test Library on tenant default 2020-10-19T06:16:45.8522199Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.4142800Z App successfully published 2020-10-19T06:16:46.4404003Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.9879882Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-TestLibraries_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6171909Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6340258Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:17.5805694Z Synchronizing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.3702086Z Installing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.5893513Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.0725609Z App successfully published 2020-10-19T06:17:26.0934942Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.8224633Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Bank_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4645760Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4748052Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.0536947Z Synchronizing Tests-Bank on tenant default 2020-10-19T06:17:31.1760170Z Installing Tests-Bank on tenant default 2020-10-19T06:17:31.1840588Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.5003171Z App successfully published 2020-10-19T06:17:31.5200442Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:32.0685512Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cash Flow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7309317Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7325255Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.5751389Z Synchronizing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6868570Z Installing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6948426Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.8151337Z App successfully published 2020-10-19T06:17:34.8351940Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:35.3731986Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cost Accounting_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0338343Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0440348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:38.9374617Z Synchronizing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0501892Z Installing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0580137Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.1759775Z App successfully published 2020-10-19T06:17:39.2001351Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.9245563Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-CRM integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5821254Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5959931Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:44.5195402Z Synchronizing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8623012Z Installing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8638176Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.1265888Z App successfully published 2020-10-19T06:17:46.1492658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.8637915Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Data Exchange_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5063149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5156590Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.3323745Z Synchronizing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4580682Z Installing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4587150Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.5780091Z App successfully published 2020-10-19T06:17:50.5970098Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:51.2136186Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Dimension_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8765147Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8863312Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:55.5531940Z Synchronizing Tests-Dimension on tenant default 2020-10-19T06:17:55.8923927Z Installing Tests-Dimension on tenant default 2020-10-19T06:17:55.8994799Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:56.7911744Z App successfully published 2020-10-19T06:17:56.8453444Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:57.3944076Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-ERM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0340554Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0589815Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:41.1198142Z Synchronizing Tests-ERM on tenant default 2020-10-19T06:18:41.3043666Z Installing Tests-ERM on tenant default 2020-10-19T06:18:41.3101943Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:47.7589237Z App successfully published 2020-10-19T06:18:47.7838840Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:48.5580571Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Fixed Asset_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2140528Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2236298Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.3412453Z Synchronizing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4645631Z Installing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4659319Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.6002318Z App successfully published 2020-10-19T06:18:52.6197778Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:53.3203266Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-General Journal_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9555170Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9652282Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:57.3120487Z Synchronizing Tests-General Journal on tenant default 2020-10-19T06:18:57.4393444Z Installing Tests-General Journal on tenant default 2020-10-19T06:18:57.4460823Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:58.7193379Z App successfully published 2020-10-19T06:18:58.7426002Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:59.2904378Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Graph_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9221871Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9335300Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.5317409Z Synchronizing Tests-Graph on tenant default 2020-10-19T06:19:04.6528352Z Installing Tests-Graph on tenant default 2020-10-19T06:19:04.6598658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.7961552Z App successfully published 2020-10-19T06:19:04.8200432Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:05.5840743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2444600Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2480723Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.5077011Z Synchronizing Tests-Integration on tenant default 2020-10-19T06:19:08.6408757Z Installing Tests-Integration on tenant default 2020-10-19T06:19:08.6422595Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.9846724Z App successfully published 2020-10-19T06:19:09.0050077Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:09.6676942Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Invoicing_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3406182Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3512601Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:12.3578432Z Synchronizing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4734415Z Installing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4802864Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.2015820Z App successfully published 2020-10-19T06:19:13.2560661Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.9814116Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Job_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6462565Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6576008Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:19.6873031Z Synchronizing Tests-Job on tenant default 2020-10-19T06:19:20.0204014Z Installing Tests-Job on tenant default 2020-10-19T06:19:20.0286341Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:20.8212474Z App successfully published 2020-10-19T06:19:20.8645073Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:21.6478187Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Local_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3131796Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3289454Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:37.8556749Z Synchronizing Tests-Local on tenant default 2020-10-19T06:19:37.9834324Z Installing Tests-Local on tenant default 2020-10-19T06:19:37.9903558Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:39.2716110Z App successfully published 2020-10-19T06:19:39.3005648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:40.0332901Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Misc_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6609035Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6772992Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:54.0325558Z Synchronizing Tests-Misc on tenant default 2020-10-19T06:19:54.3714369Z Installing Tests-Misc on tenant default 2020-10-19T06:19:54.3758856Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:00.4920216Z App successfully published 2020-10-19T06:20:00.5123307Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:01.0617808Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Permissions_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7092080Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7204125Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:02.7252806Z Synchronizing Tests-Permissions on tenant default 2020-10-19T06:20:03.0663505Z Installing Tests-Permissions on tenant default 2020-10-19T06:20:03.0730514Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.2521971Z App successfully published 2020-10-19T06:20:03.2718328Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.8037245Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Physical Inventory_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4640474Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4732656Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.3042497Z Synchronizing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.4534513Z Installing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.5210275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.6377739Z App successfully published 2020-10-19T06:20:05.6592259Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:06.1964494Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Prepayment_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8574063Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8659352Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.2295344Z Synchronizing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3577861Z Installing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3642544Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.5151236Z App successfully published 2020-10-19T06:20:07.5387746Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:08.0605754Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Rapid Start_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7033688Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7137613Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4611196Z Synchronizing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4611698Z Installing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4612408Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4612924Z App successfully published 2020-10-19T06:20:11.4613313Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.6014191Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Report_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2422612Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2514348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:15.1231651Z Synchronizing Tests-Report on tenant default 2020-10-19T06:20:15.2406825Z Installing Tests-Report on tenant default 2020-10-19T06:20:15.2493005Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:16.5285919Z App successfully published 2020-10-19T06:20:16.5542449Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:17.0873272Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Resource_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7190301Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7293910Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.1542782Z Synchronizing Tests-Resource on tenant default 2020-10-19T06:20:21.2755142Z Installing Tests-Resource on tenant default 2020-10-19T06:20:21.2823414Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.6248777Z App successfully published 2020-10-19T06:20:21.6498948Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:22.1951118Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Reverse_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8221149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8311066Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.0924719Z Synchronizing Tests-Reverse on tenant default 2020-10-19T06:20:24.2083983Z Installing Tests-Reverse on tenant default 2020-10-19T06:20:24.2151297Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.6743448Z App successfully published 2020-10-19T06:20:24.7342279Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:25.2777404Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SCM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9250670Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9374978Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:35.4595594Z Synchronizing Tests-SCM on tenant default 2020-10-19T06:21:35.6068318Z Installing Tests-SCM on tenant default 2020-10-19T06:21:35.6136677Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.1122789Z App successfully published 2020-10-19T06:21:42.1361488Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.9017496Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMB_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5227433Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5326994Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:48.8041696Z Synchronizing Tests-SMB on tenant default 2020-10-19T06:21:48.9340856Z Installing Tests-SMB on tenant default 2020-10-19T06:21:48.9346977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:49.5702231Z App successfully published 2020-10-19T06:21:49.5890662Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:50.2763649Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMTP_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9343407Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9428238Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.2168839Z Synchronizing Tests-SMTP on tenant default 2020-10-19T06:21:51.3371247Z Installing Tests-SMTP on tenant default 2020-10-19T06:21:51.3453780Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.8616862Z App successfully published 2020-10-19T06:21:51.8811149Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:52.5044345Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Upgrade_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2234247Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2331957Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.4247347Z Synchronizing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6445653Z Installing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6515685Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.9729758Z App successfully published 2020-10-19T06:21:53.9965596Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:54.5716074Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-User_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.1940388Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.2035392Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.3737971Z Synchronizing Tests-User on tenant default 2020-10-19T06:21:56.4955152Z Installing Tests-User on tenant default 2020-10-19T06:21:56.5021246Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.6876009Z App successfully published 2020-10-19T06:21:56.7104229Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:57.4273565Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-VAT_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0674345Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0780440Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2113674Z Synchronizing Tests-VAT on tenant default 2020-10-19T06:22:03.2114034Z Installing Tests-VAT on tenant default 2020-10-19T06:22:03.2114346Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2114675Z App successfully published 2020-10-19T06:22:03.2114962Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.8163339Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Workflow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow_17.0.17126.17806.app 2020-10-19T06:22:04.4722207Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow17.0.17126.17806.app 2020-10-19T06:22:04.4849102Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:10.3775285Z Synchronizing Tests-Workflow on tenant default 2020-10-19T06:22:10.4998077Z Installing Tests-Workflow on tenant default 2020-10-19T06:22:10.5064594Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:11.2636926Z App successfully published 2020-10-19T06:22:11.2645773Z TestToolkit successfully imported 2020-10-19T06:22:11.3167479Z 2020-10-19T06:22:11.3177384Z Importing Test Toolkit took 338 seconds 2020-10-19T06:22:11.3184258Z ____
2020-10-19T06:22:11.3196473Z / ____| (
) (_) | | | |
2020-10-19T06:22:11.3201590Z | | | | | |_ | |_ 2020-10-19T06:22:11.3210047Z | | / | ' _ \| '_ \| | | | '_ \ / _ | | / \ | | / ` | ' | ' \/ | 2020-10-19T06:22:11.3216205Z | |_ () | | | | | | |) | | | | | | | (| | | |_ _ \ | | (| | |) | |) _ \ 2020-10-19T06:22:11.3226040Z __\/|| || |_| ./||||| ||_, | _\|/_| _,| ./| ./|_/ 2020-10-19T06:22:11.3232608Z | | / | | | | |
2020-10-19T06:22:11.3239142Z || |
/ || ||
2020-10-19T06:22:11.3327581Z Using Version 1.0.404.0 2020-10-19T06:22:12.1944689Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:22:12.7865649Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.8175822Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.9882200Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:22:12.9889818Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.4415626Z Downloading symbols: Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:22:13.4422796Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.7710111Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17806.app 2020-10-19T06:22:13.7726333Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.1556164Z Downloading symbols: Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:22:14.1599654Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.5192434Z Adding dependency to System Application from Microsoft 2020-10-19T06:22:14.5214800Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:22:14.5241656Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.9223082Z Adding dependency to Library Variable Storage from Microsoft 2020-10-19T06:22:14.9265553Z Downloading symbols: Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:22:14.9277007Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Variable Storage&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:15.2511068Z Compiling... 2020-10-19T06:22:15.2517689Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app" /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:22:29.3395267Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:22:29.3400838Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:22:29.3403913Z 2020-10-19T06:22:29.3411005Z Compilation started for project 'Electronic Invoicing - Test' containing '8' files at '6:22:16.18'. 2020-10-19T06:22:29.3415548Z 2020-10-19T06:22:29.3421454Z c:\sources\test\data\TAB50133.navxdata(1,1): info AL1027: The file at location 'c:\sources\test\data\TAB50133.navxdata' matches the definition for 'TableData'. 2020-10-19T06:22:29.3425117Z 2020-10-19T06:22:29.3431379Z Compilation ended at '6:22:29.278'. 2020-10-19T06:22:29.3434565Z 2020-10-19T06:22:29.3448534Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app successfully created in 18 seconds 2020-10-19T06:22:29.3513151Z Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:22:29.3611251Z 2020-10-19T06:22:29.3614943Z Compiling apps, test apps and importing test toolkit took 408 seconds 2020-10-19T06:22:29.3620606Z 2020-10-19T06:22:29.3625938Z
_
2020-10-19T06:22:29.3632934Z | \ | | | () | | () /\
2020-10-19T06:22:29.3639516Z | |
) | _| | | | | | / \ 2020-10-19T06:22:29.3645941Z | / | | | ' | | / | ' | | ' \ / ` | / /\ \ | ' | '_ \/ | 2020-10-19T06:22:29.3652772Z | | | || | |) | | _ \ | | | | | | | (| | / __ | |) | |) _ \ 2020-10-19T06:22:29.3661073Z || _,|_./|||/| |||| ||\, | // \\ ./| ./|/ 2020-10-19T06:22:29.3664378Z / | | | | |
2020-10-19T06:22:29.3671187Z |
/ || ||
2020-10-19T06:22:29.3675037Z 2020-10-19T06:22:29.4752827Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:30.9443119Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app 2020-10-19T06:22:30.9583874Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:34.5072397Z Synchronizing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4215117Z Installing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4284244Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:38.9557299Z App successfully published 2020-10-19T06:22:39.2917828Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app 2020-10-19T06:22:39.3013067Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:37.7736617Z Synchronizing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0054958Z Installing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0109011Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:49.4185299Z App successfully published 2020-10-19T06:23:49.4199186Z 2020-10-19T06:23:49.4207469Z Publishing apps took 80 seconds 2020-10-19T06:23:49.4212151Z 2020-10-19T06:23:49.4218161Z ____ _ ____
2020-10-19T06:23:49.4231658Z |
\ (_) | | | |
2020-10-19T06:23:49.4236894Z | |) | _ | | | | 2020-10-19T06:23:49.4243794Z | / | | | ' | ' | | ' \ / ` | | |/ _ \ | / | 2020-10-19T06:23:49.4285105Z | | \ \ || | | | | | | | | | | | (| | | | _ \ |_ \ 2020-10-19T06:23:49.4293201Z || _\,|| ||| |||| ||_, | ||_|/_|_/ 2020-10-19T06:23:49.4299000Z / |
2020-10-19T06:23:49.4305748Z |_/
2020-10-19T06:23:49.4325301Z 2020-10-19T06:27:38.2994513Z UriToShow : BC/cs.DynamicFileHandler.axd?form=D&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=rzwophyazzvethn1b4hq0mfk 2020-10-19T06:27:38.3000977Z UriToShow : BC/cs.DynamicFileHandler.axd?form=E&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=av5iw2fxunifzshqjiybdbde 2020-10-19T06:27:38.3011384Z UriToShow : BC/cs.DynamicFileHandler.axd?form=F&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=ntwpvt5tp4omopmh5muffihu 2020-10-19T06:27:38.3080624Z UriToShow : BC/cs.DynamicFileHandler.axd?form=10&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=sxmrjts2ppktzayurth53nes 2020-10-19T06:27:38.4028437Z Codeunit 50133 CGK ELI Test WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:38.4730976Z Success (139.422 seconds) 2020-10-19T06:27:38.4851553Z Testfunction ELI_00000_CORModuleSetupCheck Success (0.024 seconds) 2020-10-19T06:27:38.4937375Z Testfunction ELI_00000_CheckFeature Success (2.17 seconds) 2020-10-19T06:27:38.5058839Z Testfunction ELI_00000_RELIntegrationCheck Success (5.43 seconds) 2020-10-19T06:27:38.5209587Z Testfunction ELI_00328_CheckNewFields Success (9.32 seconds) 2020-10-19T06:27:38.5217401Z Testfunction ELI_00329_Login Success (1.267 seconds) 2020-10-19T06:27:38.5227408Z Testfunction ELI_00330_AddInvoiceWithInvalidData Success (40.537 seconds) 2020-10-19T06:27:38.5244970Z Testfunction ELI_00331_SendInvoiceWithInvalidData Success (1.273 seconds) 2020-10-19T06:27:38.5248951Z Testfunction ELI_00332_CheckRejectedStatus Success (0.92 seconds) 2020-10-19T06:27:38.5265906Z Testfunction ELI_00333_CheckRejectedNotes Success (0.924 seconds) 2020-10-19T06:27:38.5276423Z Testfunction ELI_00334_DownloadXml Success (0.864 seconds) 2020-10-19T06:27:38.5299425Z Testfunction ELI_00335_ShowDocFromEIADashboard Success (1.58 seconds) 2020-10-19T06:27:38.5315525Z Testfunction ELI_00336_EIAAddRejectedDoc Success (1.27 seconds) 2020-10-19T06:27:38.5324015Z Testfunction ELI_00337_AddInvoiceWithInvalidDataWithPDF Success (9.773 seconds) 2020-10-19T06:27:38.5359617Z Testfunction ELI_00339_EIACheckStatusTransferred Success (1.283 seconds) 2020-10-19T06:27:38.5366785Z Testfunction ELI_00340_EIACheckStatusTransferred_CreditMemo Success (1.87 seconds) 2020-10-19T06:27:38.5376944Z Testfunction ELI_00341_EIACheckStatusTransferred_CustomerWithPec Success (0.95 seconds) 2020-10-19T06:27:38.5383280Z Testfunction ELI_00342_EIPImportFromIx Success (1.407 seconds) 2020-10-19T06:27:38.5406911Z Testfunction ELI_00343_EIPCreatePreview Success (1.337 seconds) 2020-10-19T06:27:38.5411517Z Testfunction ELI_00344_EIPCreateDocument Success (2.956 seconds) 2020-10-19T06:27:38.5424626Z Testfunction ELI_00345_EIPPostDocument Success (10.616 seconds) 2020-10-19T06:27:38.5440762Z Testfunction ELI_00346_EIPDownloadXml Success (0.983 seconds) 2020-10-19T06:27:38.5448320Z Testfunction ELI_00347_EIPDownloadPdf Success (0.92 seconds) 2020-10-19T06:27:38.5471985Z Testfunction ELI_00348_EIPDownloadHtml Success (0.907 seconds) 2020-10-19T06:27:38.5485939Z Testfunction ELI_00349_EIPDocumentMissingVendor Success (0.916 seconds) 2020-10-19T06:27:38.5499946Z Testfunction ELI_00350_EIPDocumentMissingVendorCorrection Success (0.996 seconds) 2020-10-19T06:27:38.5518703Z Testfunction ELI_00351_EIPDocumentDuplicateVatRegNo Success (1.64 seconds) 2020-10-19T06:27:38.5535696Z Testfunction ELI_00352_EIPImportFromDir Success (0.877 seconds) 2020-10-19T06:27:38.5556164Z Testfunction ELI_00353_EIPDuplicatePreview Success (1.05 seconds) 2020-10-19T06:27:38.5562584Z Testfunction ELI_00354_EIPDuplicatePreview Success (1.313 seconds) 2020-10-19T06:27:38.5573701Z Testfunction ELI_00355_EIPDuplicatePreview Success (2.314 seconds) 2020-10-19T06:27:38.5698862Z Testfunction ELI_00356_EIPDocumentVendorPaymentNotMatchingXml Success (1.227 seconds) 2020-10-19T06:27:38.5950721Z Testfunction ELI_00357_EIPDocumetProductNotMatchingXml Success (1.154 seconds) 2020-10-19T06:27:38.5999968Z Testfunction ELI_00360_EIPCreatePreviewConfirmWarnings Success (2.24 seconds) 2020-10-19T06:27:38.6703788Z Testfunction ELI_00361_EIPPurchaseReceiptMatching Success (4.154 seconds) 2020-10-19T06:27:38.6714194Z Testfunction ELI_00362_EIPPurchaseReceiptMatching Success (2.5 seconds) 2020-10-19T06:27:38.6958796Z Testfunction ELI_00364_EIPPurchaseReceiptMatching Success (2.443 seconds) 2020-10-19T06:27:38.6967463Z Testfunction ELI_00380_EIACheckStatusTransferred_ServiceInvoice Success (8.01 seconds) 2020-10-19T06:27:38.6984444Z Testfunction ELI_00381_EIACheckStatusTransferred_ServiceCM Success (1.157 seconds) 2020-10-19T06:27:38.6995625Z Testfunction ELI_00382EIPCMMatchingReturnShipment Success (8.85 seconds) 2020-10-19T06:27:39.0532301Z 2020-10-19T06:27:39.0562156Z Running tests took 230 seconds 2020-10-19T06:27:39.0608230Z
____
2020-10-19T06:27:39.0616589Z / ____| | | |
\ () | | | /\ | | ()/ | | |
2020-10-19T06:27:39.0677808Z | |
_ | | | |) | | | | | / \ _ _| | | | _ | | _ 2020-10-19T06:27:39.0710846Z | | / | ' | | | | | / \ | <| | | | | |/ _` | / /\ \ | '| | | / ` |/ | / | 2020-10-19T06:27:39.0715069Z | | () | |) | || | | | () | | |) | || | | | (| | / | | | || | || (| | (| |_ \ 2020-10-19T06:27:39.0721730Z ____/| ./ _, | __/ |__/ _,|||_,| // __| _||| _,|_|_|/ 2020-10-19T06:27:39.0728242Z | | / |
2020-10-19T06:27:39.0736626Z || |
/
2020-10-19T06:27:39.2218840Z Getting Runtime Package for Cegeka S.p.A._Electronic Invoicing1.0.404.0.app 2020-10-19T06:27:39.7176573Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:42.8953009Z Copying runtime package to build artifact 2020-10-19T06:27:42.9091724Z 2020-10-19T06:27:42.9096164Z Copying to Build Artifacts took 4 seconds 2020-10-19T06:27:42.9101606Z 2020-10-19T06:27:42.9112158Z ____ ____
2020-10-19T06:27:42.9124051Z | \ () / ____| | | ()
2020-10-19T06:27:42.9127871Z | |
) | _ ___ | | _ | |_ _ 2020-10-19T06:27:42.9160010Z | // \ ' ` \ / \ \ / / | ' \ / ` | | | / | '_ | / ` | | ' \ / \ '| 2020-10-19T06:27:42.9164613Z | | \ \ / | | | | | () \ V /| | | | | (| | | |____ () | | | | | (| | | | | | / |
2020-10-19T06:27:42.9173171Z || \_|| || ||\/ _/ ||| ||_, | __\/|| ||__,||| ||_|_|
2020-10-19T06:27:42.9177164Z _/ |
2020-10-19T06:27:42.9190339Z |
/
2020-10-19T06:27:42.9191130Z 2020-10-19T06:27:44.1999245Z Removing container hostedagent-cgk-eli-current 2020-10-19T06:27:45.9821778Z Removing hostedagent-cgk-eli-current from host hosts file 2020-10-19T06:27:46.2140830Z Removing hostedagent-cgk-eli-current-* from host hosts file 2020-10-19T06:27:46.2948331Z Removing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current 2020-10-19T06:27:46.3670640Z 2020-10-19T06:27:46.3686318Z Removing container took 3 seconds 2020-10-19T06:27:46.3689187Z 2020-10-19T06:27:46.3698438Z AL Pipeline finished in 1655 seconds 2020-10-19T06:27:46.8417970Z ##[section]Finishing: Run Pipeline

Thank you very much for the rapid support

freddydk commented 4 years ago

Possibly you are reusing an image where the apps are already installed?

Pellic commented 4 years ago

Nope, as you can see I am using your std script:

2020-10-19T06:00:05.4683611Z Determining artifacts to use 2020-10-19T06:00:10.8042872Z __
2020-10-19T06:00:10.8051193Z |
\ | |
2020-10-19T06:00:10.8055337Z | |) | _ _ | | __ 2020-10-19T06:00:10.8064394Z | / _| '__/ _ | ' ` \ / _ \ / \ '/ | 2020-10-19T06:00:10.8068984Z | | | (| | | | (_| | | | | | | _/ | / | _ \ 2020-10-19T06:00:10.8083501Z || _,|| _,|| || ||_|_\|_| |_/ 2020-10-19T06:00:10.8086700Z 2020-10-19T06:00:10.8103155Z Pipeline name CGK-ELI-current 2020-10-19T06:00:10.8114106Z Container name hostedagent-cgk-eli-current 2020-10-19T06:00:10.8127415Z Image name
2020-10-19T06:00:10.8212498Z ArtifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:00:10.8369200Z SasToken Not Specified 2020-10-19T06:00:10.8401363Z Credential admin/Pano5651 2020-10-19T06:00:10.8777495Z MemoryLimit 12G 2020-10-19T06:00:10.8790594Z Enable Task Scheduler False 2020-10-19T06:00:10.8808117Z Assign Premium Plan False 2020-10-19T06:00:10.8821223Z Install Test Framework False 2020-10-19T06:00:10.8834076Z Install Test Libraries False 2020-10-19T06:00:10.8846199Z Install Perf. Toolkit False 2020-10-19T06:00:10.8858249Z enableCodeCop False 2020-10-19T06:00:10.8873248Z enableAppSourceCop True 2020-10-19T06:00:10.8883364Z enableUICop True 2020-10-19T06:00:10.8895796Z enablePerTenantExtensionCop False 2020-10-19T06:00:10.8908257Z azureDevOps False 2020-10-19T06:00:10.8921294Z License file Specified 2020-10-19T06:00:10.8937372Z CodeSignCertPfxFile Not specified 2020-10-19T06:00:10.8949466Z TestResultsFile D:\a\1\s\TestResults.xml 2020-10-19T06:00:10.8960974Z TestResultsFormat JUnit 2020-10-19T06:00:10.9000930Z AdditionalCountries
2020-10-19T06:00:10.9012996Z PackagesFolder D:\a\1\s.packages 2020-10-19T06:00:10.9026311Z OutputFolder D:\a\1\s.output 2020-10-19T06:00:10.9038966Z BuildArtifactFolder D:\a\1\a 2020-10-19T06:00:10.9051753Z CreateRuntimePackages True 2020-10-19T06:00:10.9064525Z AppBuild 404 2020-10-19T06:00:10.9077653Z AppRevision 0 2020-10-19T06:00:10.9090078Z Mandatory Affixes CGK 2020-10-19T06:00:10.9107422Z Supported Countries it,us 2020-10-19T06:00:10.9107937Z Install Apps 2020-10-19T06:00:10.9123228Z - C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app 2020-10-19T06:00:10.9127712Z Previous Apps 2020-10-19T06:00:10.9137710Z - None 2020-10-19T06:00:10.9139191Z Application folders 2020-10-19T06:00:10.9150585Z - D:\a\1\s\app 2020-10-19T06:00:10.9155434Z Test application folders 2020-10-19T06:00:10.9164274Z - D:\a\1\s\test 2020-10-19T06:00:10.9235798Z 2020-10-19T06:00:10.9242402Z ___
_
2020-10-19T06:00:10.9250630Z | \ | | () () (_)
2020-10-19T06:00:10.9254784Z | |_) | | | |
_ _ _ _ _ _ 2020-10-19T06:00:10.9262785Z | _/ | | | | | | ' \ / | / _ |/ \ ' \ / \ '| |/ | | | ' _ \ / _ |/ ` |/ \ 2020-10-19T06:00:10.9267450Z | | | || | | | | | | | (| | | (_| | / | | | / | | | ( | | | | | | | (| | (| | / 2020-10-19T06:00:10.9275526Z || _,||||| ||_, | _, |_|| ||_|| ||_| ||| || ||_,|_, |\| 2020-10-19T06:00:10.9280238Z / | / | / |
2020-10-19T06:00:10.9289681Z |__/ |
/ |___/
2020-10-19T06:00:10.9290448Z 2020-10-19T06:00:10.9294861Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:04:32.0351629Z 2020-10-19T06:04:32.0357894Z Pulling generic image took 261 seconds

freddydk commented 4 years ago

It is very hard to see the output when it isn't formatted as "Insert Code"

Pellic commented 4 years ago

sorry: 2020-10-19T05:59:57.1072763Z ##[section]Starting: Run Pipeline 2020-10-19T05:59:57.1223394Z ============================================================================== 2020-10-19T05:59:57.1223968Z Task : PowerShell 2020-10-19T05:59:57.1224302Z Description : Run a PowerShell script on Linux, macOS, or Windows 2020-10-19T05:59:57.1224581Z Version : 2.170.1 2020-10-19T05:59:57.1224807Z Author : Microsoft Corporation 2020-10-19T05:59:57.1225168Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2020-10-19T05:59:57.1225567Z ============================================================================== 2020-10-19T05:59:58.0647167Z Generating script. 2020-10-19T05:59:58.0727731Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 404 -appRevision 0 2020-10-19T05:59:58.1151686Z ========================== Starting Command Output =========================== 2020-10-19T05:59:58.1442723Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\675a43c0-dc28-4ee5-9f88-cd0d97a74adc.ps1'" 2020-10-19T05:59:58.5258963Z Set artifact = ///it/Current 2020-10-19T05:59:58.5296082Z Set pipelineName = CGK-ELI-current 2020-10-19T05:59:58.5372497Z Set containerName = hostedagent-cgk-eli-current 2020-10-19T05:59:58.5565469Z Set installApps = 'C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app' 2020-10-19T05:59:58.5575528Z Set previousApps = '' 2020-10-19T05:59:58.5609222Z Set appSourceCopMandatoryAffixes = 'CGK' 2020-10-19T05:59:58.5633298Z Set appSourceCopSupportedCountries = 'it,us' 2020-10-19T05:59:58.5661182Z Set appFolders = 'app' 2020-10-19T05:59:58.5689983Z Set testFolders = 'test' 2020-10-19T05:59:58.5719613Z Set memoryLimit = '12G' 2020-10-19T05:59:58.5729806Z Set additionalCountries = '' 2020-10-19T05:59:58.5777700Z Set installTestFramework = False 2020-10-19T05:59:58.5822492Z Set installTestLibraries = False 2020-10-19T05:59:58.5852114Z Set installPerformanceToolkit = False 2020-10-19T05:59:58.5881843Z Set enableCodeCop = False 2020-10-19T05:59:58.5910229Z Set enableAppSourceCop = True 2020-10-19T05:59:58.5941916Z Set enablePerTenantExtensionCop = False 2020-10-19T05:59:58.5972327Z Set enableUICop = True 2020-10-19T05:59:58.5981515Z Set doNotSignApp = False 2020-10-19T05:59:58.6000836Z Set doNotRunTests = False 2020-10-19T05:59:58.6029076Z Set cacheImage = False 2020-10-19T05:59:58.6060233Z Use bcContainerHelper Version: https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T05:59:58.6322913Z Downloading https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T06:00:03.1411433Z C:\Users\VssAdministrator\AppData\Local\Temp\hostedagent-cgk-eli-current\navcontainerhelper-dev\BcContainerHelper.psm1 2020-10-19T06:00:05.4683611Z Determining artifacts to use 2020-10-19T06:00:10.8042872Z _____ _ 2020-10-19T06:00:10.8051193Z | __ \ | | 2020-10-19T06:00:10.8055337Z | |__) |_ _ _ __ __ _ _ __ ___ ___| |_ ___ _ __ ___ 2020-10-19T06:00:10.8064394Z | ___/ _ | '/ ` | ' ` \ / \ / \ '/ | 2020-10-19T06:00:10.8068984Z | | | (| | | | (_| | | | | | | / | / | \ \ 2020-10-19T06:00:10.8083501Z || _,|| _,|| || ||_|___|| |/ 2020-10-19T06:00:10.8086700Z 2020-10-19T06:00:10.8103155Z Pipeline name CGK-ELI-current 2020-10-19T06:00:10.8114106Z Container name hostedagent-cgk-eli-current 2020-10-19T06:00:10.8127415Z Image name
2020-10-19T06:00:10.8212498Z ArtifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:00:10.8369200Z SasToken Not Specified 2020-10-19T06:00:10.8401363Z Credential admin/Pano5651 2020-10-19T06:00:10.8777495Z MemoryLimit 12G 2020-10-19T06:00:10.8790594Z Enable Task Scheduler False 2020-10-19T06:00:10.8808117Z Assign Premium Plan False 2020-10-19T06:00:10.8821223Z Install Test Framework False 2020-10-19T06:00:10.8834076Z Install Test Libraries False 2020-10-19T06:00:10.8846199Z Install Perf. Toolkit False 2020-10-19T06:00:10.8858249Z enableCodeCop False 2020-10-19T06:00:10.8873248Z enableAppSourceCop True 2020-10-19T06:00:10.8883364Z enableUICop True 2020-10-19T06:00:10.8895796Z enablePerTenantExtensionCop False 2020-10-19T06:00:10.8908257Z azureDevOps False 2020-10-19T06:00:10.8921294Z License file Specified 2020-10-19T06:00:10.8937372Z CodeSignCertPfxFile Not specified 2020-10-19T06:00:10.8949466Z TestResultsFile D:\a\1\s\TestResults.xml 2020-10-19T06:00:10.8960974Z TestResultsFormat JUnit 2020-10-19T06:00:10.9000930Z AdditionalCountries
2020-10-19T06:00:10.9012996Z PackagesFolder D:\a\1\s.packages 2020-10-19T06:00:10.9026311Z OutputFolder D:\a\1\s.output 2020-10-19T06:00:10.9038966Z BuildArtifactFolder D:\a\1\a 2020-10-19T06:00:10.9051753Z CreateRuntimePackages True 2020-10-19T06:00:10.9064525Z AppBuild 404 2020-10-19T06:00:10.9077653Z AppRevision 0 2020-10-19T06:00:10.9090078Z Mandatory Affixes CGK 2020-10-19T06:00:10.9107422Z Supported Countries it,us 2020-10-19T06:00:10.9107937Z Install Apps 2020-10-19T06:00:10.9123228Z - C:\Dependency\Cegeka S.p.A._Core Management1.0.65.0.app 2020-10-19T06:00:10.9127712Z Previous Apps 2020-10-19T06:00:10.9137710Z - None 2020-10-19T06:00:10.9139191Z Application folders 2020-10-19T06:00:10.9150585Z - D:\a\1\s\app 2020-10-19T06:00:10.9155434Z Test application folders 2020-10-19T06:00:10.9164274Z - D:\a\1\s\test 2020-10-19T06:00:10.9235798Z 2020-10-19T06:00:10.9242402Z ____ _
2020-10-19T06:00:10.9250630Z | \ | | () () (_)
2020-10-19T06:00:10.9254784Z | |_) | | | |
_ _ _ _ _ _ 2020-10-19T06:00:10.9262785Z | _/ | | | | | | ' \ / | / _ |/ \ ' \ / \ '| |/ | | | ' _ \ / _ |/ ` |/ \ 2020-10-19T06:00:10.9267450Z | | | || | | | | | | | (| | | (_| | / | | | / | | | ( | | | | | | | (| | (| | / 2020-10-19T06:00:10.9275526Z || _,||||| ||_, | _, |_|| ||_|| ||_| ||| || ||_,|_, |\| 2020-10-19T06:00:10.9280238Z / | / | / |
2020-10-19T06:00:10.9289681Z |__/ |
/ |_/
2020-10-19T06:00:10.9290448Z 2020-10-19T06:00:10.9294861Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:04:32.0351629Z 2020-10-19T06:04:32.0357894Z Pulling generic image took 261 seconds 2020-10-19T06:04:32.0413929Z 2020-10-19T06:04:32.0418679Z ___

2020-10-19T06:04:32.0429091Z / _| | | () | | ()
2020-10-19T06:04:32.0434914Z | |
_
| | | |_ _ _ 2020-10-19T06:04:32.0443135Z | | | '/ \/ _| __| | '_ \ / _ | / / | ' | / ` | | ' \ / \ '| 2020-10-19T06:04:32.0447522Z | |__| | | __/ (| | || | | | | (| | | ( () | | | | | (| | | | | | / |
2020-10-19T06:04:32.0455824Z \
|| _|\,|_||| ||_, | _\/|| ||__,||| ||_|_|
2020-10-19T06:04:32.0460152Z _/ |
2020-10-19T06:04:32.0468215Z |
/
2020-10-19T06:04:32.0469724Z 2020-10-19T06:04:32.2258089Z WARNING: Container name should not exceed 15 characters 2020-10-19T06:04:33.1606820Z BcContainerHelper is version 1.0.10 2020-10-19T06:04:33.1611644Z BcContainerHelper is running as administrator 2020-10-19T06:04:33.1632564Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019 2020-10-19T06:04:35.1712534Z Docker Client Version is 19.03.12 2020-10-19T06:04:35.1735577Z Docker Server Version is 19.03.12 2020-10-19T06:04:35.8296093Z Downloading application artifact /sandbox/17.0.17126.17806/it 2020-10-19T06:04:35.8510071Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\35c32ce8-0898-4724-8f70-ed413f8ea8aa.zip 2020-10-19T06:04:40.3124883Z Unpacking application artifact to tmp folder using 7zip 2020-10-19T06:04:50.2362907Z Downloading platform artifact /sandbox/17.0.17126.17806/platform 2020-10-19T06:04:50.2386672Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\4c517335-20e2-45d7-ac35-39819b82c833.zip 2020-10-19T06:04:53.0906916Z Unpacking platform artifact to tmp folder using 7zip 2020-10-19T06:05:32.5541642Z Downloading Prerequisite Components 2020-10-19T06:05:32.5651442Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi 2020-10-19T06:05:32.5936729Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi 2020-10-19T06:05:32.6249784Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe 2020-10-19T06:05:33.0615873Z Fetching all docker images 2020-10-19T06:05:33.9307186Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:34.1554242Z Creating Container hostedagent-cgk-eli-current 2020-10-19T06:05:34.1560899Z Version: 17.0.17126.17806-IT 2020-10-19T06:05:34.1569722Z Style: sandbox 2020-10-19T06:05:34.1572750Z Multitenant: Yes 2020-10-19T06:05:34.1580581Z Platform: 17.0.17020.17774 2020-10-19T06:05:34.1591208Z Generic Tag: 0.1.0.24 2020-10-19T06:05:34.1626009Z Container OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1633047Z Host OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1654576Z Using process isolation 2020-10-19T06:05:34.1681914Z Using locale it-IT 2020-10-19T06:05:34.1716076Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) 2020-10-19T06:05:34.1775900Z Using license file C:\License.flf 2020-10-19T06:05:34.5993123Z Additional Parameters: 2020-10-19T06:05:34.6012779Z --volume "D:\a\1\s:c:\sources" 2020-10-19T06:05:34.6019767Z --env customNavSettings=EnableTaskScheduler=False 2020-10-19T06:05:34.6029247Z Files in C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\my: 2020-10-19T06:05:34.6072519Z - AdditionalOutput.ps1 2020-10-19T06:05:34.6084999Z - license.flf 2020-10-19T06:05:34.6095798Z - MainLoop.ps1 2020-10-19T06:05:34.6103705Z - SetupVariables.ps1 2020-10-19T06:05:34.6110011Z - updatehosts.ps1 2020-10-19T06:05:34.6117187Z Creating container hostedagent-cgk-eli-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:35.3434042Z ab9a0cf8568ae7706a0f443e153197c0344b621725d6d5aa2129c39c8ef0bc5f 2020-10-19T06:06:02.1481558Z Waiting for container hostedagent-cgk-eli-current to be ready 2020-10-19T06:06:16.2853436Z Adding HOSTEDAGENT-CGK to hosts file 2020-10-19T06:06:17.6975478Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:06:19.2126897Z Using installer from C:\Run\150-new 2020-10-19T06:06:19.2133664Z Installing Business Central 2020-10-19T06:06:19.2142045Z Installing from artifacts 2020-10-19T06:06:29.6514366Z Starting Local SQL Server 2020-10-19T06:06:29.6523854Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 2020-10-19T06:06:29.6528367Z start... 2020-10-19T06:06:30.9020090Z Starting Internet Information Server 2020-10-19T06:06:30.9026624Z Copying Service Tier Files 2020-10-19T06:06:35.4488640Z Copying PowerShell Scripts 2020-10-19T06:06:35.4496839Z Copying dependencies 2020-10-19T06:06:35.4500525Z Copying ReportBuilder 2020-10-19T06:06:35.4507190Z Importing PowerShell Modules 2020-10-19T06:06:52.3319067Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17806\it\BusinessCentral-IT.bak 2020-10-19T06:07:35.6845830Z Restoring CRONUS Demo Database 2020-10-19T06:10:18.7812381Z Exporting Application to CRONUS 2020-10-19T06:10:25.0961599Z Removing Application from tenant 2020-10-19T06:10:25.0969779Z Modifying Business Central Service Tier Config File for Docker 2020-10-19T06:10:25.0977677Z Creating Business Central Service Tier 2020-10-19T06:10:25.0979456Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll' 2020-10-19T06:10:25.0986779Z Copying Web Client Files 2020-10-19T06:10:25.0995007Z Copying Client Files 2020-10-19T06:10:25.0998997Z Copying ModernDev Files 2020-10-19T06:10:25.1007089Z Copying additional files 2020-10-19T06:10:25.1011095Z Copying ConfigurationPackages 2020-10-19T06:10:25.1018678Z Copying Test Assemblies 2020-10-19T06:10:25.1022463Z Copying Extensions 2020-10-19T06:10:25.1030148Z Copying Applications 2020-10-19T06:10:25.1033644Z Copying Applications.IT 2020-10-19T06:10:55.6119886Z Starting Business Central Service Tier 2020-10-19T06:10:55.6126137Z Importing license file 2020-10-19T06:10:55.6132297Z Copying Database on localhost\SQLEXPRESS from tenant to default 2020-10-19T06:11:06.3699005Z Taking database tenant offline 2020-10-19T06:11:06.3712417Z Copying database files 2020-10-19T06:11:18.7685495Z Attaching files as new Database default 2020-10-19T06:11:18.7694801Z Putting database tenant back online 2020-10-19T06:11:18.7698030Z Mounting tenant database 2020-10-19T06:14:04.5573014Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:14:07.6533174Z Sync'ing Tenant 2020-10-19T06:14:07.6541234Z Tenant is Operational 2020-10-19T06:14:07.6545051Z Stopping Business Central Service Tier 2020-10-19T06:14:07.6553224Z Installation took 469 seconds 2020-10-19T06:14:07.6555899Z Installation complete 2020-10-19T06:14:08.8968162Z Initializing... 2020-10-19T06:14:08.8975959Z Setting host.containerhelper.internal to 172.17.80.1 in container hosts file 2020-10-19T06:14:08.8980016Z Starting Container 2020-10-19T06:14:08.8984719Z Hostname is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2606236Z PublicDnsName is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2612469Z Using NavUserPassword Authentication 2020-10-19T06:14:12.9519247Z Creating Self Signed Certificate 2020-10-19T06:14:12.9528424Z Self Signed Certificate Thumbprint 979EEC9D34EEBE71686D8D281402EB682D8D761F 2020-10-19T06:14:12.9532462Z Modifying Service Tier Config File with Instance Specific Settings 2020-10-19T06:14:12.9537773Z Modifying Service Tier Config File with settings from environment variable 2020-10-19T06:14:15.0408198Z Setting EnableTaskScheduler to False 2020-10-19T06:14:26.8270132Z Starting Service Tier 2020-10-19T06:14:26.8692511Z Registering event sources 2020-10-19T06:14:57.7980481Z Creating DotNetCore Web Server Instance 2020-10-19T06:14:57.7988838Z Enabling Financials User Experience 2020-10-19T06:14:57.7992522Z Enabling rewrite rule: Don't rewrite system files 2020-10-19T06:14:57.8004650Z Enabling rewrite rule: Already have tenant specified 2020-10-19T06:14:57.8008602Z Enabling rewrite rule: Hostname (without port) to tenant 2020-10-19T06:14:57.8013349Z Using license file 'c:\run\my\license.flf' 2020-10-19T06:14:59.0194459Z Import License 2020-10-19T06:14:59.0202522Z Dismounting Tenant 2020-10-19T06:14:59.0205070Z Mounting Tenant 2020-10-19T06:15:00.2623451Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:15:02.6914909Z Sync'ing Tenant 2020-10-19T06:15:02.6923144Z Tenant is Operational 2020-10-19T06:15:05.0848532Z Creating http download site 2020-10-19T06:15:05.1003862Z Setting SA Password and enabling SA 2020-10-19T06:15:05.1022130Z Creating admin as SQL User and add to sysadmin 2020-10-19T06:15:05.1105452Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:05.1106210Z Creating SUPER user 2020-10-19T06:15:17.7007316Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3623152Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3632936Z Container IP Address: 172.17.95.183 2020-10-19T06:15:20.3639213Z Container Hostname : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3647983Z Container Dns Name : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3656779Z Web Client : http://hostedagent-cgk-eli-current/BC/?tenant=default 2020-10-19T06:15:20.3668270Z Dev. Server : http://hostedagent-cgk-eli-current 2020-10-19T06:15:20.3677243Z Dev. ServerInstance : BC 2020-10-19T06:15:20.3684329Z Dev. Server Tenant : default 2020-10-19T06:15:20.3691765Z Setting hostedagent-cgk-eli-current to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3698404Z Setting hostedagent-cgk-eli-current-default to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3702371Z 2020-10-19T06:15:20.3708850Z Files: 2020-10-19T06:15:20.3717513Z http://hostedagent-cgk-eli-current:8080/ALLanguage.vsix 2020-10-19T06:15:20.3721071Z 2020-10-19T06:15:20.3733953Z Container Total Physical Memory is 7.0Gb 2020-10-19T06:15:20.3737506Z Container Free Physical Memory is 2.8Gb 2020-10-19T06:15:20.3741952Z 2020-10-19T06:15:20.3749798Z Initialization took 73 seconds 2020-10-19T06:15:20.3758511Z Ready for connections! 2020-10-19T06:15:20.4969816Z Reading CustomSettings.config from hostedagent-cgk-eli-current 2020-10-19T06:15:23.0487032Z Creating Desktop Shortcuts for hostedagent-cgk-eli-current 2020-10-19T06:15:23.2931102Z Container hostedagent-cgk-eli-current successfully created 2020-10-19T06:15:23.2934776Z 2020-10-19T06:15:23.2944019Z Use: 2020-10-19T06:15:23.2955923Z Get-BcContainerEventLog -containerName hostedagent-cgk-eli-current to retrieve a snapshot of the event log from the container 2020-10-19T06:15:23.2967485Z Get-BcContainerDebugInfo -containerName hostedagent-cgk-eli-current to get debug information about the container 2020-10-19T06:15:23.2978853Z Enter-BcContainer -containerName hostedagent-cgk-eli-current to open a PowerShell prompt inside the container 2020-10-19T06:15:23.2990887Z Remove-BcContainer -containerName hostedagent-cgk-eli-current to remove the container again 2020-10-19T06:15:23.3000775Z docker logs hostedagent-cgk-eli-current to retrieve information about URL's again 2020-10-19T06:15:23.3540779Z 2020-10-19T06:15:23.3546292Z Creating container took 651 seconds 2020-10-19T06:15:23.3551742Z 2020-10-19T06:15:23.3557677Z _
2020-10-19T06:15:23.3563575Z | | | | | | ()
2020-10-19T06:15:23.3572116Z | |
_
| |_ | | | _ _ 2020-10-19T06:15:25.5655059Z | | | ' \/ | / | | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:25.5668657Z | || | | _ \ | (| | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:25.5674110Z |___|| ||/__,||||| ||_, | _,| ./| ./|/ 2020-10-19T06:15:25.5685463Z / | | | | |
2020-10-19T06:15:25.5689763Z |
/ || ||
2020-10-19T06:15:25.5694844Z 2020-10-19T06:15:25.5701777Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Cegeka S.p.A._Core Management1.0.65.0.app 2020-10-19T06:15:25.5709218Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:35.8171766Z Synchronizing Core Management on tenant default 2020-10-19T06:15:37.2760428Z Installing Core Management on tenant default 2020-10-19T06:15:37.2854756Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:41.5265074Z App successfully published 2020-10-19T06:15:41.5287715Z 2020-10-19T06:15:41.5297700Z Installing apps took 18 seconds 2020-10-19T06:15:41.5313075Z 2020-10-19T06:15:41.5328811Z ____
2020-10-19T06:15:41.5336533Z / ____| (
) (_)
2020-10-19T06:15:41.5344675Z | | | | 2020-10-19T06:15:41.5350155Z | | / | ' _ \| '_ \| | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:41.5356951Z | |__ () | | | | | | |) | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:41.5363764Z _____/|| || |_| ._/||||| ||_, | _,_| ./| ./|_/ 2020-10-19T06:15:41.5372021Z | | / | | | | |
2020-10-19T06:15:41.5377678Z || |
/ || ||
2020-10-19T06:15:41.5381012Z 2020-10-19T06:15:41.5919380Z Using Version 1.0.404.0 2020-10-19T06:15:41.6813030Z Creating AppSourceCop.json for validation 2020-10-19T06:15:42.8313137Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:16:15.0864977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:15.2348758Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:16.1048639Z Downloading symbols: Microsoft_Application_17.0.17126.17806.app 2020-10-19T06:16:16.1104903Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:17.8454725Z Adding dependency to System Application from Microsoft 2020-10-19T06:16:17.8483190Z Adding dependency to Base Application from Microsoft 2020-10-19T06:16:17.8547209Z Downloading symbols: Microsoft_System_17.0.17020.17774.app 2020-10-19T06:16:17.8555486Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:18.5312989Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app 2020-10-19T06:16:18.5318372Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default 2020-10-19T06:16:19.2190926Z Downloading symbols: Microsoft_System Application_17.0.17126.17806.app 2020-10-19T06:16:19.2197413Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:20.4367385Z Downloading symbols: Microsoft_Base Application_17.0.17126.17806.app 2020-10-19T06:16:20.4376848Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:21.0151722Z Compiling... 2020-10-19T06:16:21.0305444Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:16:31.9406560Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:16:31.9429312Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:16:31.9431046Z 2020-10-19T06:16:31.9441841Z Compilation started for project 'Electronic Invoicing' containing '66' files at '6:16:21.636'. 2020-10-19T06:16:31.9444370Z 2020-10-19T06:16:33.7010758Z c:\sources\app\src\ELI\CodeUnit\Cod18103705.CGKELIElectronicInvoiceMgt.al(1631,43): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Purchase Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release. 2020-10-19T06:16:33.7086511Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7088401Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7095043Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7096501Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7097505Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7098472Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7099538Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7100320Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7101107Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7101916Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7102824Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7103834Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7104627Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7105789Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107027Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107859Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7108604Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7112473Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7121511Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7126090Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7134321Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7138620Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7143899Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7151288Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7159566Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7164118Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7175916Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7181036Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7188129Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7213190Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7223323Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7227639Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field. 2020-10-19T06:16:33.7233606Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'. 2020-10-19T06:16:33.7238277Z 2020-10-19T06:16:33.7245818Z Compilation ended at '6:16:31.866'. 2020-10-19T06:16:33.7249809Z 2020-10-19T06:16:33.7257521Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app successfully created in 52 seconds 2020-10-19T06:16:33.7263671Z Cegeka S.p.A._Electronic Invoicing1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:16:33.7272773Z
____ ___
2020-10-19T06:16:33.7280676Z | | | | (_) |
| | | | | | | | () |
2020-10-19T06:16:33.7286772Z | |
| | | | | |_ | | | | | | | 2020-10-19T06:16:33.7293778Z | | | ' ` | ' \ / | '| | | ' \ / ` | | |/ \ | | | |/ \ / _ | | |/ / | | 2020-10-19T06:16:33.7301453Z | || | | | | | |) | () | | | || | | | | (| | | | _ \ | | | () | () | | <| | |_ 2020-10-19T06:16:33.7307336Z |___|| || || ./ \/|| _||| ||_, | ||_|/_| ||_/ _/|||__|__| 2020-10-19T06:16:33.7317159Z | | / |
2020-10-19T06:16:33.7324717Z || |
/
2020-10-19T06:16:36.2761208Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:36.8584423Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5077333Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5181303Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.6772498Z Synchronizing Any on tenant default 2020-10-19T06:16:37.7224613Z Installing Any on tenant default 2020-10-19T06:16:37.7295269Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.8388020Z App successfully published 2020-10-19T06:16:37.8705009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:38.4128026Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0382552Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0472265Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.1797871Z Synchronizing Library Assert on tenant default 2020-10-19T06:16:39.2199117Z Installing Library Assert on tenant default 2020-10-19T06:16:39.2267009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.3342370Z App successfully published 2020-10-19T06:16:39.3528812Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.9412743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5744569Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5841430Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.6627870Z Synchronizing Library Variable Storage on tenant default 2020-10-19T06:16:40.7201958Z Installing Library Variable Storage on tenant default 2020-10-19T06:16:40.7282495Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.8420820Z App successfully published 2020-10-19T06:16:40.8665697Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:41.4129949Z Copy from container hostedagent-cgk-eli-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0427252Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0512171Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:42.6528500Z Synchronizing Test Runner on tenant default 2020-10-19T06:16:42.8324356Z Installing Test Runner on tenant default 2020-10-19T06:16:42.8398275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.1540823Z App successfully published 2020-10-19T06:16:43.1727571Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.7237355Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_System Application Test Library_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3714616Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3804648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:45.6611906Z Synchronizing System Application Test Library on tenant default 2020-10-19T06:16:45.8452650Z Installing System Application Test Library on tenant default 2020-10-19T06:16:45.8522199Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.4142800Z App successfully published 2020-10-19T06:16:46.4404003Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.9879882Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-TestLibraries_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6171909Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6340258Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:17.5805694Z Synchronizing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.3702086Z Installing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.5893513Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.0725609Z App successfully published 2020-10-19T06:17:26.0934942Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.8224633Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Bank_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4645760Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4748052Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.0536947Z Synchronizing Tests-Bank on tenant default 2020-10-19T06:17:31.1760170Z Installing Tests-Bank on tenant default 2020-10-19T06:17:31.1840588Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.5003171Z App successfully published 2020-10-19T06:17:31.5200442Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:32.0685512Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cash Flow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7309317Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7325255Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.5751389Z Synchronizing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6868570Z Installing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6948426Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.8151337Z App successfully published 2020-10-19T06:17:34.8351940Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:35.3731986Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cost Accounting_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0338343Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0440348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:38.9374617Z Synchronizing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0501892Z Installing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0580137Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.1759775Z App successfully published 2020-10-19T06:17:39.2001351Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.9245563Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-CRM integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5821254Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5959931Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:44.5195402Z Synchronizing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8623012Z Installing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8638176Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.1265888Z App successfully published 2020-10-19T06:17:46.1492658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.8637915Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Data Exchange_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5063149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5156590Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.3323745Z Synchronizing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4580682Z Installing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4587150Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.5780091Z App successfully published 2020-10-19T06:17:50.5970098Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:51.2136186Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Dimension_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8765147Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8863312Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:55.5531940Z Synchronizing Tests-Dimension on tenant default 2020-10-19T06:17:55.8923927Z Installing Tests-Dimension on tenant default 2020-10-19T06:17:55.8994799Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:56.7911744Z App successfully published 2020-10-19T06:17:56.8453444Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:57.3944076Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-ERM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0340554Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0589815Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:41.1198142Z Synchronizing Tests-ERM on tenant default 2020-10-19T06:18:41.3043666Z Installing Tests-ERM on tenant default 2020-10-19T06:18:41.3101943Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:47.7589237Z App successfully published 2020-10-19T06:18:47.7838840Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:48.5580571Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Fixed Asset_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2140528Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2236298Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.3412453Z Synchronizing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4645631Z Installing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4659319Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.6002318Z App successfully published 2020-10-19T06:18:52.6197778Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:53.3203266Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-General Journal_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9555170Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9652282Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:57.3120487Z Synchronizing Tests-General Journal on tenant default 2020-10-19T06:18:57.4393444Z Installing Tests-General Journal on tenant default 2020-10-19T06:18:57.4460823Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:58.7193379Z App successfully published 2020-10-19T06:18:58.7426002Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:59.2904378Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Graph_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9221871Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9335300Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.5317409Z Synchronizing Tests-Graph on tenant default 2020-10-19T06:19:04.6528352Z Installing Tests-Graph on tenant default 2020-10-19T06:19:04.6598658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.7961552Z App successfully published 2020-10-19T06:19:04.8200432Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:05.5840743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2444600Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2480723Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.5077011Z Synchronizing Tests-Integration on tenant default 2020-10-19T06:19:08.6408757Z Installing Tests-Integration on tenant default 2020-10-19T06:19:08.6422595Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.9846724Z App successfully published 2020-10-19T06:19:09.0050077Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:09.6676942Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Invoicing_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3406182Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3512601Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:12.3578432Z Synchronizing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4734415Z Installing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4802864Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.2015820Z App successfully published 2020-10-19T06:19:13.2560661Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.9814116Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Job_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6462565Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6576008Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:19.6873031Z Synchronizing Tests-Job on tenant default 2020-10-19T06:19:20.0204014Z Installing Tests-Job on tenant default 2020-10-19T06:19:20.0286341Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:20.8212474Z App successfully published 2020-10-19T06:19:20.8645073Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:21.6478187Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Local_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3131796Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3289454Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:37.8556749Z Synchronizing Tests-Local on tenant default 2020-10-19T06:19:37.9834324Z Installing Tests-Local on tenant default 2020-10-19T06:19:37.9903558Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:39.2716110Z App successfully published 2020-10-19T06:19:39.3005648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:40.0332901Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Misc_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6609035Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6772992Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:54.0325558Z Synchronizing Tests-Misc on tenant default 2020-10-19T06:19:54.3714369Z Installing Tests-Misc on tenant default 2020-10-19T06:19:54.3758856Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:00.4920216Z App successfully published 2020-10-19T06:20:00.5123307Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:01.0617808Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Permissions_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7092080Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7204125Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:02.7252806Z Synchronizing Tests-Permissions on tenant default 2020-10-19T06:20:03.0663505Z Installing Tests-Permissions on tenant default 2020-10-19T06:20:03.0730514Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.2521971Z App successfully published 2020-10-19T06:20:03.2718328Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.8037245Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Physical Inventory_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4640474Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4732656Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.3042497Z Synchronizing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.4534513Z Installing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.5210275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.6377739Z App successfully published 2020-10-19T06:20:05.6592259Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:06.1964494Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Prepayment_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8574063Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8659352Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.2295344Z Synchronizing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3577861Z Installing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3642544Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.5151236Z App successfully published 2020-10-19T06:20:07.5387746Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:08.0605754Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Rapid Start_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7033688Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7137613Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4611196Z Synchronizing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4611698Z Installing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4612408Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4612924Z App successfully published 2020-10-19T06:20:11.4613313Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.6014191Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Report_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2422612Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2514348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:15.1231651Z Synchronizing Tests-Report on tenant default 2020-10-19T06:20:15.2406825Z Installing Tests-Report on tenant default 2020-10-19T06:20:15.2493005Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:16.5285919Z App successfully published 2020-10-19T06:20:16.5542449Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:17.0873272Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Resource_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7190301Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7293910Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.1542782Z Synchronizing Tests-Resource on tenant default 2020-10-19T06:20:21.2755142Z Installing Tests-Resource on tenant default 2020-10-19T06:20:21.2823414Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.6248777Z App successfully published 2020-10-19T06:20:21.6498948Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:22.1951118Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Reverse_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8221149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8311066Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.0924719Z Synchronizing Tests-Reverse on tenant default 2020-10-19T06:20:24.2083983Z Installing Tests-Reverse on tenant default 2020-10-19T06:20:24.2151297Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.6743448Z App successfully published 2020-10-19T06:20:24.7342279Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:25.2777404Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SCM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9250670Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9374978Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:35.4595594Z Synchronizing Tests-SCM on tenant default 2020-10-19T06:21:35.6068318Z Installing Tests-SCM on tenant default 2020-10-19T06:21:35.6136677Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.1122789Z App successfully published 2020-10-19T06:21:42.1361488Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.9017496Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMB_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5227433Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5326994Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:48.8041696Z Synchronizing Tests-SMB on tenant default 2020-10-19T06:21:48.9340856Z Installing Tests-SMB on tenant default 2020-10-19T06:21:48.9346977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:49.5702231Z App successfully published 2020-10-19T06:21:49.5890662Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:50.2763649Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMTP_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9343407Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9428238Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.2168839Z Synchronizing Tests-SMTP on tenant default 2020-10-19T06:21:51.3371247Z Installing Tests-SMTP on tenant default 2020-10-19T06:21:51.3453780Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.8616862Z App successfully published 2020-10-19T06:21:51.8811149Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:52.5044345Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Upgrade_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2234247Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2331957Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.4247347Z Synchronizing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6445653Z Installing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6515685Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.9729758Z App successfully published 2020-10-19T06:21:53.9965596Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:54.5716074Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-User_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.1940388Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.2035392Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.3737971Z Synchronizing Tests-User on tenant default 2020-10-19T06:21:56.4955152Z Installing Tests-User on tenant default 2020-10-19T06:21:56.5021246Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.6876009Z App successfully published 2020-10-19T06:21:56.7104229Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:57.4273565Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-VAT_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0674345Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0780440Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2113674Z Synchronizing Tests-VAT on tenant default 2020-10-19T06:22:03.2114034Z Installing Tests-VAT on tenant default 2020-10-19T06:22:03.2114346Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2114675Z App successfully published 2020-10-19T06:22:03.2114962Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.8163339Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Workflow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow_17.0.17126.17806.app 2020-10-19T06:22:04.4722207Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow17.0.17126.17806.app 2020-10-19T06:22:04.4849102Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:10.3775285Z Synchronizing Tests-Workflow on tenant default 2020-10-19T06:22:10.4998077Z Installing Tests-Workflow on tenant default 2020-10-19T06:22:10.5064594Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:11.2636926Z App successfully published 2020-10-19T06:22:11.2645773Z TestToolkit successfully imported 2020-10-19T06:22:11.3167479Z 2020-10-19T06:22:11.3177384Z Importing Test Toolkit took 338 seconds 2020-10-19T06:22:11.3184258Z ____
2020-10-19T06:22:11.3196473Z / ____| (
) (_) | | | |
2020-10-19T06:22:11.3201590Z | | | | | |_ | |_ 2020-10-19T06:22:11.3210047Z | | / | ' _ \| '_ \| | | | '_ \ / _ | | / \ | | / ` | ' | ' \/ | 2020-10-19T06:22:11.3216205Z | |_ () | | | | | | |) | | | | | | | (| | | |_ _ \ | | (| | |) | |) _ \ 2020-10-19T06:22:11.3226040Z __\/|| || |_| ./||||| ||_, | _\|/_| _,| ./| ./|_/ 2020-10-19T06:22:11.3232608Z | | / | | | | |
2020-10-19T06:22:11.3239142Z || |
/ || ||
2020-10-19T06:22:11.3327581Z Using Version 1.0.404.0 2020-10-19T06:22:12.1944689Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:22:12.7865649Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.8175822Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.9882200Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:22:12.9889818Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.4415626Z Downloading symbols: Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:22:13.4422796Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.7710111Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17806.app 2020-10-19T06:22:13.7726333Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.1556164Z Downloading symbols: Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:22:14.1599654Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.5192434Z Adding dependency to System Application from Microsoft 2020-10-19T06:22:14.5214800Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:22:14.5241656Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.9223082Z Adding dependency to Library Variable Storage from Microsoft 2020-10-19T06:22:14.9265553Z Downloading symbols: Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:22:14.9277007Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Variable Storage&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:15.2511068Z Compiling... 2020-10-19T06:22:15.2517689Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app" /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:22:29.3395267Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:22:29.3400838Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:22:29.3403913Z 2020-10-19T06:22:29.3411005Z Compilation started for project 'Electronic Invoicing - Test' containing '8' files at '6:22:16.18'. 2020-10-19T06:22:29.3415548Z 2020-10-19T06:22:29.3421454Z c:\sources\test\data\TAB50133.navxdata(1,1): info AL1027: The file at location 'c:\sources\test\data\TAB50133.navxdata' matches the definition for 'TableData'. 2020-10-19T06:22:29.3425117Z 2020-10-19T06:22:29.3431379Z Compilation ended at '6:22:29.278'. 2020-10-19T06:22:29.3434565Z 2020-10-19T06:22:29.3448534Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app successfully created in 18 seconds 2020-10-19T06:22:29.3513151Z Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:22:29.3611251Z 2020-10-19T06:22:29.3614943Z Compiling apps, test apps and importing test toolkit took 408 seconds 2020-10-19T06:22:29.3620606Z 2020-10-19T06:22:29.3625938Z
_
2020-10-19T06:22:29.3632934Z | \ | | | () | | () /\
2020-10-19T06:22:29.3639516Z | |
) | _| | | | | | / \ 2020-10-19T06:22:29.3645941Z | / | | | ' | | / | ' | | ' \ / ` | / /\ \ | ' | '_ \/ | 2020-10-19T06:22:29.3652772Z | | | || | |) | | _ \ | | | | | | | (| | / __ | |) | |) _ \ 2020-10-19T06:22:29.3661073Z || _,|_./|||/| |||| ||\, | // \\ ./| ./|/ 2020-10-19T06:22:29.3664378Z / | | | | |
2020-10-19T06:22:29.3671187Z |
/ || ||
2020-10-19T06:22:29.3675037Z 2020-10-19T06:22:29.4752827Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:30.9443119Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app 2020-10-19T06:22:30.9583874Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:34.5072397Z Synchronizing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4215117Z Installing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4284244Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:38.9557299Z App successfully published 2020-10-19T06:22:39.2917828Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app 2020-10-19T06:22:39.3013067Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:37.7736617Z Synchronizing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0054958Z Installing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0109011Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:49.4185299Z App successfully published 2020-10-19T06:23:49.4199186Z 2020-10-19T06:23:49.4207469Z Publishing apps took 80 seconds 2020-10-19T06:23:49.4212151Z 2020-10-19T06:23:49.4218161Z ____ _ ____
2020-10-19T06:23:49.4231658Z |
\ (_) | | | |
2020-10-19T06:23:49.4236894Z | |) | _ | | | | 2020-10-19T06:23:49.4243794Z | / | | | ' | ' | | ' \ / ` | | |/ _ \ | / | 2020-10-19T06:23:49.4285105Z | | \ \ || | | | | | | | | | | | (| | | | _ \ |_ \ 2020-10-19T06:23:49.4293201Z || _\,|| ||| |||| ||_, | ||_|/_|_/ 2020-10-19T06:23:49.4299000Z / |
2020-10-19T06:23:49.4305748Z |_/
2020-10-19T06:23:49.4325301Z 2020-10-19T06:27:38.2994513Z UriToShow : BC/cs.DynamicFileHandler.axd?form=D&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=rzwophyazzvethn1b4hq0mfk 2020-10-19T06:27:38.3000977Z UriToShow : BC/cs.DynamicFileHandler.axd?form=E&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=av5iw2fxunifzshqjiybdbde 2020-10-19T06:27:38.3011384Z UriToShow : BC/cs.DynamicFileHandler.axd?form=F&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=ntwpvt5tp4omopmh5muffihu 2020-10-19T06:27:38.3080624Z UriToShow : BC/cs.DynamicFileHandler.axd?form=10&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=sxmrjts2ppktzayurth53nes 2020-10-19T06:27:38.4028437Z Codeunit 50133 CGK ELI Test WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:38.4730976Z Success (139.422 seconds) 2020-10-19T06:27:38.4851553Z Testfunction ELI_00000_CORModuleSetupCheck Success (0.024 seconds) 2020-10-19T06:27:38.4937375Z Testfunction ELI_00000_CheckFeature Success (2.17 seconds) 2020-10-19T06:27:38.5058839Z Testfunction ELI_00000_RELIntegrationCheck Success (5.43 seconds) 2020-10-19T06:27:38.5209587Z Testfunction ELI_00328_CheckNewFields Success (9.32 seconds) 2020-10-19T06:27:38.5217401Z Testfunction ELI_00329_Login Success (1.267 seconds) 2020-10-19T06:27:38.5227408Z Testfunction ELI_00330_AddInvoiceWithInvalidData Success (40.537 seconds) 2020-10-19T06:27:38.5244970Z Testfunction ELI_00331_SendInvoiceWithInvalidData Success (1.273 seconds) 2020-10-19T06:27:38.5248951Z Testfunction ELI_00332_CheckRejectedStatus Success (0.92 seconds) 2020-10-19T06:27:38.5265906Z Testfunction ELI_00333_CheckRejectedNotes Success (0.924 seconds) 2020-10-19T06:27:38.5276423Z Testfunction ELI_00334_DownloadXml Success (0.864 seconds) 2020-10-19T06:27:38.5299425Z Testfunction ELI_00335_ShowDocFromEIADashboard Success (1.58 seconds) 2020-10-19T06:27:38.5315525Z Testfunction ELI_00336_EIAAddRejectedDoc Success (1.27 seconds) 2020-10-19T06:27:38.5324015Z Testfunction ELI_00337_AddInvoiceWithInvalidDataWithPDF Success (9.773 seconds) 2020-10-19T06:27:38.5359617Z Testfunction ELI_00339_EIACheckStatusTransferred Success (1.283 seconds) 2020-10-19T06:27:38.5366785Z Testfunction ELI_00340_EIACheckStatusTransferred_CreditMemo Success (1.87 seconds) 2020-10-19T06:27:38.5376944Z Testfunction ELI_00341_EIACheckStatusTransferred_CustomerWithPec Success (0.95 seconds) 2020-10-19T06:27:38.5383280Z Testfunction ELI_00342_EIPImportFromIx Success (1.407 seconds) 2020-10-19T06:27:38.5406911Z Testfunction ELI_00343_EIPCreatePreview Success (1.337 seconds) 2020-10-19T06:27:38.5411517Z Testfunction ELI_00344_EIPCreateDocument Success (2.956 seconds) 2020-10-19T06:27:38.5424626Z Testfunction ELI_00345_EIPPostDocument Success (10.616 seconds) 2020-10-19T06:27:38.5440762Z Testfunction ELI_00346_EIPDownloadXml Success (0.983 seconds) 2020-10-19T06:27:38.5448320Z Testfunction ELI_00347_EIPDownloadPdf Success (0.92 seconds) 2020-10-19T06:27:38.5471985Z Testfunction ELI_00348_EIPDownloadHtml Success (0.907 seconds) 2020-10-19T06:27:38.5485939Z Testfunction ELI_00349_EIPDocumentMissingVendor Success (0.916 seconds) 2020-10-19T06:27:38.5499946Z Testfunction ELI_00350_EIPDocumentMissingVendorCorrection Success (0.996 seconds) 2020-10-19T06:27:38.5518703Z Testfunction ELI_00351_EIPDocumentDuplicateVatRegNo Success (1.64 seconds) 2020-10-19T06:27:38.5535696Z Testfunction ELI_00352_EIPImportFromDir Success (0.877 seconds) 2020-10-19T06:27:38.5556164Z Testfunction ELI_00353_EIPDuplicatePreview Success (1.05 seconds) 2020-10-19T06:27:38.5562584Z Testfunction ELI_00354_EIPDuplicatePreview Success (1.313 seconds) 2020-10-19T06:27:38.5573701Z Testfunction ELI_00355_EIPDuplicatePreview Success (2.314 seconds) 2020-10-19T06:27:38.5698862Z Testfunction ELI_00356_EIPDocumentVendorPaymentNotMatchingXml Success (1.227 seconds) 2020-10-19T06:27:38.5950721Z Testfunction ELI_00357_EIPDocumetProductNotMatchingXml Success (1.154 seconds) 2020-10-19T06:27:38.5999968Z Testfunction ELI_00360_EIPCreatePreviewConfirmWarnings Success (2.24 seconds) 2020-10-19T06:27:38.6703788Z Testfunction ELI_00361_EIPPurchaseReceiptMatching Success (4.154 seconds) 2020-10-19T06:27:38.6714194Z Testfunction ELI_00362_EIPPurchaseReceiptMatching Success (2.5 seconds) 2020-10-19T06:27:38.6958796Z Testfunction ELI_00364_EIPPurchaseReceiptMatching Success (2.443 seconds) 2020-10-19T06:27:38.6967463Z Testfunction ELI_00380_EIACheckStatusTransferred_ServiceInvoice Success (8.01 seconds) 2020-10-19T06:27:38.6984444Z Testfunction ELI_00381_EIACheckStatusTransferred_ServiceCM Success (1.157 seconds) 2020-10-19T06:27:38.6995625Z Testfunction ELI_00382EIPCMMatchingReturnShipment Success (8.85 seconds) 2020-10-19T06:27:39.0532301Z 2020-10-19T06:27:39.0562156Z Running tests took 230 seconds 2020-10-19T06:27:39.0608230Z
____
2020-10-19T06:27:39.0616589Z / ____| | | |
\ () | | | /\ | | ()/ | | |
2020-10-19T06:27:39.0677808Z | |
_ | | | |) | | | | | / \ _ _| | | | _ | | _ 2020-10-19T06:27:39.0710846Z | | / | ' | | | | | / \ | <| | | | | |/ _` | / /\ \ | '| | | / ` |/ | / | 2020-10-19T06:27:39.0715069Z | | () | |) | || | | | () | | |) | || | | | (| | / | | | || | || (| | (| |_ \ 2020-10-19T06:27:39.0721730Z ____/| ./ _, | __/ |__/ _,|||_,| // __| _||| _,|_|_|/ 2020-10-19T06:27:39.0728242Z | | / |
2020-10-19T06:27:39.0736626Z || |
/
2020-10-19T06:27:39.2218840Z Getting Runtime Package for Cegeka S.p.A._Electronic Invoicing1.0.404.0.app 2020-10-19T06:27:39.7176573Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:42.8953009Z Copying runtime package to build artifact 2020-10-19T06:27:42.9091724Z 2020-10-19T06:27:42.9096164Z Copying to Build Artifacts took 4 seconds 2020-10-19T06:27:42.9101606Z 2020-10-19T06:27:42.9112158Z ____ ____
2020-10-19T06:27:42.9124051Z | \ () / ____| | | ()
2020-10-19T06:27:42.9127871Z | |
) | _ ___ | | _ | |_ _ 2020-10-19T06:27:42.9160010Z | // \ ' ` \ / \ \ / / | ' \ / ` | | | / | '_ | / ` | | ' \ / \ '| 2020-10-19T06:27:42.9164613Z | | \ \ / | | | | | () \ V /| | | | | (| | | |____ () | | | | | (| | | | | | / |
2020-10-19T06:27:42.9173171Z || \_|| || ||\/ _/ ||| ||_, | __\/|| ||__,||| ||_|_|
2020-10-19T06:27:42.9177164Z _/ |
2020-10-19T06:27:42.9190339Z |
/
2020-10-19T06:27:42.9191130Z 2020-10-19T06:27:44.1999245Z Removing container hostedagent-cgk-eli-current 2020-10-19T06:27:45.9821778Z Removing hostedagent-cgk-eli-current from host hosts file 2020-10-19T06:27:46.2140830Z Removing hostedagent-cgk-eli-current-* from host hosts file 2020-10-19T06:27:46.2948331Z Removing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current 2020-10-19T06:27:46.3670640Z 2020-10-19T06:27:46.3686318Z Removing container took 3 seconds 2020-10-19T06:27:46.3689187Z 2020-10-19T06:27:46.3698438Z AL Pipeline finished in 1655 seconds 2020-10-19T06:27:46.8417970Z ##[section]Finishing: Run Pipeline`

Pellic commented 4 years ago

2020-10-19T05:59:57.1072763Z ##[section]Starting: Run Pipeline 2020-10-19T05:59:57.1223394Z ============================================================================== 2020-10-19T05:59:57.1223968Z Task : PowerShell 2020-10-19T05:59:57.1224302Z Description : Run a PowerShell script on Linux, macOS, or Windows 2020-10-19T05:59:57.1224581Z Version : 2.170.1 2020-10-19T05:59:57.1224807Z Author : Microsoft Corporation 2020-10-19T05:59:57.1225168Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2020-10-19T05:59:57.1225567Z ============================================================================== 2020-10-19T05:59:58.0647167Z Generating script. 2020-10-19T05:59:58.0727731Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 404 -appRevision 0 2020-10-19T05:59:58.1151686Z ========================== Starting Command Output =========================== 2020-10-19T05:59:58.1442723Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\675a43c0-dc28-4ee5-9f88-cd0d97a74adc.ps1'" 2020-10-19T05:59:58.5258963Z Set artifact = ///it/Current 2020-10-19T05:59:58.5296082Z Set pipelineName = CGK-ELI-current 2020-10-19T05:59:58.5372497Z Set containerName = hostedagent-cgk-eli-current 2020-10-19T05:59:58.5565469Z Set installApps = 'C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app' 2020-10-19T05:59:58.5575528Z Set previousApps = '' 2020-10-19T05:59:58.5609222Z Set appSourceCopMandatoryAffixes = 'CGK' 2020-10-19T05:59:58.5633298Z Set appSourceCopSupportedCountries = 'it,us' 2020-10-19T05:59:58.5661182Z Set appFolders = 'app' 2020-10-19T05:59:58.5689983Z Set testFolders = 'test' 2020-10-19T05:59:58.5719613Z Set memoryLimit = '12G' 2020-10-19T05:59:58.5729806Z Set additionalCountries = '' 2020-10-19T05:59:58.5777700Z Set installTestFramework = False 2020-10-19T05:59:58.5822492Z Set installTestLibraries = False 2020-10-19T05:59:58.5852114Z Set installPerformanceToolkit = False 2020-10-19T05:59:58.5881843Z Set enableCodeCop = False 2020-10-19T05:59:58.5910229Z Set enableAppSourceCop = True 2020-10-19T05:59:58.5941916Z Set enablePerTenantExtensionCop = False 2020-10-19T05:59:58.5972327Z Set enableUICop = True 2020-10-19T05:59:58.5981515Z Set doNotSignApp = False 2020-10-19T05:59:58.6000836Z Set doNotRunTests = False 2020-10-19T05:59:58.6029076Z Set cacheImage = False 2020-10-19T05:59:58.6060233Z Use bcContainerHelper Version: https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T05:59:58.6322913Z Downloading https://github.com/microsoft/navcontainerhelper/archive/dev.zip 2020-10-19T06:00:03.1411433Z C:\Users\VssAdministrator\AppData\Local\Temp\hostedagent-cgk-eli-current\navcontainerhelper-dev\BcContainerHelper.psm1 2020-10-19T06:00:05.4683611Z Determining artifacts to use 2020-10-19T06:00:10.8042872Z _____ _ 2020-10-19T06:00:10.8051193Z | __ \ | | 2020-10-19T06:00:10.8055337Z | |__) |_ _ _ __ __ _ _ __ ___ ___| |_ ___ _ __ ___ 2020-10-19T06:00:10.8064394Z | ___/ _ | '/ ` | ' ` \ / \ / \ '/ | 2020-10-19T06:00:10.8068984Z | | | (| | | | (_| | | | | | | / | / | \ \ 2020-10-19T06:00:10.8083501Z || _,|| _,|| || ||_|___|| |/ 2020-10-19T06:00:10.8086700Z 2020-10-19T06:00:10.8103155Z Pipeline name CGK-ELI-current 2020-10-19T06:00:10.8114106Z Container name hostedagent-cgk-eli-current 2020-10-19T06:00:10.8127415Z Image name
2020-10-19T06:00:10.8212498Z ArtifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:00:10.8369200Z SasToken Not Specified 2020-10-19T06:00:10.8401363Z Credential admin/Pano5651 2020-10-19T06:00:10.8777495Z MemoryLimit 12G 2020-10-19T06:00:10.8790594Z Enable Task Scheduler False 2020-10-19T06:00:10.8808117Z Assign Premium Plan False 2020-10-19T06:00:10.8821223Z Install Test Framework False 2020-10-19T06:00:10.8834076Z Install Test Libraries False 2020-10-19T06:00:10.8846199Z Install Perf. Toolkit False 2020-10-19T06:00:10.8858249Z enableCodeCop False 2020-10-19T06:00:10.8873248Z enableAppSourceCop True 2020-10-19T06:00:10.8883364Z enableUICop True 2020-10-19T06:00:10.8895796Z enablePerTenantExtensionCop False 2020-10-19T06:00:10.8908257Z azureDevOps False 2020-10-19T06:00:10.8921294Z License file Specified 2020-10-19T06:00:10.8937372Z CodeSignCertPfxFile Not specified 2020-10-19T06:00:10.8949466Z TestResultsFile D:\a\1\s\TestResults.xml 2020-10-19T06:00:10.8960974Z TestResultsFormat JUnit 2020-10-19T06:00:10.9000930Z AdditionalCountries
2020-10-19T06:00:10.9012996Z PackagesFolder D:\a\1\s.packages 2020-10-19T06:00:10.9026311Z OutputFolder D:\a\1\s.output 2020-10-19T06:00:10.9038966Z BuildArtifactFolder D:\a\1\a 2020-10-19T06:00:10.9051753Z CreateRuntimePackages True 2020-10-19T06:00:10.9064525Z AppBuild 404 2020-10-19T06:00:10.9077653Z AppRevision 0 2020-10-19T06:00:10.9090078Z Mandatory Affixes CGK 2020-10-19T06:00:10.9107422Z Supported Countries it,us 2020-10-19T06:00:10.9107937Z Install Apps 2020-10-19T06:00:10.9123228Z - C:\Dependency\Cegeka S.p.A._Core Management1.0.65.0.app 2020-10-19T06:00:10.9127712Z Previous Apps 2020-10-19T06:00:10.9137710Z - None 2020-10-19T06:00:10.9139191Z Application folders 2020-10-19T06:00:10.9150585Z - D:\a\1\s\app 2020-10-19T06:00:10.9155434Z Test application folders 2020-10-19T06:00:10.9164274Z - D:\a\1\s\test 2020-10-19T06:00:10.9235798Z 2020-10-19T06:00:10.9242402Z ____ _
2020-10-19T06:00:10.9250630Z | \ | | () () (_)
2020-10-19T06:00:10.9254784Z | |_) | | | |
_ _ _ _ _ _ 2020-10-19T06:00:10.9262785Z | _/ | | | | | | ' \ / | / _ |/ \ ' \ / \ '| |/ | | | ' _ \ / _ |/ ` |/ \ 2020-10-19T06:00:10.9267450Z | | | || | | | | | | | (| | | (_| | / | | | / | | | ( | | | | | | | (| | (| | / 2020-10-19T06:00:10.9275526Z || _,||||| ||_, | _, |_|| ||_|| ||_| ||| || ||_,|_, |\| 2020-10-19T06:00:10.9280238Z / | / | / |
2020-10-19T06:00:10.9289681Z |__/ |
/ |_/
2020-10-19T06:00:10.9290448Z 2020-10-19T06:00:10.9294861Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:04:32.0351629Z 2020-10-19T06:04:32.0357894Z Pulling generic image took 261 seconds 2020-10-19T06:04:32.0413929Z 2020-10-19T06:04:32.0418679Z ___

2020-10-19T06:04:32.0429091Z / _| | | () | | ()
2020-10-19T06:04:32.0434914Z | |
_
| | | |_ _ _ 2020-10-19T06:04:32.0443135Z | | | '/ \/ _| __| | '_ \ / _ | / / | ' | / ` | | ' \ / \ '| 2020-10-19T06:04:32.0447522Z | |__| | | __/ (| | || | | | | (| | | ( () | | | | | (| | | | | | / |
2020-10-19T06:04:32.0455824Z \
|| _|\,|_||| ||_, | _\/|| ||__,||| ||_|_|
2020-10-19T06:04:32.0460152Z _/ |
2020-10-19T06:04:32.0468215Z |
/
2020-10-19T06:04:32.0469724Z 2020-10-19T06:04:32.2258089Z WARNING: Container name should not exceed 15 characters 2020-10-19T06:04:33.1606820Z BcContainerHelper is version 1.0.10 2020-10-19T06:04:33.1611644Z BcContainerHelper is running as administrator 2020-10-19T06:04:33.1632564Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019 2020-10-19T06:04:35.1712534Z Docker Client Version is 19.03.12 2020-10-19T06:04:35.1735577Z Docker Server Version is 19.03.12 2020-10-19T06:04:35.8296093Z Downloading application artifact /sandbox/17.0.17126.17806/it 2020-10-19T06:04:35.8510071Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\35c32ce8-0898-4724-8f70-ed413f8ea8aa.zip 2020-10-19T06:04:40.3124883Z Unpacking application artifact to tmp folder using 7zip 2020-10-19T06:04:50.2362907Z Downloading platform artifact /sandbox/17.0.17126.17806/platform 2020-10-19T06:04:50.2386672Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\4c517335-20e2-45d7-ac35-39819b82c833.zip 2020-10-19T06:04:53.0906916Z Unpacking platform artifact to tmp folder using 7zip 2020-10-19T06:05:32.5541642Z Downloading Prerequisite Components 2020-10-19T06:05:32.5651442Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi 2020-10-19T06:05:32.5936729Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi 2020-10-19T06:05:32.6249784Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe 2020-10-19T06:05:33.0615873Z Fetching all docker images 2020-10-19T06:05:33.9307186Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:34.1554242Z Creating Container hostedagent-cgk-eli-current 2020-10-19T06:05:34.1560899Z Version: 17.0.17126.17806-IT 2020-10-19T06:05:34.1569722Z Style: sandbox 2020-10-19T06:05:34.1572750Z Multitenant: Yes 2020-10-19T06:05:34.1580581Z Platform: 17.0.17020.17774 2020-10-19T06:05:34.1591208Z Generic Tag: 0.1.0.24 2020-10-19T06:05:34.1626009Z Container OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1633047Z Host OS Version: 10.0.17763.1457 (ltsc2019) 2020-10-19T06:05:34.1654576Z Using process isolation 2020-10-19T06:05:34.1681914Z Using locale it-IT 2020-10-19T06:05:34.1716076Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) 2020-10-19T06:05:34.1775900Z Using license file C:\License.flf 2020-10-19T06:05:34.5993123Z Additional Parameters: 2020-10-19T06:05:34.6012779Z --volume "D:\a\1\s:c:\sources" 2020-10-19T06:05:34.6019767Z --env customNavSettings=EnableTaskScheduler=False 2020-10-19T06:05:34.6029247Z Files in C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\my: 2020-10-19T06:05:34.6072519Z - AdditionalOutput.ps1 2020-10-19T06:05:34.6084999Z - license.flf 2020-10-19T06:05:34.6095798Z - MainLoop.ps1 2020-10-19T06:05:34.6103705Z - SetupVariables.ps1 2020-10-19T06:05:34.6110011Z - updatehosts.ps1 2020-10-19T06:05:34.6117187Z Creating container hostedagent-cgk-eli-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic 2020-10-19T06:05:35.3434042Z ab9a0cf8568ae7706a0f443e153197c0344b621725d6d5aa2129c39c8ef0bc5f 2020-10-19T06:06:02.1481558Z Waiting for container hostedagent-cgk-eli-current to be ready 2020-10-19T06:06:16.2853436Z Adding HOSTEDAGENT-CGK to hosts file 2020-10-19T06:06:17.6975478Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it 2020-10-19T06:06:19.2126897Z Using installer from C:\Run\150-new 2020-10-19T06:06:19.2133664Z Installing Business Central 2020-10-19T06:06:19.2142045Z Installing from artifacts 2020-10-19T06:06:29.6514366Z Starting Local SQL Server 2020-10-19T06:06:29.6523854Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 2020-10-19T06:06:29.6528367Z start... 2020-10-19T06:06:30.9020090Z Starting Internet Information Server 2020-10-19T06:06:30.9026624Z Copying Service Tier Files 2020-10-19T06:06:35.4488640Z Copying PowerShell Scripts 2020-10-19T06:06:35.4496839Z Copying dependencies 2020-10-19T06:06:35.4500525Z Copying ReportBuilder 2020-10-19T06:06:35.4507190Z Importing PowerShell Modules 2020-10-19T06:06:52.3319067Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17806\it\BusinessCentral-IT.bak 2020-10-19T06:07:35.6845830Z Restoring CRONUS Demo Database 2020-10-19T06:10:18.7812381Z Exporting Application to CRONUS 2020-10-19T06:10:25.0961599Z Removing Application from tenant 2020-10-19T06:10:25.0969779Z Modifying Business Central Service Tier Config File for Docker 2020-10-19T06:10:25.0977677Z Creating Business Central Service Tier 2020-10-19T06:10:25.0979456Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll' 2020-10-19T06:10:25.0986779Z Copying Web Client Files 2020-10-19T06:10:25.0995007Z Copying Client Files 2020-10-19T06:10:25.0998997Z Copying ModernDev Files 2020-10-19T06:10:25.1007089Z Copying additional files 2020-10-19T06:10:25.1011095Z Copying ConfigurationPackages 2020-10-19T06:10:25.1018678Z Copying Test Assemblies 2020-10-19T06:10:25.1022463Z Copying Extensions 2020-10-19T06:10:25.1030148Z Copying Applications 2020-10-19T06:10:25.1033644Z Copying Applications.IT 2020-10-19T06:10:55.6119886Z Starting Business Central Service Tier 2020-10-19T06:10:55.6126137Z Importing license file 2020-10-19T06:10:55.6132297Z Copying Database on localhost\SQLEXPRESS from tenant to default 2020-10-19T06:11:06.3699005Z Taking database tenant offline 2020-10-19T06:11:06.3712417Z Copying database files 2020-10-19T06:11:18.7685495Z Attaching files as new Database default 2020-10-19T06:11:18.7694801Z Putting database tenant back online 2020-10-19T06:11:18.7698030Z Mounting tenant database 2020-10-19T06:14:04.5573014Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:14:07.6533174Z Sync'ing Tenant 2020-10-19T06:14:07.6541234Z Tenant is Operational 2020-10-19T06:14:07.6545051Z Stopping Business Central Service Tier 2020-10-19T06:14:07.6553224Z Installation took 469 seconds 2020-10-19T06:14:07.6555899Z Installation complete 2020-10-19T06:14:08.8968162Z Initializing... 2020-10-19T06:14:08.8975959Z Setting host.containerhelper.internal to 172.17.80.1 in container hosts file 2020-10-19T06:14:08.8980016Z Starting Container 2020-10-19T06:14:08.8984719Z Hostname is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2606236Z PublicDnsName is hostedagent-cgk-eli-current 2020-10-19T06:14:10.2612469Z Using NavUserPassword Authentication 2020-10-19T06:14:12.9519247Z Creating Self Signed Certificate 2020-10-19T06:14:12.9528424Z Self Signed Certificate Thumbprint 979EEC9D34EEBE71686D8D281402EB682D8D761F 2020-10-19T06:14:12.9532462Z Modifying Service Tier Config File with Instance Specific Settings 2020-10-19T06:14:12.9537773Z Modifying Service Tier Config File with settings from environment variable 2020-10-19T06:14:15.0408198Z Setting EnableTaskScheduler to False 2020-10-19T06:14:26.8270132Z Starting Service Tier 2020-10-19T06:14:26.8692511Z Registering event sources 2020-10-19T06:14:57.7980481Z Creating DotNetCore Web Server Instance 2020-10-19T06:14:57.7988838Z Enabling Financials User Experience 2020-10-19T06:14:57.7992522Z Enabling rewrite rule: Don't rewrite system files 2020-10-19T06:14:57.8004650Z Enabling rewrite rule: Already have tenant specified 2020-10-19T06:14:57.8008602Z Enabling rewrite rule: Hostname (without port) to tenant 2020-10-19T06:14:57.8013349Z Using license file 'c:\run\my\license.flf' 2020-10-19T06:14:59.0194459Z Import License 2020-10-19T06:14:59.0202522Z Dismounting Tenant 2020-10-19T06:14:59.0205070Z Mounting Tenant 2020-10-19T06:15:00.2623451Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2020-10-19T06:15:02.6914909Z Sync'ing Tenant 2020-10-19T06:15:02.6923144Z Tenant is Operational 2020-10-19T06:15:05.0848532Z Creating http download site 2020-10-19T06:15:05.1003862Z Setting SA Password and enabling SA 2020-10-19T06:15:05.1022130Z Creating admin as SQL User and add to sysadmin 2020-10-19T06:15:05.1105452Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:05.1106210Z Creating SUPER user 2020-10-19T06:15:17.7007316Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3623152Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:20.3632936Z Container IP Address: 172.17.95.183 2020-10-19T06:15:20.3639213Z Container Hostname : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3647983Z Container Dns Name : hostedagent-cgk-eli-current 2020-10-19T06:15:20.3656779Z Web Client : http://hostedagent-cgk-eli-current/BC/?tenant=default 2020-10-19T06:15:20.3668270Z Dev. Server : http://hostedagent-cgk-eli-current 2020-10-19T06:15:20.3677243Z Dev. ServerInstance : BC 2020-10-19T06:15:20.3684329Z Dev. Server Tenant : default 2020-10-19T06:15:20.3691765Z Setting hostedagent-cgk-eli-current to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3698404Z Setting hostedagent-cgk-eli-current-default to 172.17.95.183 in host hosts file 2020-10-19T06:15:20.3702371Z 2020-10-19T06:15:20.3708850Z Files: 2020-10-19T06:15:20.3717513Z http://hostedagent-cgk-eli-current:8080/ALLanguage.vsix 2020-10-19T06:15:20.3721071Z 2020-10-19T06:15:20.3733953Z Container Total Physical Memory is 7.0Gb 2020-10-19T06:15:20.3737506Z Container Free Physical Memory is 2.8Gb 2020-10-19T06:15:20.3741952Z 2020-10-19T06:15:20.3749798Z Initialization took 73 seconds 2020-10-19T06:15:20.3758511Z Ready for connections! 2020-10-19T06:15:20.4969816Z Reading CustomSettings.config from hostedagent-cgk-eli-current 2020-10-19T06:15:23.0487032Z Creating Desktop Shortcuts for hostedagent-cgk-eli-current 2020-10-19T06:15:23.2931102Z Container hostedagent-cgk-eli-current successfully created 2020-10-19T06:15:23.2934776Z 2020-10-19T06:15:23.2944019Z Use: 2020-10-19T06:15:23.2955923Z Get-BcContainerEventLog -containerName hostedagent-cgk-eli-current to retrieve a snapshot of the event log from the container 2020-10-19T06:15:23.2967485Z Get-BcContainerDebugInfo -containerName hostedagent-cgk-eli-current to get debug information about the container 2020-10-19T06:15:23.2978853Z Enter-BcContainer -containerName hostedagent-cgk-eli-current to open a PowerShell prompt inside the container 2020-10-19T06:15:23.2990887Z Remove-BcContainer -containerName hostedagent-cgk-eli-current to remove the container again 2020-10-19T06:15:23.3000775Z docker logs hostedagent-cgk-eli-current to retrieve information about URL's again 2020-10-19T06:15:23.3540779Z 2020-10-19T06:15:23.3546292Z Creating container took 651 seconds 2020-10-19T06:15:23.3551742Z 2020-10-19T06:15:23.3557677Z _
2020-10-19T06:15:23.3563575Z | | | | | | ()
2020-10-19T06:15:23.3572116Z | |
_
| |_ | | | _ _ 2020-10-19T06:15:25.5655059Z | | | ' \/ | / | | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:25.5668657Z | || | | _ \ | (| | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:25.5674110Z |___|| ||/__,||||| ||_, | _,| ./| ./|/ 2020-10-19T06:15:25.5685463Z / | | | | |
2020-10-19T06:15:25.5689763Z |
/ || ||
2020-10-19T06:15:25.5694844Z 2020-10-19T06:15:25.5701777Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Cegeka S.p.A._Core Management1.0.65.0.app 2020-10-19T06:15:25.5709218Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:35.8171766Z Synchronizing Core Management on tenant default 2020-10-19T06:15:37.2760428Z Installing Core Management on tenant default 2020-10-19T06:15:37.2854756Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:15:41.5265074Z App successfully published 2020-10-19T06:15:41.5287715Z 2020-10-19T06:15:41.5297700Z Installing apps took 18 seconds 2020-10-19T06:15:41.5313075Z 2020-10-19T06:15:41.5328811Z ____
2020-10-19T06:15:41.5336533Z / ____| (
) (_)
2020-10-19T06:15:41.5344675Z | | | | 2020-10-19T06:15:41.5350155Z | | / | ' _ \| '_ \| | | | '_ \ / _ | / ` | ' | '_ \/ | 2020-10-19T06:15:41.5356951Z | |__ () | | | | | | |) | | | | | | | (| | | (| | |) | |) _ \ 2020-10-19T06:15:41.5363764Z _____/|| || |_| ._/||||| ||_, | _,_| ./| ./|_/ 2020-10-19T06:15:41.5372021Z | | / | | | | |
2020-10-19T06:15:41.5377678Z || |
/ || ||
2020-10-19T06:15:41.5381012Z 2020-10-19T06:15:41.5919380Z Using Version 1.0.404.0 2020-10-19T06:15:41.6813030Z Creating AppSourceCop.json for validation 2020-10-19T06:15:42.8313137Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:16:15.0864977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:15.2348758Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:16.1048639Z Downloading symbols: Microsoft_Application_17.0.17126.17806.app 2020-10-19T06:16:16.1104903Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:17.8454725Z Adding dependency to System Application from Microsoft 2020-10-19T06:16:17.8483190Z Adding dependency to Base Application from Microsoft 2020-10-19T06:16:17.8547209Z Downloading symbols: Microsoft_System_17.0.17020.17774.app 2020-10-19T06:16:17.8555486Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:18.5312989Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app 2020-10-19T06:16:18.5318372Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default 2020-10-19T06:16:19.2190926Z Downloading symbols: Microsoft_System Application_17.0.17126.17806.app 2020-10-19T06:16:19.2197413Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:20.4367385Z Downloading symbols: Microsoft_Base Application_17.0.17126.17806.app 2020-10-19T06:16:20.4376848Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default 2020-10-19T06:16:21.0151722Z Compiling... 2020-10-19T06:16:21.0305444Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:16:31.9406560Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:16:31.9429312Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:16:31.9431046Z 2020-10-19T06:16:31.9441841Z Compilation started for project 'Electronic Invoicing' containing '66' files at '6:16:21.636'. 2020-10-19T06:16:31.9444370Z 2020-10-19T06:16:33.7010758Z c:\sources\app\src\ELI\CodeUnit\Cod18103705.CGKELIElectronicInvoiceMgt.al(1631,43): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Purchase Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release. 2020-10-19T06:16:33.7086511Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7088401Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7095043Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7096501Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7097505Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7098472Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7099538Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7100320Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7101107Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7101916Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7102824Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7103834Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7104627Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7105789Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107027Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7107859Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7108604Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7112473Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7121511Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7126090Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7134321Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7138620Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7143899Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7151288Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7159566Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7164118Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true". 2020-10-19T06:16:33.7175916Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7181036Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7188129Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7213190Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7223323Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable. 2020-10-19T06:16:33.7227639Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field. 2020-10-19T06:16:33.7233606Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'. 2020-10-19T06:16:33.7238277Z 2020-10-19T06:16:33.7245818Z Compilation ended at '6:16:31.866'. 2020-10-19T06:16:33.7249809Z 2020-10-19T06:16:33.7257521Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app successfully created in 52 seconds 2020-10-19T06:16:33.7263671Z Cegeka S.p.A._Electronic Invoicing1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:16:33.7272773Z
____ ___
2020-10-19T06:16:33.7280676Z | | | | (_) |
| | | | | | | | () |
2020-10-19T06:16:33.7286772Z | |
| | | | | |_ | | | | | | | 2020-10-19T06:16:33.7293778Z | | | ' ` | ' \ / | '| | | ' \ / ` | | |/ \ | | | |/ \ / _ | | |/ / | | 2020-10-19T06:16:33.7301453Z | || | | | | | |) | () | | | || | | | | (| | | | _ \ | | | () | () | | <| | |_ 2020-10-19T06:16:33.7307336Z |___|| || || ./ \/|| _||| ||_, | ||_|/_| ||_/ _/|||__|__| 2020-10-19T06:16:33.7317159Z | | / |
2020-10-19T06:16:33.7324717Z || |
/
2020-10-19T06:16:36.2761208Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:36.8584423Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5077333Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:16:37.5181303Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.6772498Z Synchronizing Any on tenant default 2020-10-19T06:16:37.7224613Z Installing Any on tenant default 2020-10-19T06:16:37.7295269Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:37.8388020Z App successfully published 2020-10-19T06:16:37.8705009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:38.4128026Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0382552Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:16:39.0472265Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.1797871Z Synchronizing Library Assert on tenant default 2020-10-19T06:16:39.2199117Z Installing Library Assert on tenant default 2020-10-19T06:16:39.2267009Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.3342370Z App successfully published 2020-10-19T06:16:39.3528812Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:39.9412743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5744569Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:16:40.5841430Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.6627870Z Synchronizing Library Variable Storage on tenant default 2020-10-19T06:16:40.7201958Z Installing Library Variable Storage on tenant default 2020-10-19T06:16:40.7282495Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:40.8420820Z App successfully published 2020-10-19T06:16:40.8665697Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:41.4129949Z Copy from container hostedagent-cgk-eli-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0427252Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Test Runner.app 2020-10-19T06:16:42.0512171Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:42.6528500Z Synchronizing Test Runner on tenant default 2020-10-19T06:16:42.8324356Z Installing Test Runner on tenant default 2020-10-19T06:16:42.8398275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.1540823Z App successfully published 2020-10-19T06:16:43.1727571Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:43.7237355Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_System Application Test Library_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3714616Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:16:44.3804648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:45.6611906Z Synchronizing System Application Test Library on tenant default 2020-10-19T06:16:45.8452650Z Installing System Application Test Library on tenant default 2020-10-19T06:16:45.8522199Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.4142800Z App successfully published 2020-10-19T06:16:46.4404003Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:16:46.9879882Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-TestLibraries_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6171909Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:16:47.6340258Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:17.5805694Z Synchronizing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.3702086Z Installing Tests-TestLibraries on tenant default 2020-10-19T06:17:20.5893513Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.0725609Z App successfully published 2020-10-19T06:17:26.0934942Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:26.8224633Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Bank_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4645760Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Bank_17.0.17126.17806.app 2020-10-19T06:17:27.4748052Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.0536947Z Synchronizing Tests-Bank on tenant default 2020-10-19T06:17:31.1760170Z Installing Tests-Bank on tenant default 2020-10-19T06:17:31.1840588Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:31.5003171Z App successfully published 2020-10-19T06:17:31.5200442Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:32.0685512Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cash Flow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7309317Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cash Flow_17.0.17126.17806.app 2020-10-19T06:17:32.7325255Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.5751389Z Synchronizing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6868570Z Installing Tests-Cash Flow on tenant default 2020-10-19T06:17:34.6948426Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:34.8151337Z App successfully published 2020-10-19T06:17:34.8351940Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:35.3731986Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cost Accounting_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0338343Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app 2020-10-19T06:17:36.0440348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:38.9374617Z Synchronizing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0501892Z Installing Tests-Cost Accounting on tenant default 2020-10-19T06:17:39.0580137Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.1759775Z App successfully published 2020-10-19T06:17:39.2001351Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:39.9245563Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-CRM integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5821254Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-CRM integration_17.0.17126.17806.app 2020-10-19T06:17:40.5959931Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:44.5195402Z Synchronizing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8623012Z Installing Tests-CRM integration on tenant default 2020-10-19T06:17:45.8638176Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.1265888Z App successfully published 2020-10-19T06:17:46.1492658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:46.8637915Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Data Exchange_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5063149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Data Exchange_17.0.17126.17806.app 2020-10-19T06:17:47.5156590Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.3323745Z Synchronizing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4580682Z Installing Tests-Data Exchange on tenant default 2020-10-19T06:17:50.4587150Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:50.5780091Z App successfully published 2020-10-19T06:17:50.5970098Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:51.2136186Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Dimension_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8765147Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Dimension_17.0.17126.17806.app 2020-10-19T06:17:51.8863312Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:55.5531940Z Synchronizing Tests-Dimension on tenant default 2020-10-19T06:17:55.8923927Z Installing Tests-Dimension on tenant default 2020-10-19T06:17:55.8994799Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:56.7911744Z App successfully published 2020-10-19T06:17:56.8453444Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:17:57.3944076Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-ERM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0340554Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-ERM_17.0.17126.17806.app 2020-10-19T06:17:58.0589815Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:41.1198142Z Synchronizing Tests-ERM on tenant default 2020-10-19T06:18:41.3043666Z Installing Tests-ERM on tenant default 2020-10-19T06:18:41.3101943Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:47.7589237Z App successfully published 2020-10-19T06:18:47.7838840Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:48.5580571Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Fixed Asset_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2140528Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app 2020-10-19T06:18:49.2236298Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.3412453Z Synchronizing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4645631Z Installing Tests-Fixed Asset on tenant default 2020-10-19T06:18:52.4659319Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:52.6002318Z App successfully published 2020-10-19T06:18:52.6197778Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:53.3203266Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-General Journal_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9555170Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-General Journal_17.0.17126.17806.app 2020-10-19T06:18:53.9652282Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:57.3120487Z Synchronizing Tests-General Journal on tenant default 2020-10-19T06:18:57.4393444Z Installing Tests-General Journal on tenant default 2020-10-19T06:18:57.4460823Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:58.7193379Z App successfully published 2020-10-19T06:18:58.7426002Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:18:59.2904378Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Graph_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9221871Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Graph_17.0.17126.17806.app 2020-10-19T06:18:59.9335300Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.5317409Z Synchronizing Tests-Graph on tenant default 2020-10-19T06:19:04.6528352Z Installing Tests-Graph on tenant default 2020-10-19T06:19:04.6598658Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:04.7961552Z App successfully published 2020-10-19T06:19:04.8200432Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:05.5840743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2444600Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Integration_17.0.17126.17806.app 2020-10-19T06:19:06.2480723Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.5077011Z Synchronizing Tests-Integration on tenant default 2020-10-19T06:19:08.6408757Z Installing Tests-Integration on tenant default 2020-10-19T06:19:08.6422595Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:08.9846724Z App successfully published 2020-10-19T06:19:09.0050077Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:09.6676942Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Invoicing_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3406182Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Invoicing_17.0.17126.17806.app 2020-10-19T06:19:10.3512601Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:12.3578432Z Synchronizing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4734415Z Installing Tests-Invoicing on tenant default 2020-10-19T06:19:12.4802864Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.2015820Z App successfully published 2020-10-19T06:19:13.2560661Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:13.9814116Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Job_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6462565Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Job_17.0.17126.17806.app 2020-10-19T06:19:14.6576008Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:19.6873031Z Synchronizing Tests-Job on tenant default 2020-10-19T06:19:20.0204014Z Installing Tests-Job on tenant default 2020-10-19T06:19:20.0286341Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:20.8212474Z App successfully published 2020-10-19T06:19:20.8645073Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:21.6478187Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Local_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3131796Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Local_17.0.17126.17806.app 2020-10-19T06:19:22.3289454Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:37.8556749Z Synchronizing Tests-Local on tenant default 2020-10-19T06:19:37.9834324Z Installing Tests-Local on tenant default 2020-10-19T06:19:37.9903558Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:39.2716110Z App successfully published 2020-10-19T06:19:39.3005648Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:40.0332901Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Misc_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6609035Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Misc_17.0.17126.17806.app 2020-10-19T06:19:40.6772992Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:19:54.0325558Z Synchronizing Tests-Misc on tenant default 2020-10-19T06:19:54.3714369Z Installing Tests-Misc on tenant default 2020-10-19T06:19:54.3758856Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:00.4920216Z App successfully published 2020-10-19T06:20:00.5123307Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:01.0617808Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Permissions_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7092080Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Permissions_17.0.17126.17806.app 2020-10-19T06:20:01.7204125Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:02.7252806Z Synchronizing Tests-Permissions on tenant default 2020-10-19T06:20:03.0663505Z Installing Tests-Permissions on tenant default 2020-10-19T06:20:03.0730514Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.2521971Z App successfully published 2020-10-19T06:20:03.2718328Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:03.8037245Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Physical Inventory_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4640474Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app 2020-10-19T06:20:04.4732656Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.3042497Z Synchronizing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.4534513Z Installing Tests-Physical Inventory on tenant default 2020-10-19T06:20:05.5210275Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:05.6377739Z App successfully published 2020-10-19T06:20:05.6592259Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:06.1964494Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Prepayment_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8574063Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Prepayment_17.0.17126.17806.app 2020-10-19T06:20:06.8659352Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.2295344Z Synchronizing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3577861Z Installing Tests-Prepayment on tenant default 2020-10-19T06:20:07.3642544Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:07.5151236Z App successfully published 2020-10-19T06:20:07.5387746Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:08.0605754Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Rapid Start_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7033688Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Rapid Start_17.0.17126.17806.app 2020-10-19T06:20:08.7137613Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4611196Z Synchronizing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4611698Z Installing Tests-Rapid Start on tenant default 2020-10-19T06:20:11.4612408Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.4612924Z App successfully published 2020-10-19T06:20:11.4613313Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:11.6014191Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Report_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2422612Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Report_17.0.17126.17806.app 2020-10-19T06:20:12.2514348Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:15.1231651Z Synchronizing Tests-Report on tenant default 2020-10-19T06:20:15.2406825Z Installing Tests-Report on tenant default 2020-10-19T06:20:15.2493005Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:16.5285919Z App successfully published 2020-10-19T06:20:16.5542449Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:17.0873272Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Resource_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7190301Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Resource_17.0.17126.17806.app 2020-10-19T06:20:17.7293910Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.1542782Z Synchronizing Tests-Resource on tenant default 2020-10-19T06:20:21.2755142Z Installing Tests-Resource on tenant default 2020-10-19T06:20:21.2823414Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:21.6248777Z App successfully published 2020-10-19T06:20:21.6498948Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:22.1951118Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Reverse_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8221149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Reverse_17.0.17126.17806.app 2020-10-19T06:20:22.8311066Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.0924719Z Synchronizing Tests-Reverse on tenant default 2020-10-19T06:20:24.2083983Z Installing Tests-Reverse on tenant default 2020-10-19T06:20:24.2151297Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:24.6743448Z App successfully published 2020-10-19T06:20:24.7342279Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:20:25.2777404Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SCM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9250670Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SCM_17.0.17126.17806.app 2020-10-19T06:20:25.9374978Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:35.4595594Z Synchronizing Tests-SCM on tenant default 2020-10-19T06:21:35.6068318Z Installing Tests-SCM on tenant default 2020-10-19T06:21:35.6136677Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.1122789Z App successfully published 2020-10-19T06:21:42.1361488Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:42.9017496Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMB_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5227433Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMB_17.0.17126.17806.app 2020-10-19T06:21:43.5326994Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:48.8041696Z Synchronizing Tests-SMB on tenant default 2020-10-19T06:21:48.9340856Z Installing Tests-SMB on tenant default 2020-10-19T06:21:48.9346977Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:49.5702231Z App successfully published 2020-10-19T06:21:49.5890662Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:50.2763649Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMTP_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9343407Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-SMTP_17.0.17126.17806.app 2020-10-19T06:21:50.9428238Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.2168839Z Synchronizing Tests-SMTP on tenant default 2020-10-19T06:21:51.3371247Z Installing Tests-SMTP on tenant default 2020-10-19T06:21:51.3453780Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:51.8616862Z App successfully published 2020-10-19T06:21:51.8811149Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:52.5044345Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Upgrade_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2234247Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Upgrade_17.0.17126.17806.app 2020-10-19T06:21:53.2331957Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.4247347Z Synchronizing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6445653Z Installing Tests-Upgrade on tenant default 2020-10-19T06:21:53.6515685Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:53.9729758Z App successfully published 2020-10-19T06:21:53.9965596Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:54.5716074Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-User_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.1940388Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-User_17.0.17126.17806.app 2020-10-19T06:21:55.2035392Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.3737971Z Synchronizing Tests-User on tenant default 2020-10-19T06:21:56.4955152Z Installing Tests-User on tenant default 2020-10-19T06:21:56.5021246Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:56.6876009Z App successfully published 2020-10-19T06:21:56.7104229Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:21:57.4273565Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-VAT_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0674345Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-VAT_17.0.17126.17806.app 2020-10-19T06:21:58.0780440Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2113674Z Synchronizing Tests-VAT on tenant default 2020-10-19T06:22:03.2114034Z Installing Tests-VAT on tenant default 2020-10-19T06:22:03.2114346Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.2114675Z App successfully published 2020-10-19T06:22:03.2114962Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:03.8163339Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Workflow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow_17.0.17126.17806.app 2020-10-19T06:22:04.4722207Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current_Microsoft_Tests-Workflow17.0.17126.17806.app 2020-10-19T06:22:04.4849102Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:10.3775285Z Synchronizing Tests-Workflow on tenant default 2020-10-19T06:22:10.4998077Z Installing Tests-Workflow on tenant default 2020-10-19T06:22:10.5064594Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:11.2636926Z App successfully published 2020-10-19T06:22:11.2645773Z TestToolkit successfully imported 2020-10-19T06:22:11.3167479Z 2020-10-19T06:22:11.3177384Z Importing Test Toolkit took 338 seconds 2020-10-19T06:22:11.3184258Z ____
2020-10-19T06:22:11.3196473Z / ____| (
) (_) | | | |
2020-10-19T06:22:11.3201590Z | | | | | |_ | |_ 2020-10-19T06:22:11.3210047Z | | / | ' _ \| '_ \| | | | '_ \ / _ | | / \ | | / ` | ' | ' \/ | 2020-10-19T06:22:11.3216205Z | |_ () | | | | | | |) | | | | | | | (| | | |_ _ \ | | (| | |) | |) _ \ 2020-10-19T06:22:11.3226040Z __\/|| || |_| ./||||| ||_, | _\|/_| _,| ./| ./|_/ 2020-10-19T06:22:11.3232608Z | | / | | | | |
2020-10-19T06:22:11.3239142Z || |
/ || ||
2020-10-19T06:22:11.3327581Z Using Version 1.0.404.0 2020-10-19T06:22:12.1944689Z Using Symbols Folder: D:\a\1\s.packages 2020-10-19T06:22:12.7865649Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.8175822Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:12.9882200Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17806.app 2020-10-19T06:22:12.9889818Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.4415626Z Downloading symbols: Microsoft_Any_17.0.17126.17806.app 2020-10-19T06:22:13.4422796Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:13.7710111Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17806.app 2020-10-19T06:22:13.7726333Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.1556164Z Downloading symbols: Microsoft_System Application Test Library_17.0.17126.17806.app 2020-10-19T06:22:14.1599654Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.5192434Z Adding dependency to System Application from Microsoft 2020-10-19T06:22:14.5214800Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.17126.17806.app 2020-10-19T06:22:14.5241656Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:14.9223082Z Adding dependency to Library Variable Storage from Microsoft 2020-10-19T06:22:14.9265553Z Downloading symbols: Microsoft_Library Variable Storage_17.0.17126.17806.app 2020-10-19T06:22:14.9277007Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Variable Storage&versionText=17.0.0.0&tenant=default 2020-10-19T06:22:15.2511068Z Compiling... 2020-10-19T06:22:15.2517689Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources.packages" /out:"c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app" /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies" 2020-10-19T06:22:29.3395267Z Microsoft (R) AL Compiler version 6.0.5.10826 2020-10-19T06:22:29.3400838Z Copyright (C) Microsoft Corporation. All rights reserved 2020-10-19T06:22:29.3403913Z 2020-10-19T06:22:29.3411005Z Compilation started for project 'Electronic Invoicing - Test' containing '8' files at '6:22:16.18'. 2020-10-19T06:22:29.3415548Z 2020-10-19T06:22:29.3421454Z c:\sources\test\data\TAB50133.navxdata(1,1): info AL1027: The file at location 'c:\sources\test\data\TAB50133.navxdata' matches the definition for 'TableData'. 2020-10-19T06:22:29.3425117Z 2020-10-19T06:22:29.3431379Z Compilation ended at '6:22:29.278'. 2020-10-19T06:22:29.3434565Z 2020-10-19T06:22:29.3448534Z D:\a\1\s.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app successfully created in 18 seconds 2020-10-19T06:22:29.3513151Z Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app copied to D:\a\1\s.packages 2020-10-19T06:22:29.3611251Z 2020-10-19T06:22:29.3614943Z Compiling apps, test apps and importing test toolkit took 408 seconds 2020-10-19T06:22:29.3620606Z 2020-10-19T06:22:29.3625938Z
_
2020-10-19T06:22:29.3632934Z | \ | | | () | | () /\
2020-10-19T06:22:29.3639516Z | |
) | _| | | | | | / \ 2020-10-19T06:22:29.3645941Z | / | | | ' | | / | ' | | ' \ / ` | / /\ \ | ' | '_ \/ | 2020-10-19T06:22:29.3652772Z | | | || | |) | | _ \ | | | | | | | (| | / __ | |) | |) _ \ 2020-10-19T06:22:29.3661073Z || _,|_./|||/| |||| ||\, | // \\ ./| ./|/ 2020-10-19T06:22:29.3664378Z / | | | | |
2020-10-19T06:22:29.3671187Z |
/ || ||
2020-10-19T06:22:29.3675037Z 2020-10-19T06:22:29.4752827Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:30.9443119Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app 2020-10-19T06:22:30.9583874Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:34.5072397Z Synchronizing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4215117Z Installing Electronic Invoicing on tenant default 2020-10-19T06:22:36.4284244Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:22:38.9557299Z App successfully published 2020-10-19T06:22:39.2917828Z Publishing c:\sources.output\Cegeka S.p.A._Electronic Invoicing - Test1.0.404.0.app 2020-10-19T06:22:39.3013067Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:37.7736617Z Synchronizing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0054958Z Installing Electronic Invoicing - Test on tenant default 2020-10-19T06:23:38.0109011Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:23:49.4185299Z App successfully published 2020-10-19T06:23:49.4199186Z 2020-10-19T06:23:49.4207469Z Publishing apps took 80 seconds 2020-10-19T06:23:49.4212151Z 2020-10-19T06:23:49.4218161Z ____ _ ____
2020-10-19T06:23:49.4231658Z |
\ (_) | | | |
2020-10-19T06:23:49.4236894Z | |) | _ | | | | 2020-10-19T06:23:49.4243794Z | / | | | ' | ' | | ' \ / ` | | |/ _ \ | / | 2020-10-19T06:23:49.4285105Z | | \ \ || | | | | | | | | | | | (| | | | _ \ |_ \ 2020-10-19T06:23:49.4293201Z || _\,|| ||| |||| ||_, | ||_|/_|_/ 2020-10-19T06:23:49.4299000Z / |
2020-10-19T06:23:49.4305748Z |_/
2020-10-19T06:23:49.4325301Z 2020-10-19T06:27:38.2994513Z UriToShow : BC/cs.DynamicFileHandler.axd?form=D&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=rzwophyazzvethn1b4hq0mfk 2020-10-19T06:27:38.3000977Z UriToShow : BC/cs.DynamicFileHandler.axd?form=E&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=av5iw2fxunifzshqjiybdbde 2020-10-19T06:27:38.3011384Z UriToShow : BC/cs.DynamicFileHandler.axd?form=F&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=ntwpvt5tp4omopmh5muffihu 2020-10-19T06:27:38.3080624Z UriToShow : BC/cs.DynamicFileHandler.axd?form=10&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=sxmrjts2ppktzayurth53nes 2020-10-19T06:27:38.4028437Z Codeunit 50133 CGK ELI Test WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:38.4730976Z Success (139.422 seconds) 2020-10-19T06:27:38.4851553Z Testfunction ELI_00000_CORModuleSetupCheck Success (0.024 seconds) 2020-10-19T06:27:38.4937375Z Testfunction ELI_00000_CheckFeature Success (2.17 seconds) 2020-10-19T06:27:38.5058839Z Testfunction ELI_00000_RELIntegrationCheck Success (5.43 seconds) 2020-10-19T06:27:38.5209587Z Testfunction ELI_00328_CheckNewFields Success (9.32 seconds) 2020-10-19T06:27:38.5217401Z Testfunction ELI_00329_Login Success (1.267 seconds) 2020-10-19T06:27:38.5227408Z Testfunction ELI_00330_AddInvoiceWithInvalidData Success (40.537 seconds) 2020-10-19T06:27:38.5244970Z Testfunction ELI_00331_SendInvoiceWithInvalidData Success (1.273 seconds) 2020-10-19T06:27:38.5248951Z Testfunction ELI_00332_CheckRejectedStatus Success (0.92 seconds) 2020-10-19T06:27:38.5265906Z Testfunction ELI_00333_CheckRejectedNotes Success (0.924 seconds) 2020-10-19T06:27:38.5276423Z Testfunction ELI_00334_DownloadXml Success (0.864 seconds) 2020-10-19T06:27:38.5299425Z Testfunction ELI_00335_ShowDocFromEIADashboard Success (1.58 seconds) 2020-10-19T06:27:38.5315525Z Testfunction ELI_00336_EIAAddRejectedDoc Success (1.27 seconds) 2020-10-19T06:27:38.5324015Z Testfunction ELI_00337_AddInvoiceWithInvalidDataWithPDF Success (9.773 seconds) 2020-10-19T06:27:38.5359617Z Testfunction ELI_00339_EIACheckStatusTransferred Success (1.283 seconds) 2020-10-19T06:27:38.5366785Z Testfunction ELI_00340_EIACheckStatusTransferred_CreditMemo Success (1.87 seconds) 2020-10-19T06:27:38.5376944Z Testfunction ELI_00341_EIACheckStatusTransferred_CustomerWithPec Success (0.95 seconds) 2020-10-19T06:27:38.5383280Z Testfunction ELI_00342_EIPImportFromIx Success (1.407 seconds) 2020-10-19T06:27:38.5406911Z Testfunction ELI_00343_EIPCreatePreview Success (1.337 seconds) 2020-10-19T06:27:38.5411517Z Testfunction ELI_00344_EIPCreateDocument Success (2.956 seconds) 2020-10-19T06:27:38.5424626Z Testfunction ELI_00345_EIPPostDocument Success (10.616 seconds) 2020-10-19T06:27:38.5440762Z Testfunction ELI_00346_EIPDownloadXml Success (0.983 seconds) 2020-10-19T06:27:38.5448320Z Testfunction ELI_00347_EIPDownloadPdf Success (0.92 seconds) 2020-10-19T06:27:38.5471985Z Testfunction ELI_00348_EIPDownloadHtml Success (0.907 seconds) 2020-10-19T06:27:38.5485939Z Testfunction ELI_00349_EIPDocumentMissingVendor Success (0.916 seconds) 2020-10-19T06:27:38.5499946Z Testfunction ELI_00350_EIPDocumentMissingVendorCorrection Success (0.996 seconds) 2020-10-19T06:27:38.5518703Z Testfunction ELI_00351_EIPDocumentDuplicateVatRegNo Success (1.64 seconds) 2020-10-19T06:27:38.5535696Z Testfunction ELI_00352_EIPImportFromDir Success (0.877 seconds) 2020-10-19T06:27:38.5556164Z Testfunction ELI_00353_EIPDuplicatePreview Success (1.05 seconds) 2020-10-19T06:27:38.5562584Z Testfunction ELI_00354_EIPDuplicatePreview Success (1.313 seconds) 2020-10-19T06:27:38.5573701Z Testfunction ELI_00355_EIPDuplicatePreview Success (2.314 seconds) 2020-10-19T06:27:38.5698862Z Testfunction ELI_00356_EIPDocumentVendorPaymentNotMatchingXml Success (1.227 seconds) 2020-10-19T06:27:38.5950721Z Testfunction ELI_00357_EIPDocumetProductNotMatchingXml Success (1.154 seconds) 2020-10-19T06:27:38.5999968Z Testfunction ELI_00360_EIPCreatePreviewConfirmWarnings Success (2.24 seconds) 2020-10-19T06:27:38.6703788Z Testfunction ELI_00361_EIPPurchaseReceiptMatching Success (4.154 seconds) 2020-10-19T06:27:38.6714194Z Testfunction ELI_00362_EIPPurchaseReceiptMatching Success (2.5 seconds) 2020-10-19T06:27:38.6958796Z Testfunction ELI_00364_EIPPurchaseReceiptMatching Success (2.443 seconds) 2020-10-19T06:27:38.6967463Z Testfunction ELI_00380_EIACheckStatusTransferred_ServiceInvoice Success (8.01 seconds) 2020-10-19T06:27:38.6984444Z Testfunction ELI_00381_EIACheckStatusTransferred_ServiceCM Success (1.157 seconds) 2020-10-19T06:27:38.6995625Z Testfunction ELI_00382EIPCMMatchingReturnShipment Success (8.85 seconds) 2020-10-19T06:27:39.0532301Z 2020-10-19T06:27:39.0562156Z Running tests took 230 seconds 2020-10-19T06:27:39.0608230Z
____
2020-10-19T06:27:39.0616589Z / ____| | | |
\ () | | | /\ | | ()/ | | |
2020-10-19T06:27:39.0677808Z | |
_ | | | |) | | | | | / \ _ _| | | | _ | | _ 2020-10-19T06:27:39.0710846Z | | / | ' | | | | | / \ | <| | | | | |/ _` | / /\ \ | '| | | / ` |/ | / | 2020-10-19T06:27:39.0715069Z | | () | |) | || | | | () | | |) | || | | | (| | / | | | || | || (| | (| |_ \ 2020-10-19T06:27:39.0721730Z ____/| ./ _, | __/ |__/ _,|||_,| // __| _||| _,|_|_|/ 2020-10-19T06:27:39.0728242Z | | / |
2020-10-19T06:27:39.0736626Z || |
/
2020-10-19T06:27:39.2218840Z Getting Runtime Package for Cegeka S.p.A._Electronic Invoicing1.0.404.0.app 2020-10-19T06:27:39.7176573Z WARNING: This license is not compatible with this version of Business Central. 2020-10-19T06:27:42.8953009Z Copying runtime package to build artifact 2020-10-19T06:27:42.9091724Z 2020-10-19T06:27:42.9096164Z Copying to Build Artifacts took 4 seconds 2020-10-19T06:27:42.9101606Z 2020-10-19T06:27:42.9112158Z ____ ____
2020-10-19T06:27:42.9124051Z | \ () / ____| | | ()
2020-10-19T06:27:42.9127871Z | |
) | _ ___ | | _ | |_ _ 2020-10-19T06:27:42.9160010Z | // \ ' ` \ / \ \ / / | ' \ / ` | | | / | '_ | / ` | | ' \ / \ '| 2020-10-19T06:27:42.9164613Z | | \ \ / | | | | | () \ V /| | | | | (| | | |____ () | | | | | (| | | | | | / |
2020-10-19T06:27:42.9173171Z || \_|| || ||\/ _/ ||| ||_, | __\/|| ||__,||| ||_|_|
2020-10-19T06:27:42.9177164Z _/ |
2020-10-19T06:27:42.9190339Z |
/
2020-10-19T06:27:42.9191130Z 2020-10-19T06:27:44.1999245Z Removing container hostedagent-cgk-eli-current 2020-10-19T06:27:45.9821778Z Removing hostedagent-cgk-eli-current from host hosts file 2020-10-19T06:27:46.2140830Z Removing hostedagent-cgk-eli-current-* from host hosts file 2020-10-19T06:27:46.2948331Z Removing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current 2020-10-19T06:27:46.3670640Z 2020-10-19T06:27:46.3686318Z Removing container took 3 seconds 2020-10-19T06:27:46.3689187Z 2020-10-19T06:27:46.3698438Z AL Pipeline finished in 1655 seconds 2020-10-19T06:27:46.8417970Z ##[section]Finishing: Run Pipeline `

Pellic commented 4 years ago

no way ! I'm trying with brackets, quotes, apostrophe...

``

Pellic commented 4 years ago
2020-10-19T05:59:57.1072763Z ##[section]Starting: Run Pipeline
2020-10-19T05:59:57.1223394Z ==============================================================================
2020-10-19T05:59:57.1223968Z Task         : PowerShell
2020-10-19T05:59:57.1224302Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2020-10-19T05:59:57.1224581Z Version      : 2.170.1
2020-10-19T05:59:57.1224807Z Author       : Microsoft Corporation
2020-10-19T05:59:57.1225168Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-10-19T05:59:57.1225567Z ==============================================================================
2020-10-19T05:59:58.0647167Z Generating script.
2020-10-19T05:59:58.0727731Z Formatted command: . 'D:\a\1\s\scripts\DevOps-Pipeline.ps1' -version "current" -appBuild 404 -appRevision 0
2020-10-19T05:59:58.1151686Z ========================== Starting Command Output ===========================
2020-10-19T05:59:58.1442723Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\675a43c0-dc28-4ee5-9f88-cd0d97a74adc.ps1'"
2020-10-19T05:59:58.5258963Z Set artifact = ///it/Current
2020-10-19T05:59:58.5296082Z Set pipelineName = CGK-ELI-current
2020-10-19T05:59:58.5372497Z Set containerName = hostedagent-cgk-eli-current
2020-10-19T05:59:58.5565469Z Set installApps = 'C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app'
2020-10-19T05:59:58.5575528Z Set previousApps = ''
2020-10-19T05:59:58.5609222Z Set appSourceCopMandatoryAffixes = 'CGK'
2020-10-19T05:59:58.5633298Z Set appSourceCopSupportedCountries = 'it,us'
2020-10-19T05:59:58.5661182Z Set appFolders = 'app'
2020-10-19T05:59:58.5689983Z Set testFolders = 'test'
2020-10-19T05:59:58.5719613Z Set memoryLimit = '12G'
2020-10-19T05:59:58.5729806Z Set additionalCountries = ''
2020-10-19T05:59:58.5777700Z Set installTestFramework = False
2020-10-19T05:59:58.5822492Z Set installTestLibraries = False
2020-10-19T05:59:58.5852114Z Set installPerformanceToolkit = False
2020-10-19T05:59:58.5881843Z Set enableCodeCop = False
2020-10-19T05:59:58.5910229Z Set enableAppSourceCop = True
2020-10-19T05:59:58.5941916Z Set enablePerTenantExtensionCop = False
2020-10-19T05:59:58.5972327Z Set enableUICop = True
2020-10-19T05:59:58.5981515Z Set doNotSignApp = False
2020-10-19T05:59:58.6000836Z Set doNotRunTests = False
2020-10-19T05:59:58.6029076Z Set cacheImage = False
2020-10-19T05:59:58.6060233Z Use bcContainerHelper Version: https://github.com/microsoft/navcontainerhelper/archive/dev.zip
2020-10-19T05:59:58.6322913Z Downloading https://github.com/microsoft/navcontainerhelper/archive/dev.zip
2020-10-19T06:00:03.1411433Z C:\Users\VssAdministrator\AppData\Local\Temp\hostedagent-cgk-eli-current\navcontainerhelper-dev\BcContainerHelper.psm1
2020-10-19T06:00:05.4683611Z Determining artifacts to use
2020-10-19T06:00:10.8042872Z   _____                               _                
2020-10-19T06:00:10.8051193Z  |  __ \                             | |               
2020-10-19T06:00:10.8055337Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2020-10-19T06:00:10.8064394Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2020-10-19T06:00:10.8068984Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2020-10-19T06:00:10.8083501Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2020-10-19T06:00:10.8086700Z 
2020-10-19T06:00:10.8103155Z Pipeline name               CGK-ELI-current
2020-10-19T06:00:10.8114106Z Container name              hostedagent-cgk-eli-current
2020-10-19T06:00:10.8127415Z Image name                  
2020-10-19T06:00:10.8212498Z ArtifactUrl                 https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it
2020-10-19T06:00:10.8369200Z SasToken                    Not Specified
2020-10-19T06:00:10.8401363Z Credential                  admin/Pano5651
2020-10-19T06:00:10.8777495Z MemoryLimit                 12G
2020-10-19T06:00:10.8790594Z Enable Task Scheduler       False
2020-10-19T06:00:10.8808117Z Assign Premium Plan         False
2020-10-19T06:00:10.8821223Z Install Test Framework      False
2020-10-19T06:00:10.8834076Z Install Test Libraries      False
2020-10-19T06:00:10.8846199Z Install Perf. Toolkit       False
2020-10-19T06:00:10.8858249Z enableCodeCop               False
2020-10-19T06:00:10.8873248Z enableAppSourceCop          True
2020-10-19T06:00:10.8883364Z enableUICop                 True
2020-10-19T06:00:10.8895796Z enablePerTenantExtensionCop False
2020-10-19T06:00:10.8908257Z azureDevOps                 False
2020-10-19T06:00:10.8921294Z License file                Specified
2020-10-19T06:00:10.8937372Z CodeSignCertPfxFile         Not specified
2020-10-19T06:00:10.8949466Z TestResultsFile             D:\a\1\s\TestResults.xml
2020-10-19T06:00:10.8960974Z TestResultsFormat           JUnit
2020-10-19T06:00:10.9000930Z AdditionalCountries         
2020-10-19T06:00:10.9012996Z PackagesFolder              D:\a\1\s\.packages
2020-10-19T06:00:10.9026311Z OutputFolder                D:\a\1\s\.output
2020-10-19T06:00:10.9038966Z BuildArtifactFolder         D:\a\1\a
2020-10-19T06:00:10.9051753Z CreateRuntimePackages       True
2020-10-19T06:00:10.9064525Z AppBuild                    404
2020-10-19T06:00:10.9077653Z AppRevision                 0
2020-10-19T06:00:10.9090078Z Mandatory Affixes           CGK
2020-10-19T06:00:10.9107422Z Supported Countries         it,us
2020-10-19T06:00:10.9107937Z Install Apps
2020-10-19T06:00:10.9123228Z - C:\Dependency\Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-19T06:00:10.9127712Z Previous Apps
2020-10-19T06:00:10.9137710Z - None
2020-10-19T06:00:10.9139191Z Application folders
2020-10-19T06:00:10.9150585Z - D:\a\1\s\app
2020-10-19T06:00:10.9155434Z Test application folders
2020-10-19T06:00:10.9164274Z - D:\a\1\s\test
2020-10-19T06:00:10.9235798Z 
2020-10-19T06:00:10.9242402Z   _____       _ _ _                                          _        _                            
2020-10-19T06:00:10.9250630Z  |  __ \     | | (_)                                        (_)      (_)                           
2020-10-19T06:00:10.9254784Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2020-10-19T06:00:10.9262785Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2020-10-19T06:00:10.9267450Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2020-10-19T06:00:10.9275526Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2020-10-19T06:00:10.9280238Z                            __/ |   __/ |                                                 __/ |     
2020-10-19T06:00:10.9289681Z                           |___/   |___/                                                 |___/      
2020-10-19T06:00:10.9290448Z 
2020-10-19T06:00:10.9294861Z Pulling mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-19T06:04:32.0351629Z 
2020-10-19T06:04:32.0357894Z Pulling generic image took 261 seconds
2020-10-19T06:04:32.0413929Z 
2020-10-19T06:04:32.0418679Z    _____                _   _                               _        _                 
2020-10-19T06:04:32.0429091Z   / ____|              | | (_)                             | |      (_)                
2020-10-19T06:04:32.0434914Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-19T06:04:32.0443135Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-19T06:04:32.0447522Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-19T06:04:32.0455824Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-19T06:04:32.0460152Z                                      __/ |                                             
2020-10-19T06:04:32.0468215Z                                     |___/                                              
2020-10-19T06:04:32.0469724Z 
2020-10-19T06:04:32.2258089Z WARNING: Container name should not exceed 15 characters
2020-10-19T06:04:33.1606820Z BcContainerHelper is version 1.0.10
2020-10-19T06:04:33.1611644Z BcContainerHelper is running as administrator
2020-10-19T06:04:33.1632564Z Host is Microsoft Windows Server 2019 Datacenter - ltsc2019
2020-10-19T06:04:35.1712534Z Docker Client Version is 19.03.12
2020-10-19T06:04:35.1735577Z Docker Server Version is 19.03.12
2020-10-19T06:04:35.8296093Z Downloading application artifact /sandbox/17.0.17126.17806/it
2020-10-19T06:04:35.8510071Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\35c32ce8-0898-4724-8f70-ed413f8ea8aa.zip
2020-10-19T06:04:40.3124883Z Unpacking application artifact to tmp folder using 7zip
2020-10-19T06:04:50.2362907Z Downloading platform artifact /sandbox/17.0.17126.17806/platform
2020-10-19T06:04:50.2386672Z Downloading C:\Users\VssAdministrator\AppData\Local\Temp\4c517335-20e2-45d7-ac35-39819b82c833.zip
2020-10-19T06:04:53.0906916Z Unpacking platform artifact to tmp folder using 7zip
2020-10-19T06:05:32.5541642Z Downloading Prerequisite Components
2020-10-19T06:05:32.5651442Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2020-10-19T06:05:32.5936729Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2020-10-19T06:05:32.6249784Z Downloading c:\bcartifacts.cache\sandbox\17.0.17126.17806\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2020-10-19T06:05:33.0615873Z Fetching all docker images
2020-10-19T06:05:33.9307186Z Using image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-19T06:05:34.1554242Z Creating Container hostedagent-cgk-eli-current
2020-10-19T06:05:34.1560899Z Version: 17.0.17126.17806-IT
2020-10-19T06:05:34.1569722Z Style: sandbox
2020-10-19T06:05:34.1572750Z Multitenant: Yes
2020-10-19T06:05:34.1580581Z Platform: 17.0.17020.17774
2020-10-19T06:05:34.1591208Z Generic Tag: 0.1.0.24
2020-10-19T06:05:34.1626009Z Container OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-19T06:05:34.1633047Z Host OS Version: 10.0.17763.1457 (ltsc2019)
2020-10-19T06:05:34.1654576Z Using process isolation
2020-10-19T06:05:34.1681914Z Using locale it-IT
2020-10-19T06:05:34.1716076Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2020-10-19T06:05:34.1775900Z Using license file C:\License.flf
2020-10-19T06:05:34.5993123Z Additional Parameters:
2020-10-19T06:05:34.6012779Z --volume "D:\a\1\s:c:\sources"
2020-10-19T06:05:34.6019767Z --env customNavSettings=EnableTaskScheduler=False
2020-10-19T06:05:34.6029247Z Files in C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\my:
2020-10-19T06:05:34.6072519Z - AdditionalOutput.ps1
2020-10-19T06:05:34.6084999Z - license.flf
2020-10-19T06:05:34.6095798Z - MainLoop.ps1
2020-10-19T06:05:34.6103705Z - SetupVariables.ps1
2020-10-19T06:05:34.6110011Z - updatehosts.ps1
2020-10-19T06:05:34.6117187Z Creating container hostedagent-cgk-eli-current from image mcr.microsoft.com/dynamicsnav:10.0.17763.1457-generic
2020-10-19T06:05:35.3434042Z ab9a0cf8568ae7706a0f443e153197c0344b621725d6d5aa2129c39c8ef0bc5f
2020-10-19T06:06:02.1481558Z Waiting for container hostedagent-cgk-eli-current to be ready
2020-10-19T06:06:16.2853436Z Adding HOSTEDAGENT-CGK to hosts file
2020-10-19T06:06:17.6975478Z Using artifactUrl https://bcartifacts.azureedge.net/sandbox/17.0.17126.17806/it
2020-10-19T06:06:19.2126897Z Using installer from C:\Run\150-new
2020-10-19T06:06:19.2133664Z Installing Business Central
2020-10-19T06:06:19.2142045Z Installing from artifacts
2020-10-19T06:06:29.6514366Z Starting Local SQL Server
2020-10-19T06:06:29.6523854Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2020-10-19T06:06:29.6528367Z start...
2020-10-19T06:06:30.9020090Z Starting Internet Information Server
2020-10-19T06:06:30.9026624Z Copying Service Tier Files
2020-10-19T06:06:35.4488640Z Copying PowerShell Scripts
2020-10-19T06:06:35.4496839Z Copying dependencies
2020-10-19T06:06:35.4500525Z Copying ReportBuilder
2020-10-19T06:06:35.4507190Z Importing PowerShell Modules
2020-10-19T06:06:52.3319067Z Determining Database Collation from c:\dl\sandbox\17.0.17126.17806\it\BusinessCentral-IT.bak
2020-10-19T06:07:35.6845830Z Restoring CRONUS Demo Database
2020-10-19T06:10:18.7812381Z Exporting Application to CRONUS
2020-10-19T06:10:25.0961599Z Removing Application from tenant
2020-10-19T06:10:25.0969779Z Modifying Business Central Service Tier Config File for Docker
2020-10-19T06:10:25.0977677Z Creating Business Central Service Tier
2020-10-19T06:10:25.0979456Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2020-10-19T06:10:25.0986779Z Copying Web Client Files
2020-10-19T06:10:25.0995007Z Copying Client Files
2020-10-19T06:10:25.0998997Z Copying ModernDev Files
2020-10-19T06:10:25.1007089Z Copying additional files
2020-10-19T06:10:25.1011095Z Copying ConfigurationPackages
2020-10-19T06:10:25.1018678Z Copying Test Assemblies
2020-10-19T06:10:25.1022463Z Copying Extensions
2020-10-19T06:10:25.1030148Z Copying Applications
2020-10-19T06:10:25.1033644Z Copying Applications.IT
2020-10-19T06:10:55.6119886Z Starting Business Central Service Tier
2020-10-19T06:10:55.6126137Z Importing license file
2020-10-19T06:10:55.6132297Z Copying Database on localhost\SQLEXPRESS from tenant to default
2020-10-19T06:11:06.3699005Z Taking database tenant offline
2020-10-19T06:11:06.3712417Z Copying database files
2020-10-19T06:11:18.7685495Z Attaching files as new Database default
2020-10-19T06:11:18.7694801Z Putting database tenant back online
2020-10-19T06:11:18.7698030Z Mounting tenant database
2020-10-19T06:14:04.5573014Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-19T06:14:07.6533174Z Sync'ing Tenant
2020-10-19T06:14:07.6541234Z Tenant is Operational
2020-10-19T06:14:07.6545051Z Stopping Business Central Service Tier
2020-10-19T06:14:07.6553224Z Installation took 469 seconds
2020-10-19T06:14:07.6555899Z Installation complete
2020-10-19T06:14:08.8968162Z Initializing...
2020-10-19T06:14:08.8975959Z Setting host.containerhelper.internal to 172.17.80.1 in container hosts file
2020-10-19T06:14:08.8980016Z Starting Container
2020-10-19T06:14:08.8984719Z Hostname is hostedagent-cgk-eli-current
2020-10-19T06:14:10.2606236Z PublicDnsName is hostedagent-cgk-eli-current
2020-10-19T06:14:10.2612469Z Using NavUserPassword Authentication
2020-10-19T06:14:12.9519247Z Creating Self Signed Certificate
2020-10-19T06:14:12.9528424Z Self Signed Certificate Thumbprint 979EEC9D34EEBE71686D8D281402EB682D8D761F
2020-10-19T06:14:12.9532462Z Modifying Service Tier Config File with Instance Specific Settings
2020-10-19T06:14:12.9537773Z Modifying Service Tier Config File with settings from environment variable
2020-10-19T06:14:15.0408198Z Setting EnableTaskScheduler to False
2020-10-19T06:14:26.8270132Z Starting Service Tier
2020-10-19T06:14:26.8692511Z Registering event sources
2020-10-19T06:14:57.7980481Z Creating DotNetCore Web Server Instance
2020-10-19T06:14:57.7988838Z Enabling Financials User Experience
2020-10-19T06:14:57.7992522Z Enabling rewrite rule: Don't rewrite system files
2020-10-19T06:14:57.8004650Z Enabling rewrite rule: Already have tenant specified
2020-10-19T06:14:57.8008602Z Enabling rewrite rule: Hostname (without port) to tenant
2020-10-19T06:14:57.8013349Z Using license file 'c:\run\my\license.flf'
2020-10-19T06:14:59.0194459Z Import License
2020-10-19T06:14:59.0202522Z Dismounting Tenant
2020-10-19T06:14:59.0205070Z Mounting Tenant
2020-10-19T06:15:00.2623451Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False
2020-10-19T06:15:02.6914909Z Sync'ing Tenant
2020-10-19T06:15:02.6923144Z Tenant is Operational
2020-10-19T06:15:05.0848532Z Creating http download site
2020-10-19T06:15:05.1003862Z Setting SA Password and enabling SA
2020-10-19T06:15:05.1022130Z Creating admin as SQL User and add to sysadmin
2020-10-19T06:15:05.1105452Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:15:05.1106210Z Creating SUPER user
2020-10-19T06:15:17.7007316Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:15:20.3623152Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:15:20.3632936Z Container IP Address: 172.17.95.183
2020-10-19T06:15:20.3639213Z Container Hostname  : hostedagent-cgk-eli-current
2020-10-19T06:15:20.3647983Z Container Dns Name  : hostedagent-cgk-eli-current
2020-10-19T06:15:20.3656779Z Web Client          : http://hostedagent-cgk-eli-current/BC/?tenant=default
2020-10-19T06:15:20.3668270Z Dev. Server         : http://hostedagent-cgk-eli-current
2020-10-19T06:15:20.3677243Z Dev. ServerInstance : BC
2020-10-19T06:15:20.3684329Z Dev. Server Tenant  : default
2020-10-19T06:15:20.3691765Z Setting hostedagent-cgk-eli-current to 172.17.95.183 in host hosts file
2020-10-19T06:15:20.3698404Z Setting hostedagent-cgk-eli-current-default to 172.17.95.183 in host hosts file
2020-10-19T06:15:20.3702371Z 
2020-10-19T06:15:20.3708850Z Files:
2020-10-19T06:15:20.3717513Z http://hostedagent-cgk-eli-current:8080/ALLanguage.vsix
2020-10-19T06:15:20.3721071Z 
2020-10-19T06:15:20.3733953Z Container Total Physical Memory is 7.0Gb
2020-10-19T06:15:20.3737506Z Container Free Physical Memory is 2.8Gb
2020-10-19T06:15:20.3741952Z 
2020-10-19T06:15:20.3749798Z Initialization took 73 seconds
2020-10-19T06:15:20.3758511Z Ready for connections!
2020-10-19T06:15:20.4969816Z Reading CustomSettings.config from hostedagent-cgk-eli-current
2020-10-19T06:15:23.0487032Z Creating Desktop Shortcuts for hostedagent-cgk-eli-current
2020-10-19T06:15:23.2931102Z Container hostedagent-cgk-eli-current successfully created
2020-10-19T06:15:23.2934776Z 
2020-10-19T06:15:23.2944019Z Use:
2020-10-19T06:15:23.2955923Z Get-BcContainerEventLog -containerName hostedagent-cgk-eli-current to retrieve a snapshot of the event log from the container
2020-10-19T06:15:23.2967485Z Get-BcContainerDebugInfo -containerName hostedagent-cgk-eli-current to get debug information about the container
2020-10-19T06:15:23.2978853Z Enter-BcContainer -containerName hostedagent-cgk-eli-current to open a PowerShell prompt inside the container
2020-10-19T06:15:23.2990887Z Remove-BcContainer -containerName hostedagent-cgk-eli-current to remove the container again
2020-10-19T06:15:23.3000775Z docker logs hostedagent-cgk-eli-current to retrieve information about URL's again
2020-10-19T06:15:23.3540779Z 
2020-10-19T06:15:23.3546292Z Creating container took 651 seconds
2020-10-19T06:15:23.3551742Z 
2020-10-19T06:15:23.3557677Z   _____           _        _ _ _                                     
2020-10-19T06:15:23.3563575Z  |_   _|         | |      | | (_)                                    
2020-10-19T06:15:23.3572116Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-19T06:15:25.5655059Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-19T06:15:25.5668657Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-19T06:15:25.5674110Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-19T06:15:25.5685463Z                                         __/ |       | |   | |        
2020-10-19T06:15:25.5689763Z                                        |___/        |_|   |_|        
2020-10-19T06:15:25.5694844Z 
2020-10-19T06:15:25.5701777Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-19T06:15:25.5709218Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:15:35.8171766Z Synchronizing Core Management on tenant default
2020-10-19T06:15:37.2760428Z Installing Core Management on tenant default
2020-10-19T06:15:37.2854756Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:15:41.5265074Z App successfully published
2020-10-19T06:15:41.5287715Z 
2020-10-19T06:15:41.5297700Z Installing apps took 18 seconds
2020-10-19T06:15:41.5313075Z 
2020-10-19T06:15:41.5328811Z    _____                      _ _ _                                     
2020-10-19T06:15:41.5336533Z   / ____|                    (_) (_)                                    
2020-10-19T06:15:41.5344675Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2020-10-19T06:15:41.5350155Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2020-10-19T06:15:41.5356951Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2020-10-19T06:15:41.5363764Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2020-10-19T06:15:41.5372021Z                        | |                 __/ |       | |   | |        
2020-10-19T06:15:41.5377678Z                        |_|                |___/        |_|   |_|        
2020-10-19T06:15:41.5381012Z 
2020-10-19T06:15:41.5919380Z Using Version 1.0.404.0
2020-10-19T06:15:41.6813030Z Creating AppSourceCop.json for validation
2020-10-19T06:15:42.8313137Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-19T06:16:15.0864977Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:15.2348758Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:16.1048639Z Downloading symbols: Microsoft_Application_17.0.17126.17806.app
2020-10-19T06:16:16.1104903Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=17.0.0.0&tenant=default
2020-10-19T06:16:17.8454725Z Adding dependency to System Application from Microsoft
2020-10-19T06:16:17.8483190Z Adding dependency to Base Application from Microsoft
2020-10-19T06:16:17.8547209Z Downloading symbols: Microsoft_System_17.0.17020.17774.app
2020-10-19T06:16:17.8555486Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=17.0.0.0&tenant=default
2020-10-19T06:16:18.5312989Z Downloading symbols: Cegeka S.p.A._Core Management_1.0.65.0.app
2020-10-19T06:16:18.5318372Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Cegeka%20S.p.A.&appName=Core Management&versionText=1.0.0.0&tenant=default
2020-10-19T06:16:19.2190926Z Downloading symbols: Microsoft_System Application_17.0.17126.17806.app
2020-10-19T06:16:19.2197413Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application&versionText=17.0.0.0&tenant=default
2020-10-19T06:16:20.4367385Z Downloading symbols: Microsoft_Base Application_17.0.17126.17806.app
2020-10-19T06:16:20.4376848Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Base Application&versionText=17.0.0.0&tenant=default
2020-10-19T06:16:21.0151722Z Compiling...
2020-10-19T06:16:21.0305444Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2020-10-19T06:16:31.9406560Z Microsoft (R) AL Compiler version 6.0.5.10826
2020-10-19T06:16:31.9429312Z Copyright (C) Microsoft Corporation. All rights reserved
2020-10-19T06:16:31.9431046Z 
2020-10-19T06:16:31.9441841Z Compilation started for project 'Electronic Invoicing' containing '66' files at '6:16:21.636'.
2020-10-19T06:16:31.9444370Z 
2020-10-19T06:16:33.7010758Z c:\sources\app\src\ELI\CodeUnit\Cod18103705.CGKELIElectronicInvoiceMgt.al(1631,43): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Purchase Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
2020-10-19T06:16:33.7086511Z c:\sources\app\src\ELI\Page\Pag18103708.CGKELIEIPEvents.al(1,15): info AW0006: The page 'CGK ELI EIP Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7088401Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(1,15): info AW0006: The page 'CGK ELI EIA Events' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7095043Z c:\sources\app\src\ELI\Page\Pag18103706.CGKELIEIAEvents.al(71,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7096501Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(133,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7097505Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(149,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7098472Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(165,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7099538Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(182,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7100320Z c:\sources\app\src\ELI\Page\Pag18103709.CGKELIEIPPreviewList.al(198,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7101107Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(1,15): info AW0006: The page 'CGK ELI EIP Preview Header' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7101916Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(191,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7102824Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(210,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7103834Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(254,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7104627Z c:\sources\app\src\ELI\Page\Pag18103710.CGKELIEIPPreviewHeader.al(280,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7105789Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(243,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7107027Z c:\sources\app\src\ELI\Page\Pag18103712.CGKELIElectrInvoiceSetup.al(276,20): info AW0011: Group "creation" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7107859Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(246,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7108604Z c:\sources\app\src\ELI\Page\Pag18103711.CGKELIEIPPreviewLines.al(291,20): info AW0011: Group "processing" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7112473Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(252,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7121511Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(279,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7126090Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(300,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7134321Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(315,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7138620Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(331,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7143899Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(359,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7151288Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(378,24): info AW0011: Group "File" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7159566Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(442,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7164118Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(475,24): info AW0011: Group "Preview" only contains promoted actions that are not set to PromotedOnly="true".
2020-10-19T06:16:33.7175916Z c:\sources\app\src\ELI\Page\Pag18103714.CGKELIEIPGetReceiptLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Receipt Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7181036Z c:\sources\app\src\ELI\Page\Pag18103715.CGKELIEIPGetRetShpLines.al(1,15): info AW0006: The page 'CGK ELI EIP Get Ret. Shp.Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7188129Z c:\sources\app\src\ELI\Page\Pag18103716.CGKELIIXLog.al(1,15): info AW0006: The page 'CGK ELI IX Log' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7213190Z c:\sources\app\src\ELI\Report\Rep18103707.CGKELISetPrvLinesOrigNo.al(1,17): info AW0006: The report 'CGK ELI Set Prv.Lines Orig.No.' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7223323Z c:\sources\app\src\ELI\Report\Rep18103708.CGKELISetEIPTotalDoc.al(1,17): info AW0006: The report 'CGK ELI Set EIP Total Doc' should use the UsageCategory and ApplicationArea properties to be searchable.
2020-10-19T06:16:33.7227639Z c:\sources\app\src\ELI\Page\Pag18103707.CGKELIEIPDocument.al(87,36): warning AW0004: A Blob cannot be used as a source expression for a page field.
2020-10-19T06:16:33.7233606Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'.
2020-10-19T06:16:33.7238277Z 
2020-10-19T06:16:33.7245818Z Compilation ended at '6:16:31.866'.
2020-10-19T06:16:33.7249809Z 
2020-10-19T06:16:33.7257521Z D:\a\1\s\.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app successfully created in 52 seconds
2020-10-19T06:16:33.7263671Z Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app copied to D:\a\1\s\.packages
2020-10-19T06:16:33.7272773Z   _____                            _   _               _______       _     _______          _ _    _ _   
2020-10-19T06:16:33.7280676Z  |_   _|                          | | (_)             |__   __|     | |   |__   __|        | | |  (_) |  
2020-10-19T06:16:33.7286772Z    | |  _ __ ___  _ __   ___  _ __| |_ _ _ __   __ _     | | ___ ___| |_     | | ___   ___ | | | ___| |_ 
2020-10-19T06:16:33.7293778Z    | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` |    | |/ _ \ __| __|    | |/ _ \ / _ \| | |/ / | __|
2020-10-19T06:16:33.7301453Z   _| |_| | | | | | |_) | (_) | |  | |_| | | | | (_| |    | |  __\__ \ |_     | | (_) | (_) | |   <| | |_ 
2020-10-19T06:16:33.7307336Z  |_____|_| |_| |_| .__/ \___/|_|   \__|_|_| |_|\__, |    |_|\___|___/\__|    |_|\___/ \___/|_|_|\_\_|\__|
2020-10-19T06:16:33.7317159Z                  | |                            __/ |                                                    
2020-10-19T06:16:33.7324717Z                  |_|                           |___/                                                     
2020-10-19T06:16:36.2761208Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:36.8584423Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Any_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Any_17.0.17126.17806.app
2020-10-19T06:16:37.5077333Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Any_17.0.17126.17806.app
2020-10-19T06:16:37.5181303Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:37.6772498Z Synchronizing Any on tenant default
2020-10-19T06:16:37.7224613Z Installing Any on tenant default
2020-10-19T06:16:37.7295269Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:37.8388020Z App successfully published
2020-10-19T06:16:37.8705009Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:38.4128026Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Assert_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Library Assert_17.0.17126.17806.app
2020-10-19T06:16:39.0382552Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Library Assert_17.0.17126.17806.app
2020-10-19T06:16:39.0472265Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:39.1797871Z Synchronizing Library Assert on tenant default
2020-10-19T06:16:39.2199117Z Installing Library Assert on tenant default
2020-10-19T06:16:39.2267009Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:39.3342370Z App successfully published
2020-10-19T06:16:39.3528812Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:39.9412743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Library Variable Storage_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Library Variable Storage_17.0.17126.17806.app
2020-10-19T06:16:40.5744569Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Library Variable Storage_17.0.17126.17806.app
2020-10-19T06:16:40.5841430Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:40.6627870Z Synchronizing Library Variable Storage on tenant default
2020-10-19T06:16:40.7201958Z Installing Library Variable Storage on tenant default
2020-10-19T06:16:40.7282495Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:40.8420820Z App successfully published
2020-10-19T06:16:40.8665697Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:41.4129949Z Copy from container hostedagent-cgk-eli-current (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Test Runner.app
2020-10-19T06:16:42.0427252Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Test Runner.app
2020-10-19T06:16:42.0512171Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:42.6528500Z Synchronizing Test Runner on tenant default
2020-10-19T06:16:42.8324356Z Installing Test Runner on tenant default
2020-10-19T06:16:42.8398275Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:43.1540823Z App successfully published
2020-10-19T06:16:43.1727571Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:43.7237355Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_System Application Test Library_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_System Application Test Library_17.0.17126.17806.app
2020-10-19T06:16:44.3714616Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_System Application Test Library_17.0.17126.17806.app
2020-10-19T06:16:44.3804648Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:45.6611906Z Synchronizing System Application Test Library on tenant default
2020-10-19T06:16:45.8452650Z Installing System Application Test Library on tenant default
2020-10-19T06:16:45.8522199Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:46.4142800Z App successfully published
2020-10-19T06:16:46.4404003Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:16:46.9879882Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-TestLibraries_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-TestLibraries_17.0.17126.17806.app
2020-10-19T06:16:47.6171909Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-TestLibraries_17.0.17126.17806.app
2020-10-19T06:16:47.6340258Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:17.5805694Z Synchronizing Tests-TestLibraries on tenant default
2020-10-19T06:17:20.3702086Z Installing Tests-TestLibraries on tenant default
2020-10-19T06:17:20.5893513Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:26.0725609Z App successfully published
2020-10-19T06:17:26.0934942Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:26.8224633Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Bank_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Bank_17.0.17126.17806.app
2020-10-19T06:17:27.4645760Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Bank_17.0.17126.17806.app
2020-10-19T06:17:27.4748052Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:31.0536947Z Synchronizing Tests-Bank on tenant default
2020-10-19T06:17:31.1760170Z Installing Tests-Bank on tenant default
2020-10-19T06:17:31.1840588Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:31.5003171Z App successfully published
2020-10-19T06:17:31.5200442Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:32.0685512Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cash Flow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Cash Flow_17.0.17126.17806.app
2020-10-19T06:17:32.7309317Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Cash Flow_17.0.17126.17806.app
2020-10-19T06:17:32.7325255Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:34.5751389Z Synchronizing Tests-Cash Flow on tenant default
2020-10-19T06:17:34.6868570Z Installing Tests-Cash Flow on tenant default
2020-10-19T06:17:34.6948426Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:34.8151337Z App successfully published
2020-10-19T06:17:34.8351940Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:35.3731986Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Cost Accounting_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app
2020-10-19T06:17:36.0338343Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Cost Accounting_17.0.17126.17806.app
2020-10-19T06:17:36.0440348Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:38.9374617Z Synchronizing Tests-Cost Accounting on tenant default
2020-10-19T06:17:39.0501892Z Installing Tests-Cost Accounting on tenant default
2020-10-19T06:17:39.0580137Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:39.1759775Z App successfully published
2020-10-19T06:17:39.2001351Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:39.9245563Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-CRM integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-CRM integration_17.0.17126.17806.app
2020-10-19T06:17:40.5821254Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-CRM integration_17.0.17126.17806.app
2020-10-19T06:17:40.5959931Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:44.5195402Z Synchronizing Tests-CRM integration on tenant default
2020-10-19T06:17:45.8623012Z Installing Tests-CRM integration on tenant default
2020-10-19T06:17:45.8638176Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:46.1265888Z App successfully published
2020-10-19T06:17:46.1492658Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:46.8637915Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Data Exchange_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Data Exchange_17.0.17126.17806.app
2020-10-19T06:17:47.5063149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Data Exchange_17.0.17126.17806.app
2020-10-19T06:17:47.5156590Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:50.3323745Z Synchronizing Tests-Data Exchange on tenant default
2020-10-19T06:17:50.4580682Z Installing Tests-Data Exchange on tenant default
2020-10-19T06:17:50.4587150Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:50.5780091Z App successfully published
2020-10-19T06:17:50.5970098Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:51.2136186Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Dimension_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Dimension_17.0.17126.17806.app
2020-10-19T06:17:51.8765147Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Dimension_17.0.17126.17806.app
2020-10-19T06:17:51.8863312Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:55.5531940Z Synchronizing Tests-Dimension on tenant default
2020-10-19T06:17:55.8923927Z Installing Tests-Dimension on tenant default
2020-10-19T06:17:55.8994799Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:56.7911744Z App successfully published
2020-10-19T06:17:56.8453444Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:17:57.3944076Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-ERM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-ERM_17.0.17126.17806.app
2020-10-19T06:17:58.0340554Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-ERM_17.0.17126.17806.app
2020-10-19T06:17:58.0589815Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:41.1198142Z Synchronizing Tests-ERM on tenant default
2020-10-19T06:18:41.3043666Z Installing Tests-ERM on tenant default
2020-10-19T06:18:41.3101943Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:47.7589237Z App successfully published
2020-10-19T06:18:47.7838840Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:48.5580571Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Fixed Asset_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app
2020-10-19T06:18:49.2140528Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Fixed Asset_17.0.17126.17806.app
2020-10-19T06:18:49.2236298Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:52.3412453Z Synchronizing Tests-Fixed Asset on tenant default
2020-10-19T06:18:52.4645631Z Installing Tests-Fixed Asset on tenant default
2020-10-19T06:18:52.4659319Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:52.6002318Z App successfully published
2020-10-19T06:18:52.6197778Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:53.3203266Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-General Journal_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-General Journal_17.0.17126.17806.app
2020-10-19T06:18:53.9555170Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-General Journal_17.0.17126.17806.app
2020-10-19T06:18:53.9652282Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:57.3120487Z Synchronizing Tests-General Journal on tenant default
2020-10-19T06:18:57.4393444Z Installing Tests-General Journal on tenant default
2020-10-19T06:18:57.4460823Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:58.7193379Z App successfully published
2020-10-19T06:18:58.7426002Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:18:59.2904378Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Graph_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Graph_17.0.17126.17806.app
2020-10-19T06:18:59.9221871Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Graph_17.0.17126.17806.app
2020-10-19T06:18:59.9335300Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:04.5317409Z Synchronizing Tests-Graph on tenant default
2020-10-19T06:19:04.6528352Z Installing Tests-Graph on tenant default
2020-10-19T06:19:04.6598658Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:04.7961552Z App successfully published
2020-10-19T06:19:04.8200432Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:05.5840743Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Integration_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Integration_17.0.17126.17806.app
2020-10-19T06:19:06.2444600Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Integration_17.0.17126.17806.app
2020-10-19T06:19:06.2480723Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:08.5077011Z Synchronizing Tests-Integration on tenant default
2020-10-19T06:19:08.6408757Z Installing Tests-Integration on tenant default
2020-10-19T06:19:08.6422595Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:08.9846724Z App successfully published
2020-10-19T06:19:09.0050077Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:09.6676942Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Invoicing_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Invoicing_17.0.17126.17806.app
2020-10-19T06:19:10.3406182Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Invoicing_17.0.17126.17806.app
2020-10-19T06:19:10.3512601Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:12.3578432Z Synchronizing Tests-Invoicing on tenant default
2020-10-19T06:19:12.4734415Z Installing Tests-Invoicing on tenant default
2020-10-19T06:19:12.4802864Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:13.2015820Z App successfully published
2020-10-19T06:19:13.2560661Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:13.9814116Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Job_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Job_17.0.17126.17806.app
2020-10-19T06:19:14.6462565Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Job_17.0.17126.17806.app
2020-10-19T06:19:14.6576008Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:19.6873031Z Synchronizing Tests-Job on tenant default
2020-10-19T06:19:20.0204014Z Installing Tests-Job on tenant default
2020-10-19T06:19:20.0286341Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:20.8212474Z App successfully published
2020-10-19T06:19:20.8645073Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:21.6478187Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Local_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Local_17.0.17126.17806.app
2020-10-19T06:19:22.3131796Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Local_17.0.17126.17806.app
2020-10-19T06:19:22.3289454Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:37.8556749Z Synchronizing Tests-Local on tenant default
2020-10-19T06:19:37.9834324Z Installing Tests-Local on tenant default
2020-10-19T06:19:37.9903558Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:39.2716110Z App successfully published
2020-10-19T06:19:39.3005648Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:40.0332901Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Misc_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Misc_17.0.17126.17806.app
2020-10-19T06:19:40.6609035Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Misc_17.0.17126.17806.app
2020-10-19T06:19:40.6772992Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:19:54.0325558Z Synchronizing Tests-Misc on tenant default
2020-10-19T06:19:54.3714369Z Installing Tests-Misc on tenant default
2020-10-19T06:19:54.3758856Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:00.4920216Z App successfully published
2020-10-19T06:20:00.5123307Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:01.0617808Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Permissions_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Permissions_17.0.17126.17806.app
2020-10-19T06:20:01.7092080Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Permissions_17.0.17126.17806.app
2020-10-19T06:20:01.7204125Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:02.7252806Z Synchronizing Tests-Permissions on tenant default
2020-10-19T06:20:03.0663505Z Installing Tests-Permissions on tenant default
2020-10-19T06:20:03.0730514Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:03.2521971Z App successfully published
2020-10-19T06:20:03.2718328Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:03.8037245Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Physical Inventory_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app
2020-10-19T06:20:04.4640474Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Physical Inventory_17.0.17126.17806.app
2020-10-19T06:20:04.4732656Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:05.3042497Z Synchronizing Tests-Physical Inventory on tenant default
2020-10-19T06:20:05.4534513Z Installing Tests-Physical Inventory on tenant default
2020-10-19T06:20:05.5210275Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:05.6377739Z App successfully published
2020-10-19T06:20:05.6592259Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:06.1964494Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Prepayment_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Prepayment_17.0.17126.17806.app
2020-10-19T06:20:06.8574063Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Prepayment_17.0.17126.17806.app
2020-10-19T06:20:06.8659352Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:07.2295344Z Synchronizing Tests-Prepayment on tenant default
2020-10-19T06:20:07.3577861Z Installing Tests-Prepayment on tenant default
2020-10-19T06:20:07.3642544Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:07.5151236Z App successfully published
2020-10-19T06:20:07.5387746Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:08.0605754Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Rapid Start_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Rapid Start_17.0.17126.17806.app
2020-10-19T06:20:08.7033688Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Rapid Start_17.0.17126.17806.app
2020-10-19T06:20:08.7137613Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:11.4611196Z Synchronizing Tests-Rapid Start on tenant default
2020-10-19T06:20:11.4611698Z Installing Tests-Rapid Start on tenant default
2020-10-19T06:20:11.4612408Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:11.4612924Z App successfully published
2020-10-19T06:20:11.4613313Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:11.6014191Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Report_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Report_17.0.17126.17806.app
2020-10-19T06:20:12.2422612Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Report_17.0.17126.17806.app
2020-10-19T06:20:12.2514348Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:15.1231651Z Synchronizing Tests-Report on tenant default
2020-10-19T06:20:15.2406825Z Installing Tests-Report on tenant default
2020-10-19T06:20:15.2493005Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:16.5285919Z App successfully published
2020-10-19T06:20:16.5542449Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:17.0873272Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Resource_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Resource_17.0.17126.17806.app
2020-10-19T06:20:17.7190301Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Resource_17.0.17126.17806.app
2020-10-19T06:20:17.7293910Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:21.1542782Z Synchronizing Tests-Resource on tenant default
2020-10-19T06:20:21.2755142Z Installing Tests-Resource on tenant default
2020-10-19T06:20:21.2823414Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:21.6248777Z App successfully published
2020-10-19T06:20:21.6498948Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:22.1951118Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Reverse_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Reverse_17.0.17126.17806.app
2020-10-19T06:20:22.8221149Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Reverse_17.0.17126.17806.app
2020-10-19T06:20:22.8311066Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:24.0924719Z Synchronizing Tests-Reverse on tenant default
2020-10-19T06:20:24.2083983Z Installing Tests-Reverse on tenant default
2020-10-19T06:20:24.2151297Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:24.6743448Z App successfully published
2020-10-19T06:20:24.7342279Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:20:25.2777404Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SCM_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SCM_17.0.17126.17806.app
2020-10-19T06:20:25.9250670Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SCM_17.0.17126.17806.app
2020-10-19T06:20:25.9374978Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:35.4595594Z Synchronizing Tests-SCM on tenant default
2020-10-19T06:21:35.6068318Z Installing Tests-SCM on tenant default
2020-10-19T06:21:35.6136677Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:42.1122789Z App successfully published
2020-10-19T06:21:42.1361488Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:42.9017496Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMB_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SMB_17.0.17126.17806.app
2020-10-19T06:21:43.5227433Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SMB_17.0.17126.17806.app
2020-10-19T06:21:43.5326994Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:48.8041696Z Synchronizing Tests-SMB on tenant default
2020-10-19T06:21:48.9340856Z Installing Tests-SMB on tenant default
2020-10-19T06:21:48.9346977Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:49.5702231Z App successfully published
2020-10-19T06:21:49.5890662Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:50.2763649Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-SMTP_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SMTP_17.0.17126.17806.app
2020-10-19T06:21:50.9343407Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-SMTP_17.0.17126.17806.app
2020-10-19T06:21:50.9428238Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:51.2168839Z Synchronizing Tests-SMTP on tenant default
2020-10-19T06:21:51.3371247Z Installing Tests-SMTP on tenant default
2020-10-19T06:21:51.3453780Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:51.8616862Z App successfully published
2020-10-19T06:21:51.8811149Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:52.5044345Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Upgrade_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Upgrade_17.0.17126.17806.app
2020-10-19T06:21:53.2234247Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Upgrade_17.0.17126.17806.app
2020-10-19T06:21:53.2331957Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:53.4247347Z Synchronizing Tests-Upgrade on tenant default
2020-10-19T06:21:53.6445653Z Installing Tests-Upgrade on tenant default
2020-10-19T06:21:53.6515685Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:53.9729758Z App successfully published
2020-10-19T06:21:53.9965596Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:54.5716074Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-User_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-User_17.0.17126.17806.app
2020-10-19T06:21:55.1940388Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-User_17.0.17126.17806.app
2020-10-19T06:21:55.2035392Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:56.3737971Z Synchronizing Tests-User on tenant default
2020-10-19T06:21:56.4955152Z Installing Tests-User on tenant default
2020-10-19T06:21:56.5021246Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:56.6876009Z App successfully published
2020-10-19T06:21:56.7104229Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:21:57.4273565Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-VAT_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-VAT_17.0.17126.17806.app
2020-10-19T06:21:58.0674345Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-VAT_17.0.17126.17806.app
2020-10-19T06:21:58.0780440Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:03.2113674Z Synchronizing Tests-VAT on tenant default
2020-10-19T06:22:03.2114034Z Installing Tests-VAT on tenant default
2020-10-19T06:22:03.2114346Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:03.2114675Z App successfully published
2020-10-19T06:22:03.2114962Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:03.8163339Z Copy from container hostedagent-cgk-eli-current (C:\Applications.IT\Microsoft_Tests-Workflow_17.0.17126.17806.app) to C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Workflow_17.0.17126.17806.app
2020-10-19T06:22:04.4722207Z Publishing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current\_Microsoft_Tests-Workflow_17.0.17126.17806.app
2020-10-19T06:22:04.4849102Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:10.3775285Z Synchronizing Tests-Workflow on tenant default
2020-10-19T06:22:10.4998077Z Installing Tests-Workflow on tenant default
2020-10-19T06:22:10.5064594Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:11.2636926Z App successfully published
2020-10-19T06:22:11.2645773Z TestToolkit successfully imported
2020-10-19T06:22:11.3167479Z 
2020-10-19T06:22:11.3177384Z Importing Test Toolkit took 338 seconds
2020-10-19T06:22:11.3184258Z    _____                      _ _ _               _           _                           
2020-10-19T06:22:11.3196473Z   / ____|                    (_) (_)             | |         | |                          
2020-10-19T06:22:11.3201590Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _  | |_ ___ ___| |_    __ _ _ __  _ __  ___ 
2020-10-19T06:22:11.3210047Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` | | __/ _ \ __| __|  / _` | '_ \| '_ \/ __|
2020-10-19T06:22:11.3216205Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | |_  __\__ \ |_  | (_| | |_) | |_) \__ \
2020-10-19T06:22:11.3226040Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__\___|___/\__|  \__,_| .__/| .__/|___/
2020-10-19T06:22:11.3232608Z                        | |                 __/ |                         | |   | |        
2020-10-19T06:22:11.3239142Z                        |_|                |___/                          |_|   |_|        
2020-10-19T06:22:11.3327581Z Using Version 1.0.404.0
2020-10-19T06:22:12.1944689Z Using Symbols Folder: D:\a\1\s\.packages
2020-10-19T06:22:12.7865649Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:12.8175822Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:12.9882200Z Downloading symbols: Microsoft_Library Assert_17.0.17126.17806.app
2020-10-19T06:22:12.9889818Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Assert&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:13.4415626Z Downloading symbols: Microsoft_Any_17.0.17126.17806.app
2020-10-19T06:22:13.4422796Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:13.7710111Z Downloading symbols: Microsoft_Test Runner_17.0.17126.17806.app
2020-10-19T06:22:13.7726333Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Test Runner&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:14.1556164Z Downloading symbols: Microsoft_System Application Test Library_17.0.17126.17806.app
2020-10-19T06:22:14.1599654Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=System Application Test Library&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:14.5192434Z Adding dependency to System Application from Microsoft
2020-10-19T06:22:14.5214800Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.17126.17806.app
2020-10-19T06:22:14.5241656Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:14.9223082Z Adding dependency to Library Variable Storage from Microsoft
2020-10-19T06:22:14.9265553Z Downloading symbols: Microsoft_Library Variable Storage_17.0.17126.17806.app
2020-10-19T06:22:14.9277007Z Url : http://172.17.95.183:7049/BC/dev/packages?publisher=Microsoft&appName=Library Variable Storage&versionText=17.0.0.0&tenant=default
2020-10-19T06:22:15.2511068Z Compiling...
2020-10-19T06:22:15.2517689Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app" /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\170\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\170\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2020-10-19T06:22:29.3395267Z Microsoft (R) AL Compiler version 6.0.5.10826
2020-10-19T06:22:29.3400838Z Copyright (C) Microsoft Corporation. All rights reserved
2020-10-19T06:22:29.3403913Z 
2020-10-19T06:22:29.3411005Z Compilation started for project 'Electronic Invoicing - Test' containing '8' files at '6:22:16.18'.
2020-10-19T06:22:29.3415548Z 
2020-10-19T06:22:29.3421454Z c:\sources\test\data\TAB50133.navxdata(1,1): info AL1027: The file at location 'c:\sources\test\data\TAB50133.navxdata' matches the definition for 'TableData'.
2020-10-19T06:22:29.3425117Z 
2020-10-19T06:22:29.3431379Z Compilation ended at '6:22:29.278'.
2020-10-19T06:22:29.3434565Z 
2020-10-19T06:22:29.3448534Z D:\a\1\s\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app successfully created in 18 seconds
2020-10-19T06:22:29.3513151Z Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app copied to D:\a\1\s\.packages
2020-10-19T06:22:29.3611251Z 
2020-10-19T06:22:29.3614943Z Compiling apps, test apps and importing test toolkit took 408 seconds
2020-10-19T06:22:29.3620606Z 
2020-10-19T06:22:29.3625938Z   _____       _     _ _     _     _                                        
2020-10-19T06:22:29.3632934Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2020-10-19T06:22:29.3639516Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2020-10-19T06:22:29.3645941Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2020-10-19T06:22:29.3652772Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2020-10-19T06:22:29.3661073Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2020-10-19T06:22:29.3664378Z                                            __/ |          | |   | |        
2020-10-19T06:22:29.3671187Z                                           |___/           |_|   |_|        
2020-10-19T06:22:29.3675037Z 
2020-10-19T06:22:29.4752827Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:30.9443119Z Publishing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app
2020-10-19T06:22:30.9583874Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:34.5072397Z Synchronizing Electronic Invoicing on tenant default
2020-10-19T06:22:36.4215117Z Installing Electronic Invoicing on tenant default
2020-10-19T06:22:36.4284244Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:22:38.9557299Z App successfully published
2020-10-19T06:22:39.2917828Z Publishing c:\sources\.output\Cegeka S.p.A._Electronic Invoicing - Test_1.0.404.0.app
2020-10-19T06:22:39.3013067Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:23:37.7736617Z Synchronizing Electronic Invoicing - Test on tenant default
2020-10-19T06:23:38.0054958Z Installing Electronic Invoicing - Test on tenant default
2020-10-19T06:23:38.0109011Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:23:49.4185299Z App successfully published
2020-10-19T06:23:49.4199186Z 
2020-10-19T06:23:49.4207469Z Publishing apps took 80 seconds
2020-10-19T06:23:49.4212151Z 
2020-10-19T06:23:49.4218161Z   _____                   _               _______       _       
2020-10-19T06:23:49.4231658Z  |  __ \                 (_)             |__   __|     | |      
2020-10-19T06:23:49.4236894Z  | |__) |   _ _ __  _ __  _ _ __   __ _     | | ___ ___| |_ ___ 
2020-10-19T06:23:49.4243794Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |    | |/ _ \ __| __/ __|
2020-10-19T06:23:49.4285105Z  | | \ \ |_| | | | | | | | | | | | (_| |    | |  __\__ \ |_\__ \
2020-10-19T06:23:49.4293201Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, |    |_|\___|___/\__|___/
2020-10-19T06:23:49.4299000Z                                    __/ |                        
2020-10-19T06:23:49.4305748Z                                   |___/                         
2020-10-19T06:23:49.4325301Z 
2020-10-19T06:27:38.2994513Z UriToShow : BC/cs.DynamicFileHandler.axd?form=D&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=rzwophyazzvethn1b4hq0mfk
2020-10-19T06:27:38.3000977Z UriToShow : BC/cs.DynamicFileHandler.axd?form=E&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=av5iw2fxunifzshqjiybdbde
2020-10-19T06:27:38.3011384Z UriToShow : BC/cs.DynamicFileHandler.axd?form=F&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=ntwpvt5tp4omopmh5muffihu
2020-10-19T06:27:38.3080624Z UriToShow : BC/cs.DynamicFileHandler.axd?form=10&sessionid=vey123vdpvpqezdz5sffspi0DEFAULTSR637386854380155007FIN&type=File&fid=sxmrjts2ppktzayurth53nes
2020-10-19T06:27:38.4028437Z   Codeunit 50133 CGK ELI Test WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:27:38.4730976Z Success (139.422 seconds)
2020-10-19T06:27:38.4851553Z     Testfunction ELI_00000_CORModuleSetupCheck Success (0.024 seconds)
2020-10-19T06:27:38.4937375Z     Testfunction ELI_00000_CheckFeature Success (2.17 seconds)
2020-10-19T06:27:38.5058839Z     Testfunction ELI_00000_RELIntegrationCheck Success (5.43 seconds)
2020-10-19T06:27:38.5209587Z     Testfunction ELI_00328_CheckNewFields Success (9.32 seconds)
2020-10-19T06:27:38.5217401Z     Testfunction ELI_00329_Login Success (1.267 seconds)
2020-10-19T06:27:38.5227408Z     Testfunction ELI_00330_AddInvoiceWithInvalidData Success (40.537 seconds)
2020-10-19T06:27:38.5244970Z     Testfunction ELI_00331_SendInvoiceWithInvalidData Success (1.273 seconds)
2020-10-19T06:27:38.5248951Z     Testfunction ELI_00332_CheckRejectedStatus Success (0.92 seconds)
2020-10-19T06:27:38.5265906Z     Testfunction ELI_00333_CheckRejectedNotes Success (0.924 seconds)
2020-10-19T06:27:38.5276423Z     Testfunction ELI_00334_DownloadXml Success (0.864 seconds)
2020-10-19T06:27:38.5299425Z     Testfunction ELI_00335_ShowDocFromEIADashboard Success (1.58 seconds)
2020-10-19T06:27:38.5315525Z     Testfunction ELI_00336_EIAAddRejectedDoc Success (1.27 seconds)
2020-10-19T06:27:38.5324015Z     Testfunction ELI_00337_AddInvoiceWithInvalidDataWithPDF Success (9.773 seconds)
2020-10-19T06:27:38.5359617Z     Testfunction ELI_00339_EIACheckStatusTransferred Success (1.283 seconds)
2020-10-19T06:27:38.5366785Z     Testfunction ELI_00340_EIACheckStatusTransferred_CreditMemo Success (1.87 seconds)
2020-10-19T06:27:38.5376944Z     Testfunction ELI_00341_EIACheckStatusTransferred_CustomerWithPec Success (0.95 seconds)
2020-10-19T06:27:38.5383280Z     Testfunction ELI_00342_EIPImportFromIx Success (1.407 seconds)
2020-10-19T06:27:38.5406911Z     Testfunction ELI_00343_EIPCreatePreview Success (1.337 seconds)
2020-10-19T06:27:38.5411517Z     Testfunction ELI_00344_EIPCreateDocument Success (2.956 seconds)
2020-10-19T06:27:38.5424626Z     Testfunction ELI_00345_EIPPostDocument Success (10.616 seconds)
2020-10-19T06:27:38.5440762Z     Testfunction ELI_00346_EIPDownloadXml Success (0.983 seconds)
2020-10-19T06:27:38.5448320Z     Testfunction ELI_00347_EIPDownloadPdf Success (0.92 seconds)
2020-10-19T06:27:38.5471985Z     Testfunction ELI_00348_EIPDownloadHtml Success (0.907 seconds)
2020-10-19T06:27:38.5485939Z     Testfunction ELI_00349_EIPDocumentMissingVendor Success (0.916 seconds)
2020-10-19T06:27:38.5499946Z     Testfunction ELI_00350_EIPDocumentMissingVendorCorrection Success (0.996 seconds)
2020-10-19T06:27:38.5518703Z     Testfunction ELI_00351_EIPDocumentDuplicateVatRegNo Success (1.64 seconds)
2020-10-19T06:27:38.5535696Z     Testfunction ELI_00352_EIPImportFromDir Success (0.877 seconds)
2020-10-19T06:27:38.5556164Z     Testfunction ELI_00353_EIPDuplicatePreview Success (1.05 seconds)
2020-10-19T06:27:38.5562584Z     Testfunction ELI_00354_EIPDuplicatePreview Success (1.313 seconds)
2020-10-19T06:27:38.5573701Z     Testfunction ELI_00355_EIPDuplicatePreview Success (2.314 seconds)
2020-10-19T06:27:38.5698862Z     Testfunction ELI_00356_EIPDocumentVendorPaymentNotMatchingXml Success (1.227 seconds)
2020-10-19T06:27:38.5950721Z     Testfunction ELI_00357_EIPDocumetProductNotMatchingXml Success (1.154 seconds)
2020-10-19T06:27:38.5999968Z     Testfunction ELI_00360_EIPCreatePreviewConfirmWarnings Success (2.24 seconds)
2020-10-19T06:27:38.6703788Z     Testfunction ELI_00361_EIPPurchaseReceiptMatching Success (4.154 seconds)
2020-10-19T06:27:38.6714194Z     Testfunction ELI_00362_EIPPurchaseReceiptMatching Success (2.5 seconds)
2020-10-19T06:27:38.6958796Z     Testfunction ELI_00364_EIPPurchaseReceiptMatching Success (2.443 seconds)
2020-10-19T06:27:38.6967463Z     Testfunction ELI_00380_EIACheckStatusTransferred_ServiceInvoice Success (8.01 seconds)
2020-10-19T06:27:38.6984444Z     Testfunction ELI_00381_EIACheckStatusTransferred_ServiceCM Success (1.157 seconds)
2020-10-19T06:27:38.6995625Z     Testfunction ELI_00382_EIPCMMatchingReturnShipment Success (8.85 seconds)
2020-10-19T06:27:39.0532301Z 
2020-10-19T06:27:39.0562156Z Running tests took 230 seconds
2020-10-19T06:27:39.0608230Z    _____                    _          ____        _ _     _                 _   _  __           _       
2020-10-19T06:27:39.0616589Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2020-10-19T06:27:39.0677808Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2020-10-19T06:27:39.0710846Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2020-10-19T06:27:39.0715069Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2020-10-19T06:27:39.0721730Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2020-10-19T06:27:39.0728242Z              | |     __/ |                                                                               
2020-10-19T06:27:39.0736626Z              |_|    |___/                                                                                
2020-10-19T06:27:39.2218840Z Getting Runtime Package for Cegeka S.p.A._Electronic Invoicing_1.0.404.0.app
2020-10-19T06:27:39.7176573Z WARNING: This license is not compatible with this version of Business Central.
2020-10-19T06:27:42.8953009Z Copying runtime package to build artifact
2020-10-19T06:27:42.9091724Z 
2020-10-19T06:27:42.9096164Z Copying to Build Artifacts took 4 seconds
2020-10-19T06:27:42.9101606Z 
2020-10-19T06:27:42.9112158Z   _____                           _                _____            _        _                 
2020-10-19T06:27:42.9124051Z  |  __ \                         (_)              / ____|          | |      (_)                
2020-10-19T06:27:42.9127871Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2020-10-19T06:27:42.9160010Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2020-10-19T06:27:42.9164613Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2020-10-19T06:27:42.9173171Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2020-10-19T06:27:42.9177164Z                                            __/ |                                               
2020-10-19T06:27:42.9190339Z                                           |___/                                                
2020-10-19T06:27:42.9191130Z 
2020-10-19T06:27:44.1999245Z Removing container hostedagent-cgk-eli-current
2020-10-19T06:27:45.9821778Z Removing hostedagent-cgk-eli-current from host hosts file
2020-10-19T06:27:46.2140830Z Removing hostedagent-cgk-eli-current-* from host hosts file
2020-10-19T06:27:46.2948331Z Removing C:\ProgramData\BcContainerHelper\Extensions\hostedagent-cgk-eli-current
2020-10-19T06:27:46.3670640Z 
2020-10-19T06:27:46.3686318Z Removing container took 3 seconds
2020-10-19T06:27:46.3689187Z 
2020-10-19T06:27:46.3698438Z AL Pipeline finished in 1655 seconds
2020-10-19T06:27:46.8417970Z ##[section]Finishing: Run Pipeline
freddydk commented 4 years ago

I can see that when not specifying testframework nor testlibraries - it imports test libraries + all tests. That is not by design - will fix that.

-doNotRunTests is the way to avoid test runs.

Pellic commented 4 years ago

Yes, that is the point! And if I specify both parameters the task fail exiting the title issue. So for now, the only way to complete the job and run the tests is to assign false to both the parameters. Thanks again for the precious work and support

freddydk commented 4 years ago

Fix shipped in 1.0.10