Closed Pellic closed 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.
I Freddy, I have just try to run our pipeline but I get in to the same error.
error: (404) Not Found." Thanks in advance for the support
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?
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:
stage: zero displayName: zero pool: name: Azure Pipelines vmImage: Windows-2019 jobs:
stage: one displayName: one pool: name: Azure Pipelines vmImage: Windows-2019 dependsOn: zero condition: succeeded() variables:
group: CGKVariables jobs:
job: Build timeoutInMinutes: 300 variables: build.clean: all platform: x64 version: 'current' appVersion: '2.0' appBuild: $(Build.BuildID) appRevision: 0 createRuntimePackages: True skipComponentGovernanceDetection: True steps:
task: PowerShell@2 displayName: 'Set BuildNumber' inputs: targetType: inline script: 'Write-Host "##vso[build.updatebuildnumber]$(appVersion).$(appBuild).$(appRevision)"'
task: PowerShell@2 displayName: 'Install BcContainerHelper' inputs: targetType: filePath filePath: 'scripts\Install-BcContainerHelper.ps1' failOnStderr: true
task: PowerShell@2 displayName: 'Download License File (Cegeka)' env: StorageAccount: $(StorageAccount) StorageKey: $(StorageKey) ShareName: $(ShareName) RemotePath: $(remoteLicenseFile) LocalPath: $(LicenseFile) inputs: targetType: filePath filePath: 'scripts\Download-BlobStorage.ps1' failOnStderr: true
task: PowerShell@2 displayName: 'Download Certificate File (Cegeka)' env: StorageAccount: $(StorageAccount) StorageKey: $(StorageKey) ShareName: $(ShareName) RemotePath: $(remoteCodeSignCertPfxFile) LocalPath: $(CodeSignCertPfxFile) inputs: targetType: filePath filePath: 'scripts\Download-BlobStorage.ps1' failOnStderr: true
task: PowerShell@2 displayName: 'Download sources and dependencies (Cegeka)' env: DevOpsToken: '$(DevOpsToken)' Password: $(Password) inputs: targetType: filePath filePath: 'scripts\DownloadSourcesAndDependencies.ps1' arguments: '-appFolders "app" ' failOnStderr: true
task: PowerShell@2 displayName: 'Run Pipeline' env: InsiderSasToken: '$(InsiderSasToken)' LicenseFile: '$(LicenseFile)' CodeSignCertPfxFile: '$(CodeSignCertPfxFile)' CodeSignCertPfxPassword: '$(CodeSignCertPfxPassword)' inputs: targetType: filePath filePath: 'scripts\DevOps-Pipeline.ps1' arguments: '-version "$(version)" -appBuild $(appBuild) -appRevision $(appRevision)' failOnStderr: true
task: PublishTestResults@2 displayName: 'Publish Test Results' condition: and(succeeded(),ne(variables['TestResults'],'')) inputs: testResultsFormat: JUnit testResultsFiles: '$(testResults)' failTaskOnFailedTests: true
task: PowerShell@2 displayName: 'Copy deployment scripts' inputs: targetType: inline script: 'Copy-Item -Path scripts\Install-BcContainerHelper.ps1 -Destination $(Build.ArtifactStagingDirectory); Copy-Item -Path scripts\Save-AzureStorageArtifact.ps1 -Destination $(Build.ArtifactStagingDirectory); Copy-Item -Path scripts\Deploy-App-SandBox.ps1 -Destination $(Build.ArtifactStagingDirectory)' failOnStderr: true
task: PowerShell@2 displayName: 'Copy deployment files' inputs: targetType: inline script: 'Copy-Item -Path scripts\settings.json -Destination $(Build.ArtifactStagingDirectory);Copy-Item -Path app\app.json -Destination "$(Build.ArtifactStagingDirectory)\Apps"' failOnStderr: true
task: PublishBuildArtifacts@1 displayName: 'Publish Artifacts' inputs: PathtoPublish: '$(Build.ArtifactStagingDirectory)' ArtifactName: output
task: PowerShell@2 displayName: 'Cleanup' condition: always() inputs: targetType: filePath filePath: 'scripts\Cleanup.ps1' failOnStderr: false
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?
Run-AlPipeline has a parameter called -doNotRunTests test framework and test libraries determines which test apps are getting installed.
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
Possibly you are reusing an image where the apps are already installed?
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
It is very hard to see the output when it isn't formatted as "Insert Code"
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`
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
`
no way ! I'm trying with brackets, quotes, apostrophe...
``
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
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.
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
Fix shipped in 1.0.10
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"
Full output of scripts
Screenshots not applicable
Additional context