microsoft / navcontainerhelper

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

##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them #1979

Closed GreatScott000 closed 3 years ago

GreatScott000 commented 3 years ago

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

Describe the issue Getting the above "error" in an pipeline that otherwise completes successfully.

Scripts used to create container and cause the issue **DevOps-Pipeline.ps1

Param(
    [Parameter(Mandatory=$false)]
    [ValidateSet('AzureDevOps','GithubActions','GitLab')]
    [string] $environment = 'AzureDevOps',
    [Parameter(Mandatory=$true)]
    [string] $version,
    [Parameter(Mandatory=$false)]
    [int] $appBuild = 0,
    [Parameter(Mandatory=$false)]
    [int] $appRevision = 0
)

if ($environment -eq "AzureDevOps") {
    $buildArtifactFolder = $ENV:BUILD_ARTIFACTSTAGINGDIRECTORY
}
elseif ($environment -eq "GitHubActions") {
    $buildArtifactFolder = Join-Path $ENV:GITHUB_WORKSPACE "output"
    New-Item $buildArtifactFolder -ItemType Directory | Out-Null
}

$baseFolder = (Get-Item (Join-Path $PSScriptRoot "..")).FullName
. (Join-Path $PSScriptRoot "Read-Settings.ps1") -environment $environment -version $version
. (Join-Path $PSScriptRoot "Install-BcContainerHelper.ps1") -bcContainerHelperVersion $bcContainerHelperVersion -genericImageName $genericImageName

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

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

Run-AlPipeline @params `
    -pipelinename $pipelineName `
    -containerName $containerName `
    -imageName $imageName `
    -artifact $artifact.replace('{INSIDERSASTOKEN}',$insiderSasToken) `
    -memoryLimit $memoryLimit `
    -baseFolder $baseFolder `
    -licenseFile $LicenseFile `
    -installApps $installApps `
    -previousApps $previousApps `
    -appFolders $appFolders `
    -testFolders $testFolders `
    -doNotRunTests:$doNotRunTests `
    -testResultsFile $testResultsFile `
    -testResultsFormat 'JUnit' `
    -installTestFramework:$installTestFramework `
    -installTestLibraries:$installTestLibraries `
    -installPerformanceToolkit:$installPerformanceToolkit `
    -enableCodeCop:$enableCodeCop `
    -enableAppSourceCop:$enableAppSourceCop `
    -enablePerTenantExtensionCop:$enablePerTenantExtensionCop `
    -enableUICop:$enableUICop `
    -azureDevOps:($environment -eq 'AzureDevOps') `
    -gitLab:($environment -eq 'GitLab') `
    -gitHubActions:($environment -eq 'GitHubActions') `
    -AppSourceCopMandatoryAffixes $appSourceCopMandatoryAffixes `
    -AppSourceCopSupportedCountries $appSourceCopSupportedCountries `
    -additionalCountries $additionalCountries `
    -buildArtifactFolder $buildArtifactFolder `
    -CreateRuntimePackages:$CreateRuntimePackages `
    -appBuild $appBuild -appRevision $appRevision `
    -rulesetFile $rulesetfile `
    -vsixFile (Get-LatestAlLanguageExtensionUrl)

if ($environment -eq 'AzureDevOps') {
    Write-Host "##vso[task.setvariable variable=TestResults]$allTestResults"
}

**YML

trigger:
- main

pool:
  name: default

variables:
- group: BuildVariables

jobs:
- job: Build
  timeoutInMinutes: 300
  variables:
    build.clean: all
    platform: x64
    version: 'ci'
    appVersion: '17.0'
    appBuild: $(Build.BuildID)
    appRevision: 0
    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: 'Run Pipeline'
    env:
      InsiderSasToken: '$(InsiderSasToken)'
      LicenseFile: '$(LicenseFile)'
      CodeSignCertPfxFile: '$(CodeSignCertPfxFile)'
      CodeSignCertPfxPassword: '$(CodeSignCertPfxPassword)'
    inputs:
      targetType: filePath
      filePath: 'scripts\DevOps-Pipeline.ps1'
      arguments: '-environment "AzureDevOps" -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: 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'
      arguments: '-environment "AzureDevOps"'
      failOnStderr: false

Full output of scripts

2021-06-29T14:38:34.9885104Z ##[section]Starting: Run Pipeline
2021-06-29T14:38:35.0150363Z ==============================================================================
2021-06-29T14:38:35.0150771Z Task         : PowerShell
2021-06-29T14:38:35.0151117Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-06-29T14:38:35.0151423Z Version      : 2.186.0
2021-06-29T14:38:35.0151872Z Author       : Microsoft Corporation
2021-06-29T14:38:35.0152210Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-06-29T14:38:35.0152607Z ==============================================================================
2021-06-29T14:38:35.6948540Z Generating script.
2021-06-29T14:38:35.6982431Z Formatted command: . 'D:\agent-evolveims\_work\2\s\scripts\DevOps-Pipeline.ps1' -environment "AzureDevOps" -version "ci" -appBuild 457 -appRevision 0
2021-06-29T14:38:35.7216997Z ========================== Starting Command Output ===========================
2021-06-29T14:38:35.7374557Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\agent-evolveims\_work\_temp\fe0382f4-2776-44b9-a6de-9c9356e29835.ps1'"
2021-06-29T14:38:36.0819752Z Set artifact = https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-06-29T14:38:36.0823861Z Set pipelineName = vect001-ci
2021-06-29T14:38:36.0827658Z Set containerName = jtsdesktop-vect001-ci
2021-06-29T14:38:36.0989180Z Set installApps = ''
2021-06-29T14:38:36.1004431Z Set previousApps = 'https://tinyurl.com/22ntvgbk'
2021-06-29T14:38:36.1019746Z Set appSourceCopMandatoryAffixes = 'iMS'
2021-06-29T14:38:36.1036146Z Set appSourceCopSupportedCountries = 'gb'
2021-06-29T14:38:36.1051935Z Set appFolders = 'Legacy,LegacyUTK'
2021-06-29T14:38:36.1069328Z Set testFolders = ''
2021-06-29T14:38:36.1092105Z Set memoryLimit = '6G'
2021-06-29T14:38:36.1109817Z Set additionalCountries = ''
2021-06-29T14:38:36.1125944Z Set genericImageName = ''
2021-06-29T14:38:36.1141422Z Set vaultNameForLocal = 'evolveAppVault'
2021-06-29T14:38:36.1156512Z Set bcContainerHelperVersion = 'Latest'
2021-06-29T14:38:36.1260347Z Set installTestFramework = True
2021-06-29T14:38:36.1286534Z Set installTestLibraries = True
2021-06-29T14:38:36.1302466Z Set installPerformanceToolkit = False
2021-06-29T14:38:36.1318001Z Set enableCodeCop = True
2021-06-29T14:38:36.1333379Z Set enableAppSourceCop = True
2021-06-29T14:38:36.1349061Z Set enablePerTenantExtensionCop = False
2021-06-29T14:38:36.1364533Z Set enableUICop = True
2021-06-29T14:38:36.1379801Z Set doNotSignApps = True
2021-06-29T14:38:36.1385052Z Set doNotRunTests = False
2021-06-29T14:38:36.1401305Z Set cacheImage = True
2021-06-29T14:38:36.1421336Z Set CreateRuntimePackages = True
2021-06-29T14:38:36.1466706Z Set rulesetfile = '_RuleSets\ims.ruleset.json'
2021-06-29T14:38:36.1481438Z Set appPackages = '.packages'
2021-06-29T14:38:36.7219624Z Setting hostHelperFolder = d:\bccontainerhelper
2021-06-29T14:38:36.7249528Z Setting use7zipIfAvailable = true
2021-06-29T14:38:36.7269817Z Setting bcartifactsCacheFolder = d:\bcartifacts.cache
2021-06-29T14:38:36.8211346Z BcContainerHelper version 2.0.14
2021-06-29T14:38:38.5429182Z   _____                               _                
2021-06-29T14:38:38.5432675Z  |  __ \                             | |               
2021-06-29T14:38:38.5436124Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2021-06-29T14:38:38.5439485Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2021-06-29T14:38:38.5442836Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2021-06-29T14:38:38.5446152Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2021-06-29T14:38:38.5448037Z 
2021-06-29T14:38:38.5451390Z Pipeline name               vect001-ci
2021-06-29T14:38:38.5454756Z Container name              jtsdesktop-vect001-ci
2021-06-29T14:38:38.5458012Z Image name                  bcimage
2021-06-29T14:38:38.5461697Z ArtifactUrl                 https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-06-29T14:38:38.5465082Z SasToken                    Not Specified
2021-06-29T14:38:38.5468456Z BcAuthContext               Not Specified
2021-06-29T14:38:38.5473450Z Environment                 
2021-06-29T14:38:38.5479965Z ReUseContainer              False
2021-06-29T14:38:38.5486273Z KeepContainer               False
2021-06-29T14:38:38.5596840Z Credential                  admin/Xumo6564
2021-06-29T14:38:38.6098060Z MemoryLimit                 6G
2021-06-29T14:38:38.6102957Z Enable Task Scheduler       False
2021-06-29T14:38:38.6109137Z Assign Premium Plan         False
2021-06-29T14:38:38.6115340Z Install Test Runner         False
2021-06-29T14:38:38.6121543Z Install Test Framework      True
2021-06-29T14:38:38.6127927Z Install Test Libraries      True
2021-06-29T14:38:38.6134237Z Install Perf. Toolkit       False
2021-06-29T14:38:38.6140377Z CopySymbolsFromContainer    False
2021-06-29T14:38:38.6146621Z enableCodeCop               True
2021-06-29T14:38:38.6152985Z enableAppSourceCop          True
2021-06-29T14:38:38.6159121Z enableUICop                 True
2021-06-29T14:38:38.6165363Z enablePerTenantExtensionCop False
2021-06-29T14:38:38.6172536Z escapeFromCops              False
2021-06-29T14:38:38.6179174Z useDefaultAppSourceRuleSet  False
2021-06-29T14:38:38.6185267Z rulesetFile                 D:\agent-evolveims\_work\2\s\_RuleSets\ims.ruleset.json
2021-06-29T14:38:38.6191688Z azureDevOps                 True
2021-06-29T14:38:38.6198346Z License file                Specified
2021-06-29T14:38:38.6206476Z CodeSignCertPfxFile         Not specified
2021-06-29T14:38:38.6212517Z TestResultsFile             D:\agent-evolveims\_work\2\s\TestResults.xml
2021-06-29T14:38:38.6218095Z TestResultsFormat           JUnit
2021-06-29T14:38:38.6243706Z AdditionalCountries         
2021-06-29T14:38:38.6249599Z PackagesFolder              D:\agent-evolveims\_work\2\s\.packages
2021-06-29T14:38:38.6255818Z OutputFolder                D:\agent-evolveims\_work\2\s\.output
2021-06-29T14:38:38.6261700Z BuildArtifactFolder         D:\agent-evolveims\_work\2\a
2021-06-29T14:38:38.6268829Z CreateRuntimePackages       True
2021-06-29T14:38:38.6275189Z AppBuild                    457
2021-06-29T14:38:38.6281657Z AppRevision                 0
2021-06-29T14:38:38.6288033Z Mandatory Affixes           iMS
2021-06-29T14:38:38.6293899Z Supported Countries         gb
2021-06-29T14:38:38.6297165Z Install Apps
2021-06-29T14:38:38.6300357Z - None
2021-06-29T14:38:38.6303590Z Install Test Apps
2021-06-29T14:38:38.6306769Z - None
2021-06-29T14:38:38.6309953Z Previous Apps
2021-06-29T14:38:38.6377090Z - https://tinyurl.com/22ntvgbk
2021-06-29T14:38:38.6380301Z Application folders
2021-06-29T14:38:38.6394202Z - D:\agent-evolveims\_work\2\s\Legacy
2021-06-29T14:38:38.6397728Z - D:\agent-evolveims\_work\2\s\LegacyUTK
2021-06-29T14:38:38.6402144Z Test application folders
2021-06-29T14:38:38.6404586Z - None
2021-06-29T14:38:38.6613299Z 
2021-06-29T14:38:38.6616757Z   _____       _ _ _                                          _        _                            
2021-06-29T14:38:38.6620107Z  |  __ \     | | (_)                                        (_)      (_)                           
2021-06-29T14:38:38.6623416Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2021-06-29T14:38:38.6626709Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2021-06-29T14:38:38.6629896Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2021-06-29T14:38:38.6633109Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2021-06-29T14:38:38.6636273Z                            __/ |   __/ |                                                 __/ |     
2021-06-29T14:38:38.6639925Z                           |___/   |___/                                                 |___/      
2021-06-29T14:38:38.6642522Z 
2021-06-29T14:38:39.4329884Z Pulling mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-29T14:38:41.8569385Z 
2021-06-29T14:38:41.8574683Z Pulling generic image took 3 seconds
2021-06-29T14:38:41.8717946Z 
2021-06-29T14:38:41.8721524Z    _____                _   _                               _        _                 
2021-06-29T14:38:41.8725273Z   / ____|              | | (_)                             | |      (_)                
2021-06-29T14:38:41.8729133Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-29T14:38:41.8732956Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-29T14:38:41.8737218Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-29T14:38:41.8741358Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-29T14:38:41.8745849Z                                      __/ |                                             
2021-06-29T14:38:41.8749989Z                                     |___/                                              
2021-06-29T14:38:41.8752253Z 
2021-06-29T14:38:42.5680933Z WARNING: Container name should not exceed 15 characters
2021-06-29T14:38:43.0534932Z BcContainerHelper is version 2.0.14
2021-06-29T14:38:43.0538262Z BcContainerHelper is running as administrator
2021-06-29T14:38:43.0547884Z Host is Microsoft Windows 10 Pro - 20H2
2021-06-29T14:38:43.2686660Z Docker Client Version is 20.10.6
2021-06-29T14:38:43.2697716Z Docker Server Version is 20.10.6
2021-06-29T14:38:43.8752357Z Fetching all docker images
2021-06-29T14:38:44.1270620Z Fetching all docker volumes
2021-06-29T14:38:44.3734625Z ArtifactUrl and ImageName specified
2021-06-29T14:38:44.6749593Z Building image bcimage:onprem-18.2.26217.26490-gb based on mcr.microsoft.com/businesscentral:10.0.19042.1052 with https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-06-29T14:38:44.6758632Z Pulling latest image mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-29T14:38:46.9305203Z 10.0.19042.1052: Pulling from businesscentral
2021-06-29T14:38:46.9751940Z Digest: sha256:19541ab987b7dcd9434ed9586b142eeb8667cfb97fedebb33709a3a3ea448d90
2021-06-29T14:38:46.9757782Z Status: Image is up to date for mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-29T14:38:47.0417138Z mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-29T14:38:47.3809368Z Generic Tag: 1.0.1.7
2021-06-29T14:38:47.6696004Z Container OS Version: 10.0.19042.1052 (20H2)
2021-06-29T14:38:47.6706369Z Host OS Version: 10.0.19042.1052 (20H2)
2021-06-29T14:38:47.6730556Z Using process isolation
2021-06-29T14:38:47.7039994Z Using license file ***
2021-06-29T14:38:47.7121425Z Downloading d:\bcartifacts.cache\jxz1in2q.mxy\my\license.flf
2021-06-29T14:38:47.9617455Z Files in d:\bcartifacts.cache\jxz1in2q.mxy\my:
2021-06-29T14:38:47.9755878Z - license.flf
2021-06-29T14:38:47.9788596Z Copying Platform Artifacts
2021-06-29T14:39:46.2000509Z Copying Database
2021-06-29T14:39:52.9227415Z Copying Licensefile
2021-06-29T14:39:52.9489808Z Copying ConfigurationPackages
2021-06-29T14:39:53.1487930Z Copying Applications
2021-06-29T14:40:08.5338682Z d:\bcartifacts.cache\jxz1in2q.mxy
2021-06-29T14:40:31.1262180Z Sending build context to Docker daemon  1.568GB
2021-06-29T14:40:31.1264138Z 
2021-06-29T14:40:31.2244191Z Step 1/6 : FROM mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-29T14:40:31.2248488Z  ---> 606484f34c35
2021-06-29T14:40:31.2252774Z Step 2/6 : ENV DatabaseServer=localhost DatabaseInstance=SQLEXPRESS DatabaseName=CRONUS IsBcSandbox=N artifactUrl=https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb filesOnly=False
2021-06-29T14:40:31.2256286Z  ---> Using cache
2021-06-29T14:40:31.2259969Z  ---> 79c2bb8a6f0c
2021-06-29T14:40:31.2263819Z Step 3/6 : COPY my /run/
2021-06-29T14:40:43.1549136Z  ---> ad8a81ba2734
2021-06-29T14:40:43.1554344Z Step 4/6 : COPY NAVDVD /NAVDVD/
2021-06-29T14:44:10.7000458Z  ---> 1bdd6db3e111
2021-06-29T14:44:10.7013049Z Step 5/6 : RUN \Run\start.ps1 -installOnly
2021-06-29T14:44:12.2037232Z  ---> Running in 199fe3d52a8c
2021-06-29T14:44:51.1919942Z Using installer from C:\Run\150-new
2021-06-29T14:44:51.5929088Z Installing Business Central
2021-06-29T14:44:51.5999438Z Installing from DVD
2021-06-29T14:44:51.6094616Z Starting Local SQL Server
2021-06-29T14:45:01.4170264Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-06-29T14:45:01.4173665Z start...
2021-06-29T14:45:02.9913800Z Starting Internet Information Server
2021-06-29T14:45:03.3235546Z Copying Service Tier Files
2021-06-29T14:45:03.3438121Z C:\NAVDVD\ServiceTier\Program Files
2021-06-29T14:45:12.2094913Z C:\NAVDVD\ServiceTier\System64Folder
2021-06-29T14:45:12.4430202Z Copying PowerShell Scripts
2021-06-29T14:45:12.4453799Z C:\NAVDVD\WindowsPowerShellScripts\Cloud\NAV***istration
2021-06-29T14:45:12.5142622Z C:\NAVDVD\WindowsPowerShellScripts\WebSearch
2021-06-29T14:45:15.3001942Z Copying dependencies
2021-06-29T14:45:16.0295955Z Copying ReportBuilder
2021-06-29T14:45:16.1102049Z Importing PowerShell Modules
2021-06-29T14:45:18.4643414Z Determining Database Collation
2021-06-29T14:45:54.7684833Z Changing Database Server Collation to Latin1_General_100_CI_AS
2021-06-29T14:46:45.0856369Z Restoring CRONUS Demo Database
2021-06-29T14:48:18.3880856Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-06-29T14:48:21.6702093Z Modifying Business Central Service Tier Config File for Docker
2021-06-29T14:48:21.7167536Z Creating Business Central Service Tier
2021-06-29T14:48:21.8680203Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-06-29T14:48:22.1894520Z Copying Web Client Files
2021-06-29T14:48:22.1902164Z C:\NAVDVD\WebClient\Microsoft Dynamics NAV
2021-06-29T14:48:22.1909678Z Copying Client Files
2021-06-29T14:48:22.1917040Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-06-29T14:48:22.1923008Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-06-29T14:48:22.1929468Z C:\NAVDVD\LegacyDlls\systemFolder
2021-06-29T14:48:22.1935224Z Copying ModernDev Files
2021-06-29T14:48:22.1941247Z C:\NAVDVD
2021-06-29T14:48:22.1946890Z C:\NAVDVD\ModernDev\program files\Microsoft Dynamics NAV
2021-06-29T14:48:22.1952591Z Copying additional files
2021-06-29T14:48:22.1957912Z Copying ConfigurationPackages
2021-06-29T14:48:22.1963568Z C:\NAVDVD\ConfigurationPackages
2021-06-29T14:48:22.1969342Z Copying Test Assemblies
2021-06-29T14:48:22.1973916Z C:\NAVDVD\Test Assemblies
2021-06-29T14:48:22.1978509Z Copying Applications
2021-06-29T14:48:22.1983125Z C:\NAVDVD\Applications
2021-06-29T14:48:22.1987813Z Starting Business Central Service Tier
2021-06-29T14:49:38.4055213Z Importing CRONUS license file
2021-06-29T14:49:39.5718904Z Stopping Business Central Service Tier
2021-06-29T14:49:39.8606735Z Installation took 288 seconds
2021-06-29T14:49:39.8615721Z Installation complete
2021-06-29T14:54:34.1862055Z Removing intermediate container 199fe3d52a8c
2021-06-29T14:54:34.1869660Z  ---> 4b2697e8adfe
2021-06-29T14:54:34.1876515Z Step 6/6 : LABEL legal="http://go.microsoft.com/fwlink/?LinkId=837447"       created="202106291440"       nav=""       cu=""       country="gb"       version="18.2.26217.26490"       platform="18.0.26213.26464"
2021-06-29T14:54:34.3657911Z  ---> Running in 8d4b1b407228
2021-06-29T14:54:36.0741897Z Removing intermediate container 8d4b1b407228
2021-06-29T14:54:36.0749832Z  ---> 9c8ac2447921
2021-06-29T14:54:36.8305899Z Successfully built 9c8ac2447921
2021-06-29T14:54:36.9339019Z Successfully tagged bcimage:onprem-18.2.26217.26490-gb
2021-06-29T14:54:37.3226569Z ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them
2021-06-29T14:54:37.3232450Z Building image took 953 seconds
2021-06-29T14:54:41.8771179Z Using image bcimage:onprem-18.2.26217.26490-gb
2021-06-29T14:54:42.1787542Z Creating Container jtsdesktop-vect001-ci
2021-06-29T14:54:42.1898310Z Version: 18.2.26217.26490-gb
2021-06-29T14:54:42.1902466Z Style: onprem
2021-06-29T14:54:42.1906495Z Multitenant: No
2021-06-29T14:54:42.1919118Z Platform: 18.0.26213.26464
2021-06-29T14:54:42.1922615Z Generic Tag: 1.0.1.7
2021-06-29T14:54:42.1926153Z Container OS Version: 10.0.19042.1052 (20H2)
2021-06-29T14:54:42.1948578Z Host OS Version: 10.0.19042.1052 (20H2)
2021-06-29T14:54:42.1969096Z Using process isolation
2021-06-29T14:54:42.1991575Z Using locale en-GB
2021-06-29T14:54:42.2002837Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-06-29T14:54:42.2052061Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-06-29T14:55:08.9332407Z Using license file https://evolveapp.blob.core.windows.net/app/BC18License.flf
2021-06-29T14:55:08.9342877Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my\license.flf
2021-06-29T14:55:09.9847696Z Additional Parameters:
2021-06-29T14:55:09.9932729Z --volume "D:\agent-evolveims\_work\2\s:c:\sources"
2021-06-29T14:55:09.9936937Z --env customNavSettings=EnableTaskScheduler=False
2021-06-29T14:55:09.9941120Z Files in d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my:
2021-06-29T14:55:10.0025001Z - AdditionalOutput.ps1
2021-06-29T14:55:10.0028379Z - license.flf
2021-06-29T14:55:10.0032190Z - MainLoop.ps1
2021-06-29T14:55:10.0036078Z - SetupVariables.ps1
2021-06-29T14:55:10.0040553Z - updatehosts.ps1
2021-06-29T14:55:10.0043957Z Creating container jtsdesktop-vect001-ci from image bcimage:onprem-18.2.26217.26490-gb
2021-06-29T14:55:10.5339053Z 1dd51d24164fd0620ef25dbde05c44b604ec4b6bcbd5ecaad7a103d5e50932a9
2021-06-29T14:55:18.7768808Z Waiting for container jtsdesktop-vect001-ci to be ready
2021-06-29T14:55:30.6853142Z Adding JTSDESKTOP-VECT to hosts file
2021-06-29T14:55:31.9595746Z Initializing...
2021-06-29T14:55:31.9605342Z Setting host.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-29T14:55:31.9615835Z Setting gateway.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-29T14:55:31.9624821Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-06-29T14:55:31.9634354Z Setting dbserver.containerhelper.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-29T14:55:31.9642399Z Setting host.containerhelper.internal to 172.30.160.1 in container hosts file
2021-06-29T14:55:31.9649774Z Starting Container
2021-06-29T14:55:31.9657236Z Hostname is jtsdesktop-vect001-ci
2021-06-29T14:55:31.9664464Z PublicDnsName is jtsdesktop-vect001-ci
2021-06-29T14:55:33.2273103Z Using NavUserPassword Authentication
2021-06-29T14:55:37.0652651Z Starting Local SQL Server
2021-06-29T14:55:37.0659359Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-06-29T14:55:38.3578969Z start...
2021-06-29T14:55:42.2904895Z Starting Internet Information Server
2021-06-29T14:55:46.1807817Z Creating Self Signed Certificate
2021-06-29T14:55:47.4755185Z Self Signed Certificate Thumbprint 3BB34AAEC6A0C1042A746AC12577EEF7ACF860AB
2021-06-29T14:55:47.4762735Z Modifying Service Tier Config File with Instance Specific Settings
2021-06-29T14:55:47.4770141Z Modifying Service Tier Config File with settings from environment variable
2021-06-29T14:55:54.2008529Z Setting EnableTaskScheduler to False
2021-06-29T14:57:37.7594902Z Starting Service Tier
2021-06-29T14:57:39.0216686Z Registering event sources
2021-06-29T14:58:33.2047764Z Creating DotNetCore Web Server Instance
2021-06-29T14:58:33.2050821Z Using license file 'c:\run\my\license.flf'
2021-06-29T14:58:34.4961261Z Import License
2021-06-29T14:58:35.7649180Z Creating http download site
2021-06-29T14:58:42.4363475Z Setting SA Password and enabling SA
2021-06-29T14:58:43.6794428Z Creating admin as SQL User and add to sysadmin
2021-06-29T14:58:59.4131541Z Creating SUPER user
2021-06-29T14:58:59.4138431Z Container IP Address: 172.30.166.209
2021-06-29T14:58:59.4144943Z Container Hostname  : jtsdesktop-vect001-ci
2021-06-29T14:58:59.4152237Z Container Dns Name  : jtsdesktop-vect001-ci
2021-06-29T14:58:59.4161174Z Web Client          : http://jtsdesktop-vect001-ci/BC/
2021-06-29T14:58:59.4167570Z Dev. Server         : http://jtsdesktop-vect001-ci
2021-06-29T14:58:59.4174689Z Dev. ServerInstance : BC
2021-06-29T14:58:59.4180982Z Setting jtsdesktop-vect001-ci to 172.30.166.209 in host hosts file
2021-06-29T14:58:59.4184489Z 
2021-06-29T14:58:59.4190720Z Files:
2021-06-29T14:58:59.4197048Z http://jtsdesktop-vect001-ci:8080/Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-06-29T14:58:59.4200327Z 
2021-06-29T14:58:59.4206297Z Container Total Physical Memory is 31.7Gb
2021-06-29T14:58:59.4212292Z Container Free Physical Memory is 10.8Gb
2021-06-29T14:58:59.4215665Z 
2021-06-29T14:58:59.4221683Z Initialization took 208 seconds
2021-06-29T14:58:59.4227580Z Ready for connections!
2021-06-29T14:58:59.4233598Z Reading CustomSettings.config from jtsdesktop-vect001-ci
2021-06-29T14:59:07.6245071Z Creating Desktop Shortcuts for jtsdesktop-vect001-ci
2021-06-29T14:59:07.7109779Z Container jtsdesktop-vect001-ci successfully created
2021-06-29T14:59:07.7111640Z 
2021-06-29T14:59:07.7114956Z Use:
2021-06-29T14:59:07.7119098Z Get-BcContainerEventLog -containerName jtsdesktop-vect001-ci to retrieve a snapshot of the event log from the container
2021-06-29T14:59:07.7125134Z Get-BcContainerDebugInfo -containerName jtsdesktop-vect001-ci to get debug information about the container
2021-06-29T14:59:07.7131024Z Enter-BcContainer -containerName jtsdesktop-vect001-ci to open a PowerShell prompt inside the container
2021-06-29T14:59:07.7137422Z Remove-BcContainer -containerName jtsdesktop-vect001-ci to remove the container again
2021-06-29T14:59:07.7143435Z docker logs jtsdesktop-vect001-ci to retrieve information about URL's again
2021-06-29T14:59:07.7275170Z 
2021-06-29T14:59:07.7278286Z Creating container took 1226 seconds
2021-06-29T14:59:07.7280104Z 
2021-06-29T14:59:07.7283380Z    _____                      _ _ _                                     
2021-06-29T14:59:07.7286477Z   / ____|                    (_) (_)                                    
2021-06-29T14:59:07.7289862Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-06-29T14:59:07.7292989Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-06-29T14:59:07.7296316Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-06-29T14:59:07.7299370Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-06-29T14:59:07.7302452Z                        | |                 __/ |       | |   | |        
2021-06-29T14:59:07.7305746Z                        |_|                |___/        |_|   |_|        
2021-06-29T14:59:07.7307419Z 
2021-06-29T14:59:07.8158528Z Using custom ruleset
2021-06-29T14:59:07.8183971Z Using Version 18.2.457.0
2021-06-29T14:59:07.8223017Z Copying previous apps to packages folder
2021-06-29T14:59:07.8405732Z Downloading C:\Users\micro\AppData\Local\Temp\8ee59f2e-b6fe-49dd-bdc3-6a338440b486
2021-06-29T14:59:09.8948457Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy_17.2.111.0.app
2021-06-29T14:59:09.9921440Z Evolve iMS Ltd._Vector Legacy = 17.2.111.0
2021-06-29T14:59:10.0065148Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app
2021-06-29T14:59:10.0416562Z Evolve iMS Ltd._Vector Legacy UTK = 17.2.111.0
2021-06-29T14:59:10.0474098Z Creating AppSourceCop.json for validation
2021-06-29T14:59:11.4744295Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-06-29T14:59:19.6130963Z Downloading symbols: Microsoft_Application_18.2.26217.26490.app
2021-06-29T14:59:19.6144202Z Url : http://172.30.166.209:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0&tenant=default
2021-06-29T14:59:22.9856042Z Adding dependency to System Application from Microsoft
2021-06-29T14:59:22.9865431Z Adding dependency to Base Application from Microsoft
2021-06-29T14:59:22.9882040Z Downloading symbols: Microsoft_System_18.0.26213.26464.app
2021-06-29T14:59:22.9885435Z Url : http://172.30.166.209:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=1.0.0.0&tenant=default
2021-06-29T14:59:24.0180134Z Downloading symbols: Microsoft_System Application_18.2.26217.26490.app
2021-06-29T14:59:24.0183611Z Url : http://172.30.166.209:7049/BC/dev/packages?publisher=Microsoft&appName=System%20Application&versionText=18.2.0.0&tenant=default
2021-06-29T14:59:26.7280510Z Downloading symbols: Microsoft_Base Application_18.2.26217.26490.app
2021-06-29T14:59:26.7283960Z Url : http://172.30.166.209:7049/BC/dev/packages?publisher=Microsoft&appName=Base%20Application&versionText=18.2.0.0&tenant=default
2021-06-29T14:59:27.5890060Z Compiling...
2021-06-29T14:59:28.0053540Z .\alc.exe /project:"c:\sources\Legacy" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy_18.2.457.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-06-29T14:59:34.8651058Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-06-29T14:59:34.8663352Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-29T14:59:34.8665220Z 
2021-06-29T14:59:34.8669437Z Compilation started for project 'Vector Legacy' containing '55' files at '15:59:29.294'.
2021-06-29T14:59:34.8671219Z 
2021-06-29T14:59:34.8688896Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(499,50): warning AL0432: Field 'Cross-Reference No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-29T14:59:34.8692264Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(504,59): warning AL0432: Field 'Unit of Measure (Cross Ref.)' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-29T14:59:34.8694401Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(509,51): warning AL0432: Field 'Cross-Reference Type' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-29T14:59:34.8696427Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(514,55): warning AL0432: Field 'Cross-Reference Type No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-29T14:59:34.8698507Z ##[warning]c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(266,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-29T14:59:34.8700550Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(268,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-29T14:59:34.8702899Z ##[warning]c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(723,30): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-29T14:59:34.8704999Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(268,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-29T14:59:34.8705915Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(394,17): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8709224Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(419,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8713019Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(362,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8733120Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(488,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8736559Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(450,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8740097Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(442,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8743716Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(300,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8747088Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(361,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8750758Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(378,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8754320Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(322,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8758009Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(320,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8761339Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(382,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8764760Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(380,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8768682Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(441,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8772025Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(339,29): info AL0667: 'NewPage' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8775667Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(265,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8779107Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(439,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8782633Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(296,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8786519Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(355,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8790748Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(450,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8794571Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(322,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8798476Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(382,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-29T14:59:34.8802826Z c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(2,12): info AW0006: The page 'iMS Purchase Invoice Lines' should use the UsageCategory and ApplicationArea properties to be searchable.
2021-06-29T14:59:34.8806619Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(499,23): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8810987Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(106,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8815475Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(110,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8819521Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(104,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8823315Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(107,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8826687Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(127,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8830305Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(131,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8833666Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(106,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8837184Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(110,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8840654Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(110,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8844258Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(114,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8847621Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(166,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8851050Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(169,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8854382Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(245,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8857869Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(249,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8861153Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(241,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8864539Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(245,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8867997Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(239,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8871599Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(243,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8875578Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(296,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8896226Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(300,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8900904Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(103,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8904500Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(107,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8908371Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(235,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8911782Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(239,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8915180Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(110,48): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8918782Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(114,39): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8922116Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(241,52): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8925700Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(245,43): info AA0217: Use a text constant or label for format string in StrSubstNo.
2021-06-29T14:59:34.8931313Z ##[warning]'PermissionSet'(,): warning AS0094:  The XML file 'c:\sources\Legacy\extensionsPermissionSet.xml' should not contain Permissions or Permission Sets. Instead, use the dedicated AL object 'PermissionSet'.
2021-06-29T14:59:34.8934379Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50000..50009]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-29T14:59:34.8938204Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50010..50031]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-29T14:59:34.8940727Z ##[warning]c:\sources\Legacy\app.json(34,5): warning AS0053: The compilation target is set to 'OnPrem', but it must be set to 'Cloud' or 'Extension'.
2021-06-29T14:59:34.8941198Z 
2021-06-29T14:59:34.8945089Z Compilation ended at '15:59:34.722'.
2021-06-29T14:59:34.8946820Z 
2021-06-29T14:59:34.9040904Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy_18.2.457.0.app successfully created in 25 seconds
2021-06-29T14:59:34.9060347Z Evolve iMS Ltd._Vector Legacy_18.2.457.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-06-29T14:59:34.9117713Z Using custom ruleset
2021-06-29T14:59:34.9130185Z Using Version 18.2.457.0
2021-06-29T14:59:34.9164237Z Creating AppSourceCop.json for validation
2021-06-29T14:59:36.3262716Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-06-29T14:59:37.4485063Z Compiling...
2021-06-29T14:59:37.4494653Z .\alc.exe /project:"c:\sources\LegacyUTK" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-06-29T14:59:42.8325744Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-06-29T14:59:42.8329010Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-29T14:59:42.8330822Z 
2021-06-29T14:59:42.8334175Z Compilation started for project 'Vector Legacy UTK' containing '2' files at '15:59:37.697'.
2021-06-29T14:59:42.8335876Z 
2021-06-29T14:59:42.8343176Z ##[warning]c:\sources\LegacyUTK\app.json(26,5): warning AS0084: The ID range '[50100..50100]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-29T14:59:42.8347009Z ##[warning]c:\sources\LegacyUTK\dataimport\XMLPort.txt(1,1): warning AL1025: The file at location 'c:\sources\LegacyUTK\dataimport\XMLPort.txt' does not match any definition.
2021-06-29T14:59:42.8347834Z 
2021-06-29T14:59:42.8348274Z Compilation ended at '15:59:42.792'.
2021-06-29T14:59:42.8349974Z 
2021-06-29T14:59:42.8358616Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app successfully created in 8 seconds
2021-06-29T14:59:42.8374087Z Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-06-29T14:59:42.8490510Z 
2021-06-29T14:59:42.8493828Z Compiling apps took 35 seconds
2021-06-29T14:59:42.8495700Z 
2021-06-29T14:59:42.8499017Z   _____           _        _ _ _               _____                _                                            
2021-06-29T14:59:42.8502191Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-06-29T14:59:42.8505347Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-06-29T14:59:42.8508425Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-06-29T14:59:42.8511613Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-06-29T14:59:42.8514639Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-06-29T14:59:42.8517719Z                                         __/ |                                                   | |   | |        
2021-06-29T14:59:42.8520840Z                                        |___/                                                    |_|   |_|        
2021-06-29T14:59:42.8522574Z 
2021-06-29T14:59:44.0364940Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\c2e58ef8-7282-4035-84f4-86def09f4cf6\Evolve iMS Ltd._Vector Legacy_17.2.111.0.app
2021-06-29T14:59:53.8914175Z Synchronizing Vector Legacy on tenant default
2021-06-29T14:59:57.6984609Z Installing Vector Legacy on tenant default
2021-06-29T15:00:00.9688861Z App Evolve iMS Ltd._Vector Legacy_17.2.111.0.app successfully published
2021-06-29T15:00:01.9917798Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\252aadea-593e-40f0-8893-815b72fbff43\Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app
2021-06-29T15:00:03.3155215Z Synchronizing Vector Legacy UTK on tenant default
2021-06-29T15:00:03.4547200Z Installing Vector Legacy UTK on tenant default
2021-06-29T15:00:03.5520659Z App Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app successfully published
2021-06-29T15:00:03.5597547Z 
2021-06-29T15:00:03.5600936Z Installing apps took 21 seconds
2021-06-29T15:00:03.5607709Z 
2021-06-29T15:00:03.5610910Z   _____       _     _ _     _     _                                        
2021-06-29T15:00:03.5614014Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-06-29T15:00:03.5617140Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-06-29T15:00:03.5620160Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-06-29T15:00:03.5624336Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-06-29T15:00:03.5626650Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-06-29T15:00:03.5629722Z                                            __/ |          | |   | |        
2021-06-29T15:00:03.5633027Z                                           |___/           |_|   |_|        
2021-06-29T15:00:03.5634710Z 
2021-06-29T15:00:04.9278325Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\40eadea6-9488-4a9e-ba7a-000dc271de85\Evolve iMS Ltd._Vector Legacy_18.2.457.0.app
2021-06-29T15:00:07.5392570Z Synchronizing Vector Legacy on tenant default
2021-06-29T15:00:07.7983476Z Upgrading Vector Legacy on tenant default
2021-06-29T15:00:22.0109025Z App Evolve iMS Ltd._Vector Legacy_18.2.457.0.app successfully published
2021-06-29T15:00:23.1839234Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\adcbe3c9-96ba-49b9-994b-2bcf797bd9ea\Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app
2021-06-29T15:00:24.4252742Z Synchronizing Vector Legacy UTK on tenant default
2021-06-29T15:00:24.5233704Z Upgrading Vector Legacy UTK on tenant default
2021-06-29T15:00:24.6069169Z App Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app successfully published
2021-06-29T15:00:24.6158985Z 
2021-06-29T15:00:24.6163227Z Publishing apps took 21 seconds
2021-06-29T15:00:24.6167354Z    _____                    _          ____        _ _     _                 _   _  __           _       
2021-06-29T15:00:24.6171229Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2021-06-29T15:00:24.6175207Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-06-29T15:00:24.6179132Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2021-06-29T15:00:24.6182913Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2021-06-29T15:00:24.6186931Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2021-06-29T15:00:24.6190628Z              | |     __/ |                                                                               
2021-06-29T15:00:24.6194648Z              |_|    |___/                                                                                
2021-06-29T15:00:24.6485479Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy_18.2.457.0.app
2021-06-29T15:00:25.8329400Z Copying runtime package to build artifact
2021-06-29T15:00:25.8368978Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy UTK_18.2.457.0.app
2021-06-29T15:00:26.5815560Z Copying runtime package to build artifact
2021-06-29T15:00:26.5895072Z 
2021-06-29T15:00:26.5898917Z Copying to Build Artifacts took 2 seconds
2021-06-29T15:00:26.5900888Z 
2021-06-29T15:00:26.5904760Z   _____                           _                _____            _        _                 
2021-06-29T15:00:26.5908582Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-06-29T15:00:26.5912170Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-29T15:00:26.5915822Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-29T15:00:26.5928904Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-29T15:00:26.5929476Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-29T15:00:26.5929734Z                                            __/ |                                               
2021-06-29T15:00:26.5930467Z                                           |___/                                                
2021-06-29T15:00:26.5932498Z 
2021-06-29T15:00:28.3599848Z Removing container jtsdesktop-vect001-ci
2021-06-29T15:00:53.6411603Z Removing jtsdesktop-vect001-ci from container hosts file
2021-06-29T15:00:53.6818726Z Removing jtsdesktop-vect001-ci-* from container hosts file
2021-06-29T15:00:53.7024544Z Removing d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci
2021-06-29T15:00:53.7285183Z 
2021-06-29T15:00:53.7288394Z Removing container took 27 seconds
2021-06-29T15:00:53.7291797Z NOTE: The app in D:\agent-evolveims\_work\2\s\Legacy has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-06-29T15:00:53.7295259Z NOTE: The app in D:\agent-evolveims\_work\2\s\LegacyUTK has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-06-29T15:00:53.7351767Z 
2021-06-29T15:00:53.7355013Z AL Pipeline finished in 1335 seconds
2021-06-29T15:00:53.7941429Z ##[section]Finishing: Run Pipeline

Screenshots If applicable, add screenshots to help explain your problem.

Additional context

freddydk commented 3 years ago

I have never seen this before, I have the same docker version and do not get this. Will have to investigate more. Maybe you can set the DOCKER_SCAN_SUGGEST environment variable to false? (https://github.com/docker/scan-cli-plugin/issues/149)

freddydk commented 3 years ago

Reading here: https://github.com/docker/scan-cli-plugin - docker scan should be installed with docker desktop - but not on my machine (yet)

GreatScott000 commented 3 years ago

Hmm, I just (more by accident than design) updated Docker to 20.10.7 (was 20.10.6) and decided to run the pipeline and it worked without this message and showed a successful pipeline. The only difference I see is that the one that failed is that it had to build the image.

This is the successful log output

2021-06-30T08:12:38.2159419Z ##[section]Starting: Run Pipeline
2021-06-30T08:12:38.2241632Z ==============================================================================
2021-06-30T08:12:38.2241846Z Task         : PowerShell
2021-06-30T08:12:38.2242021Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-06-30T08:12:38.2242183Z Version      : 2.186.0
2021-06-30T08:12:38.2242329Z Author       : Microsoft Corporation
2021-06-30T08:12:38.2242531Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-06-30T08:12:38.2242763Z ==============================================================================
2021-06-30T08:12:38.9302790Z Generating script.
2021-06-30T08:12:38.9337660Z Formatted command: . 'D:\agent-evolveims\_work\2\s\scripts\DevOps-Pipeline.ps1' -environment "AzureDevOps" -version "ci" -appBuild 460 -appRevision 0
2021-06-30T08:12:38.9580937Z ========================== Starting Command Output ===========================
2021-06-30T08:12:38.9737705Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\agent-evolveims\_work\_temp\60e0d1ef-be1c-4731-aa74-580bb49fa003.ps1'"
2021-06-30T08:12:39.3320414Z Set artifact = https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-06-30T08:12:39.3324473Z Set pipelineName = vect001-ci
2021-06-30T08:12:39.3328455Z Set containerName = jtsdesktop-vect001-ci
2021-06-30T08:12:39.3537140Z Set installApps = ''
2021-06-30T08:12:39.3552317Z Set previousApps = 'https://tinyurl.com/22ntvgbk'
2021-06-30T08:12:39.3567510Z Set appSourceCopMandatoryAffixes = 'iMS'
2021-06-30T08:12:39.3582824Z Set appSourceCopSupportedCountries = 'gb'
2021-06-30T08:12:39.3598789Z Set appFolders = 'Legacy,LegacyUTK'
2021-06-30T08:12:39.3613771Z Set testFolders = ''
2021-06-30T08:12:39.3629867Z Set memoryLimit = '6G'
2021-06-30T08:12:39.3645547Z Set additionalCountries = ''
2021-06-30T08:12:39.3662497Z Set genericImageName = ''
2021-06-30T08:12:39.3679373Z Set vaultNameForLocal = 'evolveAppVault'
2021-06-30T08:12:39.3695088Z Set bcContainerHelperVersion = 'Latest'
2021-06-30T08:12:39.3782066Z Set installTestFramework = True
2021-06-30T08:12:39.3805068Z Set installTestLibraries = True
2021-06-30T08:12:39.3822000Z Set installPerformanceToolkit = False
2021-06-30T08:12:39.3841979Z Set enableCodeCop = True
2021-06-30T08:12:39.3857841Z Set enableAppSourceCop = True
2021-06-30T08:12:39.3873460Z Set enablePerTenantExtensionCop = False
2021-06-30T08:12:39.3889068Z Set enableUICop = True
2021-06-30T08:12:39.3904657Z Set doNotSignApps = True
2021-06-30T08:12:39.3910046Z Set doNotRunTests = False
2021-06-30T08:12:39.3925177Z Set cacheImage = True
2021-06-30T08:12:39.3941311Z Set CreateRuntimePackages = True
2021-06-30T08:12:39.3980023Z Set rulesetfile = '_RuleSets\ims.ruleset.json'
2021-06-30T08:12:39.3996066Z Set appPackages = '.packages'
2021-06-30T08:12:40.0983789Z Setting hostHelperFolder = d:\bccontainerhelper
2021-06-30T08:12:40.1017501Z Setting use7zipIfAvailable = true
2021-06-30T08:12:40.1038281Z Setting bcartifactsCacheFolder = d:\bcartifacts.cache
2021-06-30T08:12:40.2723492Z BcContainerHelper version 2.0.14
2021-06-30T08:12:43.5089268Z   _____                               _                
2021-06-30T08:12:43.5092545Z  |  __ \                             | |               
2021-06-30T08:12:43.5095877Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2021-06-30T08:12:43.5099135Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2021-06-30T08:12:43.5102397Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2021-06-30T08:12:43.5105695Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2021-06-30T08:12:43.5108073Z 
2021-06-30T08:12:43.5111597Z Pipeline name               vect001-ci
2021-06-30T08:12:43.5114892Z Container name              jtsdesktop-vect001-ci
2021-06-30T08:12:43.5118057Z Image name                  bcimage
2021-06-30T08:12:43.5121393Z ArtifactUrl                 https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-06-30T08:12:43.5124618Z SasToken                    Not Specified
2021-06-30T08:12:43.5128521Z BcAuthContext               Not Specified
2021-06-30T08:12:43.5133645Z Environment                 
2021-06-30T08:12:43.5139968Z ReUseContainer              False
2021-06-30T08:12:43.5146330Z KeepContainer               False
2021-06-30T08:12:43.5264663Z Credential                  admin/Zaku5352
2021-06-30T08:12:43.5787558Z MemoryLimit                 6G
2021-06-30T08:12:43.5792606Z Enable Task Scheduler       False
2021-06-30T08:12:43.5798685Z Assign Premium Plan         False
2021-06-30T08:12:43.5804979Z Install Test Runner         False
2021-06-30T08:12:43.5811146Z Install Test Framework      True
2021-06-30T08:12:43.5817492Z Install Test Libraries      True
2021-06-30T08:12:43.5824314Z Install Perf. Toolkit       False
2021-06-30T08:12:43.5831167Z CopySymbolsFromContainer    False
2021-06-30T08:12:43.5838984Z enableCodeCop               True
2021-06-30T08:12:43.5844994Z enableAppSourceCop          True
2021-06-30T08:12:43.5851441Z enableUICop                 True
2021-06-30T08:12:43.5858167Z enablePerTenantExtensionCop False
2021-06-30T08:12:43.5863694Z escapeFromCops              False
2021-06-30T08:12:43.5869845Z useDefaultAppSourceRuleSet  False
2021-06-30T08:12:43.5875615Z rulesetFile                 D:\agent-evolveims\_work\2\s\_RuleSets\ims.ruleset.json
2021-06-30T08:12:43.5881739Z azureDevOps                 True
2021-06-30T08:12:43.5888076Z License file                Specified
2021-06-30T08:12:43.5896663Z CodeSignCertPfxFile         Not specified
2021-06-30T08:12:43.5903331Z TestResultsFile             D:\agent-evolveims\_work\2\s\TestResults.xml
2021-06-30T08:12:43.5909249Z TestResultsFormat           JUnit
2021-06-30T08:12:43.5934495Z AdditionalCountries         
2021-06-30T08:12:43.5941694Z PackagesFolder              D:\agent-evolveims\_work\2\s\.packages
2021-06-30T08:12:43.5947442Z OutputFolder                D:\agent-evolveims\_work\2\s\.output
2021-06-30T08:12:43.5953218Z BuildArtifactFolder         D:\agent-evolveims\_work\2\a
2021-06-30T08:12:43.5959410Z CreateRuntimePackages       True
2021-06-30T08:12:43.5965777Z AppBuild                    460
2021-06-30T08:12:43.5971883Z AppRevision                 0
2021-06-30T08:12:43.5978134Z Mandatory Affixes           iMS
2021-06-30T08:12:43.5984199Z Supported Countries         gb
2021-06-30T08:12:43.5987367Z Install Apps
2021-06-30T08:12:43.5990975Z - None
2021-06-30T08:12:43.5994750Z Install Test Apps
2021-06-30T08:12:43.5998482Z - None
2021-06-30T08:12:43.6002154Z Previous Apps
2021-06-30T08:12:43.6058324Z - https://tinyurl.com/22ntvgbk
2021-06-30T08:12:43.6061470Z Application folders
2021-06-30T08:12:43.6074452Z - D:\agent-evolveims\_work\2\s\Legacy
2021-06-30T08:12:43.6078572Z - D:\agent-evolveims\_work\2\s\LegacyUTK
2021-06-30T08:12:43.6081942Z Test application folders
2021-06-30T08:12:43.6085266Z - None
2021-06-30T08:12:43.6295646Z 
2021-06-30T08:12:43.6298969Z   _____       _ _ _                                          _        _                            
2021-06-30T08:12:43.6302416Z  |  __ \     | | (_)                                        (_)      (_)                           
2021-06-30T08:12:43.6305685Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2021-06-30T08:12:43.6308741Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2021-06-30T08:12:43.6311941Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2021-06-30T08:12:43.6315068Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2021-06-30T08:12:43.6318236Z                            __/ |   __/ |                                                 __/ |     
2021-06-30T08:12:43.6321445Z                           |___/   |___/                                                 |___/      
2021-06-30T08:12:43.6323318Z 
2021-06-30T08:12:44.4361548Z Pulling mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:12:46.2394421Z 
2021-06-30T08:12:46.2397930Z Pulling generic image took 3 seconds
2021-06-30T08:12:46.2528206Z 
2021-06-30T08:12:46.2534350Z    _____                _   _                               _        _                 
2021-06-30T08:12:46.2540382Z   / ____|              | | (_)                             | |      (_)                
2021-06-30T08:12:46.2545829Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-30T08:12:46.2550824Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-30T08:12:46.2555416Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-30T08:12:46.2559663Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-30T08:12:46.2564017Z                                      __/ |                                             
2021-06-30T08:12:46.2567695Z                                     |___/                                              
2021-06-30T08:12:46.2569766Z 
2021-06-30T08:12:46.6257239Z WARNING: Container name should not exceed 15 characters
2021-06-30T08:12:46.9907530Z BcContainerHelper is version 2.0.14
2021-06-30T08:12:46.9910777Z BcContainerHelper is running as administrator
2021-06-30T08:12:46.9920779Z Host is Microsoft Windows 10 Pro - 20H2
2021-06-30T08:12:47.1279330Z Docker Client Version is 20.10.7
2021-06-30T08:12:47.1290642Z Docker Server Version is 20.10.7
2021-06-30T08:12:47.5898020Z Fetching all docker images
2021-06-30T08:12:47.7452620Z Fetching all docker volumes
2021-06-30T08:12:47.8686362Z ArtifactUrl and ImageName specified
2021-06-30T08:12:48.1206598Z Image bcimage:onprem-18.2.26217.26490-gb already exists
2021-06-30T08:12:48.3752235Z Using image bcimage:onprem-18.2.26217.26490-gb
2021-06-30T08:12:48.5170529Z Creating Container jtsdesktop-vect001-ci
2021-06-30T08:12:48.5281475Z Version: 18.2.26217.26490-gb
2021-06-30T08:12:48.5284905Z Style: onprem
2021-06-30T08:12:48.5288175Z Multitenant: No
2021-06-30T08:12:48.5299395Z Platform: 18.0.26213.26464
2021-06-30T08:12:48.5302899Z Generic Tag: 1.0.1.7
2021-06-30T08:12:48.5318292Z Container OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:12:48.5322037Z Host OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:12:48.5350359Z Using process isolation
2021-06-30T08:12:48.5381730Z Using locale en-GB
2021-06-30T08:12:48.5395848Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-06-30T08:12:48.5672438Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-06-30T08:13:07.4021218Z Using license file https://evolveapp.blob.core.windows.net/app/BC18License.flf
2021-06-30T08:13:07.4030664Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my\license.flf
2021-06-30T08:13:07.6475947Z Additional Parameters:
2021-06-30T08:13:07.6541113Z --volume "D:\agent-evolveims\_work\2\s:c:\sources"
2021-06-30T08:13:07.6544290Z --env customNavSettings=EnableTaskScheduler=False
2021-06-30T08:13:07.6547522Z Files in d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my:
2021-06-30T08:13:07.6620127Z - AdditionalOutput.ps1
2021-06-30T08:13:07.6623254Z - license.flf
2021-06-30T08:13:07.6626530Z - MainLoop.ps1
2021-06-30T08:13:07.6630103Z - SetupVariables.ps1
2021-06-30T08:13:07.6634027Z - updatehosts.ps1
2021-06-30T08:13:07.6637590Z Creating container jtsdesktop-vect001-ci from image bcimage:onprem-18.2.26217.26490-gb
2021-06-30T08:13:08.0492112Z 13876f6c59fd4403db75830b65331263a3032db42464e8333762c4a279b87db3
2021-06-30T08:13:16.7461789Z Waiting for container jtsdesktop-vect001-ci to be ready
2021-06-30T08:13:25.9444208Z Adding JTSDESKTOP-VECT to hosts file
2021-06-30T08:13:27.0933257Z Initializing...
2021-06-30T08:13:27.0936569Z Setting host.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-30T08:13:27.0939908Z Setting gateway.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-30T08:13:27.0943175Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-06-30T08:13:27.0946444Z Setting dbserver.containerhelper.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-06-30T08:13:27.0949647Z Setting host.containerhelper.internal to 172.30.160.1 in container hosts file
2021-06-30T08:13:27.0953129Z Starting Container
2021-06-30T08:13:27.0956342Z Hostname is jtsdesktop-vect001-ci
2021-06-30T08:13:28.2258380Z PublicDnsName is jtsdesktop-vect001-ci
2021-06-30T08:13:30.5100168Z Using NavUserPassword Authentication
2021-06-30T08:13:33.9314463Z Starting Local SQL Server
2021-06-30T08:13:33.9317675Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-06-30T08:13:35.0840697Z start...
2021-06-30T08:13:37.3427037Z Starting Internet Information Server
2021-06-30T08:13:40.7392232Z Creating Self Signed Certificate
2021-06-30T08:13:40.7395395Z Self Signed Certificate Thumbprint 074C70BCB71C40C2564F81FFA519610E5C063395
2021-06-30T08:13:40.7398571Z Modifying Service Tier Config File with Instance Specific Settings
2021-06-30T08:13:40.7401893Z Modifying Service Tier Config File with settings from environment variable
2021-06-30T08:13:41.8903593Z Setting EnableTaskScheduler to False
2021-06-30T08:15:15.2252419Z Starting Service Tier
2021-06-30T08:15:15.2255361Z Registering event sources
2021-06-30T08:15:59.3202266Z Creating DotNetCore Web Server Instance
2021-06-30T08:15:59.3205275Z Using license file 'c:\run\my\license.flf'
2021-06-30T08:16:00.4623166Z Import License
2021-06-30T08:16:01.6084704Z Creating http download site
2021-06-30T08:16:05.0016688Z Setting SA Password and enabling SA
2021-06-30T08:16:06.1509825Z Creating admin as SQL User and add to sysadmin
2021-06-30T08:16:20.0451366Z Creating SUPER user
2021-06-30T08:16:20.0454570Z Container IP Address: 172.30.169.165
2021-06-30T08:16:20.0457806Z Container Hostname  : jtsdesktop-vect001-ci
2021-06-30T08:16:20.0460932Z Container Dns Name  : jtsdesktop-vect001-ci
2021-06-30T08:16:20.0464153Z Web Client          : http://jtsdesktop-vect001-ci/BC/
2021-06-30T08:16:20.0467305Z Dev. Server         : http://jtsdesktop-vect001-ci
2021-06-30T08:16:20.0470466Z Dev. ServerInstance : BC
2021-06-30T08:16:20.0473680Z Setting jtsdesktop-vect001-ci to 172.30.169.165 in host hosts file
2021-06-30T08:16:20.0475495Z 
2021-06-30T08:16:20.0478623Z Files:
2021-06-30T08:16:20.0482095Z http://jtsdesktop-vect001-ci:8080/Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-06-30T08:16:20.0483812Z 
2021-06-30T08:16:20.0487056Z Container Total Physical Memory is 31.7Gb
2021-06-30T08:16:20.0490175Z Container Free Physical Memory is 6.5Gb
2021-06-30T08:16:20.0491959Z 
2021-06-30T08:16:20.0495303Z Initialization took 174 seconds
2021-06-30T08:16:20.0498453Z Ready for connections!
2021-06-30T08:16:20.0501650Z Reading CustomSettings.config from jtsdesktop-vect001-ci
2021-06-30T08:16:24.8738874Z Creating Desktop Shortcuts for jtsdesktop-vect001-ci
2021-06-30T08:16:24.9639725Z Container jtsdesktop-vect001-ci successfully created
2021-06-30T08:16:24.9641684Z 
2021-06-30T08:16:24.9645017Z Use:
2021-06-30T08:16:24.9649217Z Get-BcContainerEventLog -containerName jtsdesktop-vect001-ci to retrieve a snapshot of the event log from the container
2021-06-30T08:16:24.9655344Z Get-BcContainerDebugInfo -containerName jtsdesktop-vect001-ci to get debug information about the container
2021-06-30T08:16:24.9660996Z Enter-BcContainer -containerName jtsdesktop-vect001-ci to open a PowerShell prompt inside the container
2021-06-30T08:16:24.9667089Z Remove-BcContainer -containerName jtsdesktop-vect001-ci to remove the container again
2021-06-30T08:16:24.9673271Z docker logs jtsdesktop-vect001-ci to retrieve information about URL's again
2021-06-30T08:16:24.9806713Z 
2021-06-30T08:16:24.9809997Z Creating container took 219 seconds
2021-06-30T08:16:24.9811913Z 
2021-06-30T08:16:24.9815274Z    _____                      _ _ _                                     
2021-06-30T08:16:24.9818466Z   / ____|                    (_) (_)                                    
2021-06-30T08:16:24.9821672Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-06-30T08:16:24.9824942Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-06-30T08:16:24.9828069Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-06-30T08:16:24.9831440Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-06-30T08:16:24.9835187Z                        | |                 __/ |       | |   | |        
2021-06-30T08:16:24.9838256Z                        |_|                |___/        |_|   |_|        
2021-06-30T08:16:24.9840025Z 
2021-06-30T08:16:25.0741044Z Using custom ruleset
2021-06-30T08:16:25.0764058Z Using Version 18.2.460.0
2021-06-30T08:16:25.0801136Z Copying previous apps to packages folder
2021-06-30T08:16:25.1081289Z Downloading C:\Users\micro\AppData\Local\Temp\fa5a02d7-0d2b-437b-afb5-5485d04ea1d3
2021-06-30T08:16:27.1338024Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy_17.2.111.0.app
2021-06-30T08:16:27.2290110Z Evolve iMS Ltd._Vector Legacy = 17.2.111.0
2021-06-30T08:16:27.2436558Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app
2021-06-30T08:16:27.2924283Z Evolve iMS Ltd._Vector Legacy UTK = 17.2.111.0
2021-06-30T08:16:27.2974762Z Creating AppSourceCop.json for validation
2021-06-30T08:16:28.0632137Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-06-30T08:16:33.8293063Z Downloading symbols: Microsoft_Application_18.2.26217.26490.app
2021-06-30T08:16:33.8304449Z Url : http://172.30.169.165:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0&tenant=default
2021-06-30T08:16:36.9264794Z Adding dependency to System Application from Microsoft
2021-06-30T08:16:36.9276337Z Adding dependency to Base Application from Microsoft
2021-06-30T08:16:36.9299059Z Downloading symbols: Microsoft_System_18.0.26213.26464.app
2021-06-30T08:16:36.9302442Z Url : http://172.30.169.165:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=1.0.0.0&tenant=default
2021-06-30T08:16:37.4653405Z Downloading symbols: Microsoft_System Application_18.2.26217.26490.app
2021-06-30T08:16:37.4656677Z Url : http://172.30.169.165:7049/BC/dev/packages?publisher=Microsoft&appName=System%20Application&versionText=18.2.0.0&tenant=default
2021-06-30T08:16:38.4230129Z Downloading symbols: Microsoft_Base Application_18.2.26217.26490.app
2021-06-30T08:16:38.4233872Z Url : http://172.30.169.165:7049/BC/dev/packages?publisher=Microsoft&appName=Base%20Application&versionText=18.2.0.0&tenant=default
2021-06-30T08:16:39.4035792Z Compiling...
2021-06-30T08:16:39.4451614Z .\alc.exe /project:"c:\sources\Legacy" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy_18.2.460.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-06-30T08:16:47.2881314Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-06-30T08:16:47.2894455Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-30T08:16:47.2896150Z 
2021-06-30T08:16:47.2900610Z Compilation started for project 'Vector Legacy' containing '55' files at '9:16:40.831'.
2021-06-30T08:16:47.2902317Z 
2021-06-30T08:16:47.2939525Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(500,50): warning AL0432: Field 'Cross-Reference No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-30T08:16:47.2948477Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(505,59): warning AL0432: Field 'Unit of Measure (Cross Ref.)' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-30T08:16:47.2950819Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(510,51): warning AL0432: Field 'Cross-Reference Type' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-30T08:16:47.2953035Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(515,55): warning AL0432: Field 'Cross-Reference Type No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-06-30T08:16:47.2955362Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(276,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-30T08:16:47.2957600Z ##[warning]c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(274,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-30T08:16:47.2959937Z ##[warning]c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(731,30): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-30T08:16:47.2962181Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(276,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-06-30T08:16:47.2963124Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(370,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.2963640Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(394,17): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.2965665Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(496,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.2969369Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(429,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.2973460Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(450,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.2976893Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(458,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3554744Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(386,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3634453Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(309,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3635151Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(449,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3635895Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(371,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3636532Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(328,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3637140Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(330,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3637644Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(347,29): info AL0667: 'NewPage' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3638143Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(390,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3638682Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(388,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3639260Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(265,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3639758Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(458,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3640257Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(330,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3640863Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(447,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3641358Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(390,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3641847Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(304,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3642333Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(363,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-06-30T08:16:47.3644988Z ##[warning]'PermissionSet'(,): warning AS0094:  The XML file 'c:\sources\Legacy\extensionsPermissionSet.xml' should not contain Permissions or Permission Sets. Instead, use the dedicated AL object 'PermissionSet'.
2021-06-30T08:16:47.3647391Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50000..50009]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-30T08:16:47.3649648Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50010..50031]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-30T08:16:47.3651585Z ##[warning]c:\sources\Legacy\app.json(34,5): warning AS0053: The compilation target is set to 'OnPrem', but it must be set to 'Cloud' or 'Extension'.
2021-06-30T08:16:47.3652121Z 
2021-06-30T08:16:47.3652260Z Compilation ended at '9:16:47.205'.
2021-06-30T08:16:47.3652358Z 
2021-06-30T08:16:47.3652553Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy_18.2.460.0.app successfully created in 20 seconds
2021-06-30T08:16:47.3652855Z Evolve iMS Ltd._Vector Legacy_18.2.460.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-06-30T08:16:47.3653044Z Using custom ruleset
2021-06-30T08:16:47.3653167Z Using Version 18.2.460.0
2021-06-30T08:16:47.3678996Z Creating AppSourceCop.json for validation
2021-06-30T08:16:48.0569622Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-06-30T08:16:48.3824249Z Compiling...
2021-06-30T08:16:48.3835376Z .\alc.exe /project:"c:\sources\LegacyUTK" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-06-30T08:16:53.7124989Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-06-30T08:16:53.7128011Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-30T08:16:53.7129696Z 
2021-06-30T08:16:53.7133006Z Compilation started for project 'Vector Legacy UTK' containing '2' files at '9:16:48.644'.
2021-06-30T08:16:53.7134762Z 
2021-06-30T08:16:53.7142695Z ##[warning]c:\sources\LegacyUTK\app.json(26,5): warning AS0084: The ID range '[50100..50100]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-06-30T08:16:53.7145771Z ##[warning]c:\sources\LegacyUTK\dataimport\XMLPort.txt(1,1): warning AL1025: The file at location 'c:\sources\LegacyUTK\dataimport\XMLPort.txt' does not match any definition.
2021-06-30T08:16:53.7146257Z 
2021-06-30T08:16:53.7147449Z Compilation ended at '9:16:53.674'.
2021-06-30T08:16:53.7149183Z 
2021-06-30T08:16:53.7157934Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app successfully created in 6 seconds
2021-06-30T08:16:53.7174282Z Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-06-30T08:16:53.7315602Z 
2021-06-30T08:16:53.7319076Z Compiling apps took 29 seconds
2021-06-30T08:16:53.7320950Z 
2021-06-30T08:16:53.7324378Z   _____           _        _ _ _               _____                _                                            
2021-06-30T08:16:53.7327450Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-06-30T08:16:53.7330556Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-06-30T08:16:53.7334420Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-06-30T08:16:53.7337830Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-06-30T08:16:53.7341016Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-06-30T08:16:53.7344395Z                                         __/ |                                                   | |   | |        
2021-06-30T08:16:53.7347485Z                                        |___/                                                    |_|   |_|        
2021-06-30T08:16:53.7349226Z 
2021-06-30T08:16:54.3662334Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\4a9a8436-bafb-41f7-acb2-92703d4f3cef\Evolve iMS Ltd._Vector Legacy_17.2.111.0.app
2021-06-30T08:17:01.5016121Z Synchronizing Vector Legacy on tenant default
2021-06-30T08:17:04.2341248Z Installing Vector Legacy on tenant default
2021-06-30T08:17:07.1894359Z App Evolve iMS Ltd._Vector Legacy_17.2.111.0.app successfully published
2021-06-30T08:17:07.7657512Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\6feaeb17-94e5-48ac-ade7-04bfb7e497ec\Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app
2021-06-30T08:17:08.1838557Z Synchronizing Vector Legacy UTK on tenant default
2021-06-30T08:17:08.2736323Z Installing Vector Legacy UTK on tenant default
2021-06-30T08:17:08.3553123Z App Evolve iMS Ltd._Vector Legacy UTK_17.2.111.0.app successfully published
2021-06-30T08:17:08.3629304Z 
2021-06-30T08:17:08.3633012Z Installing apps took 15 seconds
2021-06-30T08:17:08.3638977Z 
2021-06-30T08:17:08.3642523Z   _____       _     _ _     _     _                                        
2021-06-30T08:17:08.3646006Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-06-30T08:17:08.3649331Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-06-30T08:17:08.3652380Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-06-30T08:17:08.3656088Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-06-30T08:17:08.3660103Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-06-30T08:17:08.3663123Z                                            __/ |          | |   | |        
2021-06-30T08:17:08.3666693Z                                           |___/           |_|   |_|        
2021-06-30T08:17:08.3668846Z 
2021-06-30T08:17:09.2548362Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\9b9f9ee0-3c51-42d5-a3d7-c2b23566ead6\Evolve iMS Ltd._Vector Legacy_18.2.460.0.app
2021-06-30T08:17:10.3109740Z Synchronizing Vector Legacy on tenant default
2021-06-30T08:17:10.6130329Z Upgrading Vector Legacy on tenant default
2021-06-30T08:17:21.4257730Z App Evolve iMS Ltd._Vector Legacy_18.2.460.0.app successfully published
2021-06-30T08:17:21.9956449Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\5833ef77-d384-4de0-a48a-c67214f3e250\Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app
2021-06-30T08:17:22.6256593Z Synchronizing Vector Legacy UTK on tenant default
2021-06-30T08:17:22.6917644Z Upgrading Vector Legacy UTK on tenant default
2021-06-30T08:17:22.8437175Z App Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app successfully published
2021-06-30T08:17:22.8505058Z 
2021-06-30T08:17:22.8508374Z Publishing apps took 14 seconds
2021-06-30T08:17:22.8511540Z    _____                    _          ____        _ _     _                 _   _  __           _       
2021-06-30T08:17:22.8514714Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2021-06-30T08:17:22.8517828Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-06-30T08:17:22.8520941Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2021-06-30T08:17:22.8524009Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2021-06-30T08:17:22.8527189Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2021-06-30T08:17:22.8530239Z              | |     __/ |                                                                               
2021-06-30T08:17:22.8533309Z              |_|    |___/                                                                                
2021-06-30T08:17:22.8757502Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy_18.2.460.0.app
2021-06-30T08:17:23.5850130Z Copying runtime package to build artifact
2021-06-30T08:17:23.5898075Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app
2021-06-30T08:17:23.8395127Z Copying runtime package to build artifact
2021-06-30T08:17:23.8463664Z 
2021-06-30T08:17:23.8467743Z Copying to Build Artifacts took 1 seconds
2021-06-30T08:17:23.8469887Z 
2021-06-30T08:17:23.8473373Z   _____                           _                _____            _        _                 
2021-06-30T08:17:23.8476534Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-06-30T08:17:23.8479784Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-30T08:17:23.8482849Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-30T08:17:23.8486014Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-30T08:17:23.8489109Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-30T08:17:23.8492210Z                                            __/ |                                               
2021-06-30T08:17:23.8495465Z                                           |___/                                                
2021-06-30T08:17:23.8497383Z 
2021-06-30T08:17:24.6222144Z Removing container jtsdesktop-vect001-ci
2021-06-30T08:17:38.0713005Z Removing jtsdesktop-vect001-ci from container hosts file
2021-06-30T08:17:38.1115602Z Removing jtsdesktop-vect001-ci-* from container hosts file
2021-06-30T08:17:38.1297846Z Removing d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci
2021-06-30T08:17:38.1593789Z 
2021-06-30T08:17:38.1597019Z Removing container took 14 seconds
2021-06-30T08:17:38.1600440Z NOTE: The app in D:\agent-evolveims\_work\2\s\Legacy has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-06-30T08:17:38.1603527Z NOTE: The app in D:\agent-evolveims\_work\2\s\LegacyUTK has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-06-30T08:17:38.1663776Z 
2021-06-30T08:17:38.1667130Z AL Pipeline finished in 295 seconds
2021-06-30T08:17:38.2196499Z ##[section]Finishing: Run Pipeline
JonFjolnirAlbertsson commented 3 years ago

I have the same issue.

2021-06-30T08:26:57.1281070Z ##[section]Starting: Run Pipeline
2021-06-30T08:26:57.1528483Z ==============================================================================
2021-06-30T08:26:57.1529007Z Task         : PowerShell
2021-06-30T08:26:57.1529351Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-06-30T08:26:57.1529661Z Version      : 2.186.0
2021-06-30T08:26:57.1529921Z Author       : Microsoft Corporation
2021-06-30T08:26:57.1530309Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-06-30T08:26:57.1530727Z ==============================================================================
2021-06-30T08:26:59.2896429Z Generating script.
2021-06-30T08:26:59.2970394Z Formatted command: . 'c:\Agent\_work\5\s\PowerShell\DevOps\DevOps-Pipeline.ps1' -environment "AzureDevOps" -version "ci" -appBuild 198 -appRevision 0
2021-06-30T08:26:59.3483963Z ========================== Starting Command Output ===========================
2021-06-30T08:26:59.3844698Z ##[command]"C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'c:\Agent\_work\_temp\c66a67d0-60de-4e7a-9598-52af4d7907da.ps1'"
2021-06-30T08:27:00.7772415Z Setting File Directory Path = c:\Agent\_work\5\s\dbas\scripts
2021-06-30T08:27:00.8132306Z Set artifact = /onprem/17.0/no
2021-06-30T08:27:00.8223412Z Set pipelineName = dbase-ci
2021-06-30T08:27:00.8281662Z Set containerName = laptop-jfa-01-dbase-ci
2021-06-30T08:27:00.8503501Z Set installApps = ''
2021-06-30T08:27:00.8555338Z Set previousApps = ''
2021-06-30T08:27:00.8571032Z Set appSourceCopMandatoryAffixes = ''
2021-06-30T08:27:00.8592906Z Set appSourceCopSupportedCountries = ''
2021-06-30T08:27:00.8629031Z Set appFolders = 'app'
2021-06-30T08:27:00.8691070Z Set testFolders = 'test'
2021-06-30T08:27:00.8749278Z Set memoryLimit = '6G'
2021-06-30T08:27:00.8817649Z Set additionalCountries = ''
2021-06-30T08:27:00.8849581Z Set genericImageName = ''
2021-06-30T08:27:00.8904097Z Set vaultNameForLocal = 'BuildVariables'
2021-06-30T08:27:00.8965598Z Set bcContainerHelperVersion = 'preview'
2021-06-30T08:27:00.9073119Z Set installTestFramework = True
2021-06-30T08:27:00.9191594Z Set installTestLibraries = True
2021-06-30T08:27:00.9250389Z Set installPerformanceToolkit = False
2021-06-30T08:27:00.9290184Z Set enableCodeCop = False
2021-06-30T08:27:00.9334075Z Set enableAppSourceCop = False
2021-06-30T08:27:00.9386693Z Set enablePerTenantExtensionCop = False
2021-06-30T08:27:00.9433095Z Set enableUICop = False
2021-06-30T08:27:00.9461798Z Set doNotSignApps = True
2021-06-30T08:27:00.9473406Z Set doNotRunTests = False
2021-06-30T08:27:00.9602340Z Set cacheImage = True
2021-06-30T08:27:00.9646188Z Set CreateRuntimePackages = True
2021-06-30T08:27:02.0392149Z BcContainerHelper version 2.0.14
2021-06-30T08:27:04.5770242Z Dynapro custom script started
2021-06-30T08:27:04.5779706Z testResultsFile =  c:\Agent\_work\5\s\dbas\TestResults.xml
2021-06-30T08:27:04.5786223Z testResultsFiles =  c:\Agent\_work\5\s\dbas\testresults*.xml
2021-06-30T08:27:04.5792325Z ENV:BUILD_REPOSITORY_NAME =  dbas
2021-06-30T08:27:04.5798810Z ENV:BUILD_SOURCESDIRECTORY =  c:\Agent\_work\5\s
2021-06-30T08:27:04.5824615Z Runnin script = C:\Agent\_work\5\s\PowerShell\DevOps DevOpsPipelineMgt.ps1
2021-06-30T08:27:05.3793656Z Dynapro custom script System.Management.Automation.PSCredential
2021-06-30T08:27:05.3922710Z Using custom method for depending apps, DependencyAppFileName: 
2021-06-30T08:27:05.3934127Z installApps: 
2021-06-30T08:27:05.3949823Z Dynapro custom script ended
2021-06-30T08:27:05.6059986Z Determining artifacts to use
2021-06-30T08:27:06.0382667Z   _____                               _                
2021-06-30T08:27:06.0395466Z  |  __ \                             | |               
2021-06-30T08:27:06.0403039Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2021-06-30T08:27:06.0410939Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2021-06-30T08:27:06.0419736Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2021-06-30T08:27:06.0427109Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2021-06-30T08:27:06.0430993Z 
2021-06-30T08:27:06.0438734Z Pipeline name               dbase-ci
2021-06-30T08:27:06.0448722Z Container name              laptop-jfa-01-dbase-ci
2021-06-30T08:27:06.0456492Z Image name                  bcimage
2021-06-30T08:27:06.0464142Z ArtifactUrl                 https://bcartifacts.azureedge.net/onprem/17.0.16993.0/no
2021-06-30T08:27:06.0470958Z SasToken                    Not Specified
2021-06-30T08:27:06.0490619Z BcAuthContext               Not Specified
2021-06-30T08:27:06.0511341Z Environment                 
2021-06-30T08:27:06.0543274Z ReUseContainer              False
2021-06-30T08:27:06.0576383Z KeepContainer               False
2021-06-30T08:27:06.0632391Z Credential                  Specified
2021-06-30T08:27:06.0654752Z MemoryLimit                 6G
2021-06-30T08:27:06.0686146Z Enable Task Scheduler       False
2021-06-30T08:27:06.0724882Z Assign Premium Plan         False
2021-06-30T08:27:06.0744760Z Install Test Runner         False
2021-06-30T08:27:06.0774032Z Install Test Framework      True
2021-06-30T08:27:06.0796111Z Install Test Libraries      True
2021-06-30T08:27:06.0826959Z Install Perf. Toolkit       False
2021-06-30T08:27:06.0862122Z CopySymbolsFromContainer    False
2021-06-30T08:27:06.0904244Z enableCodeCop               False
2021-06-30T08:27:06.0939751Z enableAppSourceCop          False
2021-06-30T08:27:06.0967169Z enableUICop                 False
2021-06-30T08:27:06.0996806Z enablePerTenantExtensionCop False
2021-06-30T08:27:06.1028291Z escapeFromCops              False
2021-06-30T08:27:06.1062389Z useDefaultAppSourceRuleSet  False
2021-06-30T08:27:06.1082708Z rulesetFile                 
2021-06-30T08:27:06.1107677Z azureDevOps                 True
2021-06-30T08:27:06.1131677Z License file                Specified
2021-06-30T08:27:06.1158780Z CodeSignCertPfxFile         Not specified
2021-06-30T08:27:06.1186730Z TestResultsFile             c:\Agent\_work\5\s\dbas\TestResults.xml
2021-06-30T08:27:06.1211904Z TestResultsFormat           JUnit
2021-06-30T08:27:06.1264051Z AdditionalCountries         
2021-06-30T08:27:06.1284568Z PackagesFolder              c:\Agent\_work\5\s\dbas\.packages
2021-06-30T08:27:06.1309169Z OutputFolder                c:\Agent\_work\5\s\dbas\.output
2021-06-30T08:27:06.1337822Z BuildArtifactFolder         c:\Agent\_work\5\a
2021-06-30T08:27:06.1369285Z CreateRuntimePackages       True
2021-06-30T08:27:06.1409346Z AppBuild                    198
2021-06-30T08:27:06.1438430Z AppRevision                 0
2021-06-30T08:27:06.1453854Z Install Apps
2021-06-30T08:27:06.1467413Z - None
2021-06-30T08:27:06.1478825Z Install Test Apps
2021-06-30T08:27:06.1491402Z - None
2021-06-30T08:27:06.1507851Z Previous Apps
2021-06-30T08:27:06.1523717Z - None
2021-06-30T08:27:06.1543038Z Application folders
2021-06-30T08:27:06.1659843Z - c:\Agent\_work\5\s\dbas\app
2021-06-30T08:27:06.1675158Z Test application folders
2021-06-30T08:27:06.1711732Z - c:\Agent\_work\5\s\dbas\test
2021-06-30T08:27:06.2129191Z 
2021-06-30T08:27:06.2141636Z   _____       _ _ _                                          _        _                            
2021-06-30T08:27:06.2157968Z  |  __ \     | | (_)                                        (_)      (_)                           
2021-06-30T08:27:06.2174807Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2021-06-30T08:27:06.2192213Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2021-06-30T08:27:06.2210522Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2021-06-30T08:27:06.2225612Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2021-06-30T08:27:06.2241553Z                            __/ |   __/ |                                                 __/ |     
2021-06-30T08:27:06.2259813Z                           |___/   |___/                                                 |___/      
2021-06-30T08:27:06.2266752Z 
2021-06-30T08:27:07.0456217Z Pulling mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:27:08.0926733Z 
2021-06-30T08:27:08.0936081Z Pulling generic image took 2 seconds
2021-06-30T08:27:08.1268370Z 
2021-06-30T08:27:08.1275953Z    _____                _   _                               _        _                 
2021-06-30T08:27:08.1282025Z   / ____|              | | (_)                             | |      (_)                
2021-06-30T08:27:08.1289085Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-30T08:27:08.1296788Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-30T08:27:08.1307024Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-30T08:27:08.1317803Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-30T08:27:08.1330885Z                                      __/ |                                             
2021-06-30T08:27:08.1340755Z                                     |___/                                              
2021-06-30T08:27:08.1345982Z 
2021-06-30T08:27:09.5190353Z WARNING: Container name should not exceed 15 characters
2021-06-30T08:27:10.0189994Z BcContainerHelper is version 2.0.14
2021-06-30T08:27:10.0198673Z BcContainerHelper is running as administrator
2021-06-30T08:27:10.0242208Z Host is Microsoft Windows 10 Pro - 20H2
2021-06-30T08:27:10.4973299Z Docker Client Version is 20.10.7
2021-06-30T08:27:10.5015071Z Docker Server Version is 20.10.7
2021-06-30T08:27:11.8163076Z Downloading application artifact /onprem/17.0.16993.0/no
2021-06-30T08:27:11.8439226Z Downloading C:\WINDOWS\TEMP\d5edd1f0-2c31-44bd-a605-47d3d627ab08.zip
2021-06-30T08:28:31.0259526Z Unpacking application artifact to tmp folder using Expand-Archive
2021-06-30T08:28:41.8141234Z Downloading platform artifact /onprem/17.0.16993.0/platform
2021-06-30T08:28:41.8178680Z Downloading C:\WINDOWS\TEMP\6b533d73-ebd9-430a-9a2f-da061b81f20d.zip
2021-06-30T08:30:04.0714008Z Unpacking platform artifact to tmp folder using Expand-Archive
2021-06-30T08:31:10.5904441Z Downloading Prerequisite Components
2021-06-30T08:31:10.6166270Z Downloading c:\bcartifacts.cache\onprem\17.0.16993.0\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2021-06-30T08:31:29.8638367Z Downloading c:\bcartifacts.cache\onprem\17.0.16993.0\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2021-06-30T08:31:30.3043143Z Downloading c:\bcartifacts.cache\onprem\17.0.16993.0\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2021-06-30T08:31:31.4154035Z Fetching all docker images
2021-06-30T08:31:31.9691757Z Fetching all docker volumes
2021-06-30T08:31:32.5347821Z ArtifactUrl and ImageName specified
2021-06-30T08:31:33.5031932Z Building image bcimage:onprem-17.0.16993.0-no based on mcr.microsoft.com/businesscentral:10.0.19042.1052 with https://bcartifacts.azureedge.net/onprem/17.0.16993.0/no
2021-06-30T08:31:33.5054086Z Pulling latest image mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:31:34.5230994Z 10.0.19042.1052: Pulling from businesscentral
2021-06-30T08:31:34.5271581Z Digest: sha256:19541ab987b7dcd9434ed9586b142eeb8667cfb97fedebb33709a3a3ea448d90
2021-06-30T08:31:34.5287202Z Status: Image is up to date for mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:31:34.5304349Z mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:31:35.1590883Z Generic Tag: 1.0.1.7
2021-06-30T08:31:35.7063640Z Container OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:31:35.7077218Z Host OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:31:35.7094964Z Using process isolation
2021-06-30T08:31:35.7164392Z Using license file ***
2021-06-30T08:31:35.7189418Z Downloading c:\bcartifacts.cache\n3m201jv.xai\my\license.flf
2021-06-30T08:31:36.0715102Z Files in c:\bcartifacts.cache\n3m201jv.xai\my:
2021-06-30T08:31:36.0889363Z - license.flf
2021-06-30T08:31:36.0958109Z Copying Platform Artifacts
2021-06-30T08:31:40.8204090Z Copying Database
2021-06-30T08:31:41.0560109Z Copying Licensefile
2021-06-30T08:31:41.0801277Z Copying Installers
2021-06-30T08:31:41.2635308Z Copying Applications
2021-06-30T08:31:42.4777659Z c:\bcartifacts.cache\n3m201jv.xai
2021-06-30T08:33:47.3300235Z Sending build context to Docker daemon  1.373GB
2021-06-30T08:33:47.3305057Z 
2021-06-30T08:33:47.4185916Z Step 1/6 : FROM mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-06-30T08:33:47.4192976Z  ---> 606484f34c35
2021-06-30T08:33:47.4199900Z Step 2/6 : ENV DatabaseServer=localhost DatabaseInstance=SQLEXPRESS DatabaseName=CRONUS IsBcSandbox=N artifactUrl=https://bcartifacts.azureedge.net/onprem/17.0.16993.0/no filesOnly=False
2021-06-30T08:33:47.4598448Z  ---> Running in 3284941e53df
2021-06-30T08:33:48.1181065Z Removing intermediate container 3284941e53df
2021-06-30T08:33:48.1209695Z  ---> 99b02f123baa
2021-06-30T08:33:48.1210242Z Step 3/6 : COPY my /run/
2021-06-30T08:33:48.7181436Z  ---> 0a98b760fae6
2021-06-30T08:33:48.7187833Z Step 4/6 : COPY NAVDVD /NAVDVD/
2021-06-30T08:34:42.3986811Z  ---> c96d6c7ad3f6
2021-06-30T08:34:42.3996681Z Step 5/6 : RUN \Run\start.ps1 -installOnly
2021-06-30T08:34:42.4547453Z  ---> Running in 32a96f313dba
2021-06-30T08:35:01.0303256Z Using installer from C:\Run\150-new
2021-06-30T08:35:01.2312569Z Installing Business Central
2021-06-30T08:35:01.2458288Z Installing from DVD
2021-06-30T08:35:01.2653436Z Starting Local SQL Server
2021-06-30T08:35:05.9408667Z Starting Internet Information Server
2021-06-30T08:35:06.3880067Z Copying Service Tier Files
2021-06-30T08:35:06.4033195Z C:\NAVDVD\ServiceTier\Program Files
2021-06-30T08:35:07.6453968Z C:\NAVDVD\ServiceTier\System64Folder
2021-06-30T08:35:07.7570061Z Copying PowerShell Scripts
2021-06-30T08:35:07.7583298Z C:\NAVDVD\WindowsPowerShellScripts\Cloud\NAVAdministration
2021-06-30T08:35:07.8163253Z C:\NAVDVD\WindowsPowerShellScripts\WebSearch
2021-06-30T08:35:09.0496716Z Copying dependencies
2021-06-30T08:35:09.2593464Z Copying ReportBuilder
2021-06-30T08:35:09.4606030Z Importing PowerShell Modules
2021-06-30T08:35:16.2381214Z Determining Database Collation
2021-06-30T08:35:21.7671525Z Changing Database Server Collation to Norwegian_100_CI_AS
2021-06-30T08:36:16.3916994Z Restoring CRONUS Demo Database
2021-06-30T08:36:19.4119819Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-06-30T08:36:20.7538839Z Modifying Business Central Service Tier Config File for Docker
2021-06-30T08:36:20.7957214Z Creating Business Central Service Tier
2021-06-30T08:36:20.9589263Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-06-30T08:36:21.4763944Z Copying Web Client Files
2021-06-30T08:36:21.4779433Z C:\NAVDVD\WebClient\Microsoft Dynamics NAV
2021-06-30T08:36:21.4794112Z Copying Client Files
2021-06-30T08:36:21.4807712Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-06-30T08:36:21.4821224Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-06-30T08:36:21.4834093Z C:\NAVDVD\LegacyDlls\systemFolder
2021-06-30T08:36:21.4848446Z Copying ModernDev Files
2021-06-30T08:36:21.4860190Z C:\NAVDVD
2021-06-30T08:36:21.4874154Z C:\NAVDVD\ModernDev\program files\Microsoft Dynamics NAV
2021-06-30T08:36:21.4883207Z Copying additional files
2021-06-30T08:36:21.4893834Z Copying ConfigurationPackages
2021-06-30T08:36:21.4906533Z C:\NAVDVD\ConfigurationPackages
2021-06-30T08:36:21.4923774Z Copying Test Assemblies
2021-06-30T08:36:21.4936255Z C:\NAVDVD\Test Assemblies
2021-06-30T08:36:21.4954050Z Copying Applications
2021-06-30T08:36:21.4966659Z C:\NAVDVD\Applications
2021-06-30T08:36:21.4977669Z Starting Business Central Service Tier
2021-06-30T08:39:38.5684967Z Importing CRONUS license file
2021-06-30T08:39:39.5310529Z Stopping Business Central Service Tier
2021-06-30T08:39:39.8044946Z Installation took 279 seconds
2021-06-30T08:39:39.8054690Z Installation complete
2021-06-30T08:41:19.6286082Z Removing intermediate container 32a96f313dba
2021-06-30T08:41:19.6299250Z  ---> acaaab37cd5d
2021-06-30T08:41:19.6311207Z Step 6/6 : LABEL legal="http://go.microsoft.com/fwlink/?LinkId=837447"       created="202106300831"       nav=""       cu=""       country="no"       version="17.0.16993.0"       platform="17.0.16974.0"
2021-06-30T08:41:19.6589874Z  ---> Running in 2d79cfa48ab4
2021-06-30T08:41:20.3729208Z Removing intermediate container 2d79cfa48ab4
2021-06-30T08:41:20.3737707Z  ---> 8e69d6020cd6
2021-06-30T08:41:21.9695453Z Successfully built 8e69d6020cd6
2021-06-30T08:41:21.9809661Z Successfully tagged bcimage:onprem-17.0.16993.0-no
2021-06-30T08:41:23.2083221Z ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them
2021-06-30T08:41:23.2349625Z Building image took 590 seconds
2021-06-30T08:41:24.7947986Z Using image bcimage:onprem-17.0.16993.0-no
2021-06-30T08:41:25.3325473Z Creating Container laptop-jfa-01-dbase-ci
2021-06-30T08:41:25.3483511Z Version: 17.0.16993.0-no
2021-06-30T08:41:25.3491324Z Style: onprem
2021-06-30T08:41:25.3498309Z Multitenant: No
2021-06-30T08:41:25.3522874Z Platform: 17.0.16974.0
2021-06-30T08:41:25.3531478Z Generic Tag: 1.0.1.7
2021-06-30T08:41:25.3539972Z Container OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:41:25.3545605Z Host OS Version: 10.0.19042.1052 (20H2)
2021-06-30T08:41:25.3596619Z Using process isolation
2021-06-30T08:41:25.3622062Z Using locale nb-NO
2021-06-30T08:41:25.3645154Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-06-30T08:41:25.3673271Z Using license file ***
2021-06-30T08:41:25.3690481Z Downloading C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\my\license.flf
2021-06-30T08:41:26.7429223Z Additional Parameters:
2021-06-30T08:41:26.7578928Z --volume "c:\Agent\_work\5\s\dbas:c:\sources"
2021-06-30T08:41:26.7593855Z --env customNavSettings=EnableTaskScheduler=False
2021-06-30T08:41:26.7609785Z Files in C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\my:
2021-06-30T08:41:26.7746470Z - AdditionalOutput.ps1
2021-06-30T08:41:26.7768417Z - license.flf
2021-06-30T08:41:26.7782008Z - MainLoop.ps1
2021-06-30T08:41:26.7790810Z - SetupVariables.ps1
2021-06-30T08:41:26.7801559Z - updatehosts.ps1
2021-06-30T08:41:26.7817500Z Creating container laptop-jfa-01-dbase-ci from image bcimage:onprem-17.0.16993.0-no
2021-06-30T08:41:27.4087421Z bcf241ff193656f1aff20608ddd88164d967401ab4cdba01fdd49fb652efec86
2021-06-30T08:41:33.6460940Z Waiting for container laptop-jfa-01-dbase-ci to be ready
2021-06-30T08:41:38.8850425Z Adding LAPTOP-JFA-01-D to hosts file
2021-06-30T08:41:38.8856962Z Initializing...
2021-06-30T08:41:38.8863045Z Setting host.docker.internal to 192.1.1.140 in container hosts file (copy from host hosts file)
2021-06-30T08:41:38.8870721Z Setting gateway.docker.internal to 192.1.1.140 in container hosts file (copy from host hosts file)
2021-06-30T08:41:38.8878825Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-06-30T08:41:38.8885120Z Setting host.containerhelper.internal to 192.168.208.1 in container hosts file
2021-06-30T08:41:38.8890446Z Starting Container
2021-06-30T08:41:38.8896820Z Hostname is laptop-jfa-01-dbase-ci
2021-06-30T08:41:44.1115246Z PublicDnsName is laptop-jfa-01-dbase-ci
2021-06-30T08:41:44.1123893Z Using NavUserPassword Authentication
2021-06-30T08:41:47.6064314Z Starting Local SQL Server
2021-06-30T08:42:05.0204238Z Starting Internet Information Server
2021-06-30T08:42:06.6126138Z Creating Self Signed Certificate
2021-06-30T08:42:08.2144468Z Self Signed Certificate Thumbprint D4B00BDADC243470DB4FF60125F162D474E669B4
2021-06-30T08:42:08.2146641Z Modifying Service Tier Config File with Instance Specific Settings
2021-06-30T08:42:08.2148907Z Modifying Service Tier Config File with settings from environment variable
2021-06-30T08:42:08.2149439Z Setting EnableTaskScheduler to False
2021-06-30T08:44:31.2564739Z Starting Service Tier
2021-06-30T08:44:31.2571921Z Registering event sources
2021-06-30T08:45:33.9059693Z Creating DotNetCore Web Server Instance
2021-06-30T08:45:33.9073160Z Using license file 'c:\run\my\license.flf'
2021-06-30T08:45:35.6944143Z Import License
2021-06-30T08:45:38.1182480Z Creating http download site
2021-06-30T08:45:42.2258732Z Setting SA Password and enabling SA
2021-06-30T08:45:42.2278639Z Creating admin as SQL User and add to sysadmin
2021-06-30T08:46:04.9355054Z Creating SUPER user
2021-06-30T08:46:04.9361728Z Container IP Address: 192.168.220.34
2021-06-30T08:46:04.9368667Z Container Hostname  : laptop-jfa-01-dbase-ci
2021-06-30T08:46:04.9376445Z Container Dns Name  : laptop-jfa-01-dbase-ci
2021-06-30T08:46:04.9386728Z Web Client          : http://laptop-jfa-01-dbase-ci/BC/
2021-06-30T08:46:04.9397967Z Dev. Server         : http://laptop-jfa-01-dbase-ci
2021-06-30T08:46:04.9406341Z Dev. ServerInstance : BC
2021-06-30T08:46:04.9414592Z Setting laptop-jfa-01-dbase-ci to 192.168.220.34 in host hosts file
2021-06-30T08:46:04.9418187Z 
2021-06-30T08:46:04.9424141Z Files:
2021-06-30T08:46:04.9430470Z http://laptop-jfa-01-dbase-ci:8080/ALLanguage.vsix
2021-06-30T08:46:04.9433623Z 
2021-06-30T08:46:04.9441283Z Container Total Physical Memory is 31.8Gb
2021-06-30T08:46:04.9454225Z Container Free Physical Memory is 7.3Gb
2021-06-30T08:46:04.9466157Z 
2021-06-30T08:46:04.9496166Z Initialization took 267 seconds
2021-06-30T08:46:04.9508804Z Ready for connections!
2021-06-30T08:46:04.9518341Z Reading CustomSettings.config from laptop-jfa-01-dbase-ci
2021-06-30T08:46:08.9187577Z Creating Desktop Shortcuts for laptop-jfa-01-dbase-ci
2021-06-30T08:46:08.9485112Z Container laptop-jfa-01-dbase-ci successfully created
2021-06-30T08:46:08.9489491Z 
2021-06-30T08:46:08.9499606Z Use:
2021-06-30T08:46:08.9514447Z Get-BcContainerEventLog -containerName laptop-jfa-01-dbase-ci to retrieve a snapshot of the event log from the container
2021-06-30T08:46:08.9524247Z Get-BcContainerDebugInfo -containerName laptop-jfa-01-dbase-ci to get debug information about the container
2021-06-30T08:46:08.9537312Z Enter-BcContainer -containerName laptop-jfa-01-dbase-ci to open a PowerShell prompt inside the container
2021-06-30T08:46:08.9548587Z Remove-BcContainer -containerName laptop-jfa-01-dbase-ci to remove the container again
2021-06-30T08:46:08.9559845Z docker logs laptop-jfa-01-dbase-ci to retrieve information about URL's again
2021-06-30T08:46:08.9801711Z 
2021-06-30T08:46:08.9819513Z Creating container took 1141 seconds
2021-06-30T08:46:08.9824715Z 
2021-06-30T08:46:08.9838597Z    _____                      _ _ _                                     
2021-06-30T08:46:08.9850112Z   / ____|                    (_) (_)                                    
2021-06-30T08:46:08.9859057Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-06-30T08:46:08.9874155Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-06-30T08:46:08.9890805Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-06-30T08:46:08.9904926Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-06-30T08:46:08.9918238Z                        | |                 __/ |       | |   | |        
2021-06-30T08:46:08.9934885Z                        |_|                |___/        |_|   |_|        
2021-06-30T08:46:08.9941139Z 
2021-06-30T08:46:09.2164283Z Using Version 1.2.198.0
2021-06-30T08:46:11.9416118Z Using Symbols Folder: c:\Agent\_work\5\s\dbas\.packages
2021-06-30T08:46:30.0827647Z Downloading symbols: Microsoft_Application_17.0.16993.0.app
2021-06-30T08:46:30.0857609Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=16.0.0.0&tenant=default
2021-06-30T08:46:31.9818497Z Adding dependency to System Application from Microsoft
2021-06-30T08:46:31.9833825Z Adding dependency to Base Application from Microsoft
2021-06-30T08:46:31.9882343Z Downloading symbols: Microsoft_System_17.0.16974.0.app
2021-06-30T08:46:31.9892318Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=16.0.0.0&tenant=default
2021-06-30T08:46:33.1229200Z Downloading symbols: Microsoft_System Application_17.0.16993.0.app
2021-06-30T08:46:33.1239710Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=System%20Application&versionText=17.0.0.0&tenant=default
2021-06-30T08:46:34.1429457Z Downloading symbols: Microsoft_Base Application_17.0.16993.0.app
2021-06-30T08:46:34.1439352Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Base%20Application&versionText=17.0.0.0&tenant=default
2021-06-30T08:46:35.4138606Z Compiling...
2021-06-30T08:46:35.4262828Z .\alc.exe /project:"c:\sources\app" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Dynapro AS_Dynapro Base_1.2.198.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"
2021-06-30T08:46:46.4389103Z Microsoft (R) AL Compiler version 6.0.5.10826
2021-06-30T08:46:46.4445596Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-30T08:46:46.4452768Z 
2021-06-30T08:46:46.4469667Z Compilation started for project 'Dynapro Base' containing '73' files at '10:46:35.933'.
2021-06-30T08:46:46.4474400Z 
2021-06-30T08:46:46.4528513Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(18,29): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4536063Z ##[warning]c:\sources\app\dshp\DYPDelayReasonList.Page.al(17,29): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4540550Z ##[warning]c:\sources\app\dshp\DYPContainerTypeCodes.Page.al(20,31): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4549355Z ##[warning]c:\sources\app\dshp\DYPContainerTypeCodes.Page.al(25,36): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4556469Z ##[warning]c:\sources\app\dshp\DYPDelayReasonList.Page.al(22,36): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4562650Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(23,29): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4568871Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(28,33): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4575521Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(33,32): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4582070Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(38,36): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4593776Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(43,29): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4607188Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(48,46): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4616963Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(53,36): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4627495Z ##[warning]c:\sources\app\DYPPickupAddress.Page.al(58,31): warning AL0604: Use of implicit 'with' will be removed in the future. Qualify with 'Rec.'. This warning will become an error in a future release.
2021-06-30T08:46:46.4635637Z c:\sources\app\extensionsPermissionSet.xml(1,1): info AL1027: The file at location 'c:\sources\app\extensionsPermissionSet.xml' matches the definition for 'PermissionSet'.
2021-06-30T08:46:46.4640519Z 
2021-06-30T08:46:46.4655181Z Compilation ended at '10:46:46.329'.
2021-06-30T08:46:46.4660113Z 
2021-06-30T08:46:46.4876191Z c:\Agent\_work\5\s\dbas\.output\Dynapro AS_Dynapro Base_1.2.198.0.app successfully created in 37 seconds
2021-06-30T08:46:46.4920268Z Dynapro AS_Dynapro Base_1.2.198.0.app copied to c:\Agent\_work\5\s\dbas\.packages
2021-06-30T08:46:46.5064113Z   _____                            _   _               _______       _     _______          _ _    _ _   
2021-06-30T08:46:46.5070879Z  |_   _|                          | | (_)             |__   __|     | |   |__   __|        | | |  (_) |  
2021-06-30T08:46:46.5078237Z    | |  _ __ ___  _ __   ___  _ __| |_ _ _ __   __ _     | | ___ ___| |_     | | ___   ___ | | | ___| |_ 
2021-06-30T08:46:46.5088080Z    | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` |    | |/ _ \ __| __|    | |/ _ \ / _ \| | |/ / | __|
2021-06-30T08:46:46.5109891Z   _| |_| | | | | | |_) | (_) | |  | |_| | | | | (_| |    | |  __\__ \ |_     | | (_) | (_) | |   <| | |_ 
2021-06-30T08:46:46.5119531Z  |_____|_| |_| |_| .__/ \___/|_|   \__|_|_| |_|\__, |    |_|\___|___/\__|    |_|\___/ \___/|_|_|\_\_|\__|
2021-06-30T08:46:46.5128640Z                  | |                            __/ |                                                    
2021-06-30T08:46:46.5140112Z                  |_|                           |___/                                                     
2021-06-30T08:46:51.5325288Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\898d208e-842d-4468-afc8-6dda2d8ab9fa\Microsoft_Test Runner.app
2021-06-30T08:46:58.7508888Z Synchronizing Test Runner on tenant default
2021-06-30T08:47:04.2299630Z Installing Test Runner on tenant default
2021-06-30T08:47:07.7659385Z App Microsoft_Test Runner.app successfully published
2021-06-30T08:47:14.3763550Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\96177b1b-22cf-432f-8635-8f147af7eef1\Microsoft_Any.app
2021-06-30T08:47:14.5761486Z Synchronizing Any on tenant default
2021-06-30T08:47:14.6361593Z Installing Any on tenant default
2021-06-30T08:47:14.9370898Z App Microsoft_Any.app successfully published
2021-06-30T08:47:19.1836367Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\bb54ef60-b288-4f51-a774-5ff575466a55\Microsoft_Library Assert.app
2021-06-30T08:47:19.5177439Z Synchronizing Library Assert on tenant default
2021-06-30T08:47:19.6559842Z Installing Library Assert on tenant default
2021-06-30T08:47:20.1343667Z App Microsoft_Library Assert.app successfully published
2021-06-30T08:47:23.5900628Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\a739fc96-609a-4beb-ad80-632056b0c124\Microsoft_Library Variable Storage.app
2021-06-30T08:47:23.7163352Z Synchronizing Library Variable Storage on tenant default
2021-06-30T08:47:23.7817184Z Installing Library Variable Storage on tenant default
2021-06-30T08:47:23.9015716Z App Microsoft_Library Variable Storage.app successfully published
2021-06-30T08:47:27.8463399Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\6e7ae395-92f8-4398-8520-d319f9550189\Microsoft_System Application Test Library.app
2021-06-30T08:47:29.3688287Z Synchronizing System Application Test Library on tenant default
2021-06-30T08:47:29.6700067Z Installing System Application Test Library on tenant default
2021-06-30T08:47:30.2465672Z App Microsoft_System Application Test Library.app successfully published
2021-06-30T08:47:33.4467393Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\6aa7c5e1-23f2-48d7-a267-4de558c86767\Microsoft_Tests-TestLibraries.app
2021-06-30T08:48:37.8723360Z Synchronizing Tests-TestLibraries on tenant default
2021-06-30T08:48:39.3684318Z Installing Tests-TestLibraries on tenant default
2021-06-30T08:48:43.7735194Z App Microsoft_Tests-TestLibraries.app successfully published
2021-06-30T08:48:43.7779246Z TestToolkit successfully imported
2021-06-30T08:48:43.7890028Z 
2021-06-30T08:48:43.7900446Z Importing Test Toolkit took 117 seconds
2021-06-30T08:48:43.7912290Z    _____                      _ _ _               _           _                           
2021-06-30T08:48:43.7922978Z   / ____|                    (_) (_)             | |         | |                          
2021-06-30T08:48:43.7929226Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _  | |_ ___ ___| |_    __ _ _ __  _ __  ___ 
2021-06-30T08:48:43.7935620Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` | | __/ _ \ __| __|  / _` | '_ \| '_ \/ __|
2021-06-30T08:48:43.7942006Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | |_  __\__ \ |_  | (_| | |_) | |_) \__ \
2021-06-30T08:48:43.7948197Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__\___|___/\__|  \__,_| .__/| .__/|___/
2021-06-30T08:48:43.7957434Z                        | |                 __/ |                         | |   | |        
2021-06-30T08:48:43.7968137Z                        |_|                |___/                          |_|   |_|        
2021-06-30T08:48:43.7982534Z Using Version 1.0.198.0
2021-06-30T08:48:46.0033563Z Using Symbols Folder: c:\Agent\_work\5\s\dbas\.packages
2021-06-30T08:48:46.9566962Z Downloading symbols: Microsoft_Library Assert_17.0.16993.0.app
2021-06-30T08:48:46.9590544Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Library%20Assert&versionText=16.0.0.0&tenant=default
2021-06-30T08:48:47.7697468Z Downloading symbols: Microsoft_Tests-TestLibraries_17.0.16993.0.app
2021-06-30T08:48:47.7711792Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=16.0.0.0&tenant=default
2021-06-30T08:48:48.5740106Z Adding dependency to System Application Test Library from Microsoft
2021-06-30T08:48:48.5751671Z Adding dependency to Library Variable Storage from Microsoft
2021-06-30T08:48:48.5795250Z Downloading symbols: Microsoft_System Application Test Library_17.0.16993.0.app
2021-06-30T08:48:48.5804203Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=System%20Application%20Test%20Library&versionText=17.0.0.0&tenant=default
2021-06-30T08:48:49.3456591Z Adding dependency to System Application from Microsoft
2021-06-30T08:48:49.3471692Z Adding dependency to Any from Microsoft
2021-06-30T08:48:49.3495966Z Downloading symbols: Microsoft_Library Variable Storage_17.0.16993.0.app
2021-06-30T08:48:49.3505132Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Library%20Variable%20Storage&versionText=17.0.0.0&tenant=default
2021-06-30T08:48:50.0844063Z Downloading symbols: Microsoft_Any_17.0.16993.0.app
2021-06-30T08:48:50.0855257Z Url : http://192.168.220.34:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=17.0.0.0&tenant=default
2021-06-30T08:48:50.8567094Z Compiling...
2021-06-30T08:48:50.8586092Z .\alc.exe /project:"c:\sources\test" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Dynapro AS_Dynapro Base Test_1.0.198.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"
2021-06-30T08:49:05.9786260Z Microsoft (R) AL Compiler version 6.0.5.10826
2021-06-30T08:49:05.9794608Z Copyright (C) Microsoft Corporation. All rights reserved
2021-06-30T08:49:05.9800466Z 
2021-06-30T08:49:05.9827941Z Compilation started for project 'Dynapro Base Test' containing '1' files at '10:48:51.269'.
2021-06-30T08:49:05.9838711Z 
2021-06-30T08:49:05.9851736Z 
2021-06-30T08:49:05.9864472Z Compilation ended at '10:49:5.924'.
2021-06-30T08:49:05.9870726Z 
2021-06-30T08:49:05.9905664Z c:\Agent\_work\5\s\dbas\.output\Dynapro AS_Dynapro Base Test_1.0.198.0.app successfully created in 22 seconds
2021-06-30T08:49:05.9936306Z Dynapro AS_Dynapro Base Test_1.0.198.0.app copied to c:\Agent\_work\5\s\dbas\.packages
2021-06-30T08:49:06.0174833Z 
2021-06-30T08:49:06.0192743Z Compiling apps, test apps and importing test toolkit took 177 seconds
2021-06-30T08:49:06.0199991Z 
2021-06-30T08:49:06.0219503Z   _____       _     _ _     _     _                                        
2021-06-30T08:49:06.0229293Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-06-30T08:49:06.0237819Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-06-30T08:49:06.0245239Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-06-30T08:49:06.0253439Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-06-30T08:49:06.0260928Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-06-30T08:49:06.0268485Z                                            __/ |          | |   | |        
2021-06-30T08:49:06.0278728Z                                           |___/           |_|   |_|        
2021-06-30T08:49:06.0285139Z 
2021-06-30T08:49:09.0450206Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\0f376118-9788-4c1b-8432-550df3dc0f83\Dynapro AS_Dynapro Base_1.2.198.0.app
2021-06-30T08:49:09.8960648Z Synchronizing Dynapro Base on tenant default
2021-06-30T08:49:12.1149706Z Installing Dynapro Base on tenant default
2021-06-30T08:49:14.2259836Z App Dynapro AS_Dynapro Base_1.2.198.0.app successfully published
2021-06-30T08:49:18.4823791Z Publishing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci\5ee2e647-5f43-47a8-aa81-a1a346eac03e\Dynapro AS_Dynapro Base Test_1.0.198.0.app
2021-06-30T08:49:18.8242623Z Synchronizing Dynapro Base Test on tenant default
2021-06-30T08:49:18.9553269Z Installing Dynapro Base Test on tenant default
2021-06-30T08:49:19.0824365Z App Dynapro AS_Dynapro Base Test_1.0.198.0.app successfully published
2021-06-30T08:49:19.0971290Z 
2021-06-30T08:49:19.0985171Z Publishing apps took 13 seconds
2021-06-30T08:49:19.0988179Z 
2021-06-30T08:49:19.0999383Z   _____                   _               _______       _       
2021-06-30T08:49:19.1007455Z  |  __ \                 (_)             |__   __|     | |      
2021-06-30T08:49:19.1015233Z  | |__) |   _ _ __  _ __  _ _ __   __ _     | | ___ ___| |_ ___ 
2021-06-30T08:49:19.1055287Z  |  _  / | | | '_ \| '_ \| | '_ \ / _` |    | |/ _ \ __| __/ __|
2021-06-30T08:49:19.1068127Z  | | \ \ |_| | | | | | | | | | | | (_| |    | |  __\__ \ |_\__ \
2021-06-30T08:49:19.1082751Z  |_|  \_\__,_|_| |_|_| |_|_|_| |_|\__, |    |_|\___|___/\__|___/
2021-06-30T08:49:19.1093226Z                                    __/ |                        
2021-06-30T08:49:19.1100144Z                                   |___/                         
2021-06-30T08:49:19.1103529Z 
2021-06-30T08:50:59.4584520Z   Codeunit 91011 DBAS Tests Success (40.34 seconds)
2021-06-30T08:50:59.5142073Z     Testfunction FieldTest Success (0.193 seconds)
2021-06-30T08:50:59.5236793Z     Testfunction TransferLineTransport Success (22.974 seconds)
2021-06-30T08:50:59.5260017Z     Testfunction SalesLineTransport Success (16.27 seconds)
2021-06-30T08:50:59.5285279Z     Testfunction SalesHeaderTransport Success (0.413 seconds)
2021-06-30T08:50:59.5372445Z     Testfunction SalesHeaderEDI Success (0.357 seconds)
2021-06-30T08:50:59.5399717Z     Testfunction TestFieldCustomerEDIID Success (0.07 seconds)
2021-06-30T08:50:59.5405202Z     Testfunction TestFieldEDIUnitOfMeasure Success (0.063 seconds)
2021-06-30T08:51:00.5902132Z 
2021-06-30T08:51:00.5920707Z Running tests took 101 seconds
2021-06-30T08:51:00.6005057Z    _____                    _          ____        _ _     _                 _   _  __           _       
2021-06-30T08:51:00.6014580Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2021-06-30T08:51:00.6025312Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-06-30T08:51:00.6035908Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2021-06-30T08:51:00.6046719Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2021-06-30T08:51:00.6060538Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2021-06-30T08:51:00.6074582Z              | |     __/ |                                                                               
2021-06-30T08:51:00.6089804Z              |_|    |___/                                                                                
2021-06-30T08:51:00.6663114Z Getting Runtime Package for Dynapro AS_Dynapro Base_1.2.198.0.app
2021-06-30T08:51:01.8951462Z Copying runtime package to build artifact
2021-06-30T08:51:01.9154345Z 
2021-06-30T08:51:01.9169259Z Copying to Build Artifacts took 1 seconds
2021-06-30T08:51:01.9178724Z 
2021-06-30T08:51:01.9200862Z   _____                           _                _____            _        _                 
2021-06-30T08:51:01.9213908Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-06-30T08:51:01.9225517Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-06-30T08:51:01.9238536Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-06-30T08:51:01.9250382Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-06-30T08:51:01.9285174Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-06-30T08:51:01.9304126Z                                            __/ |                                               
2021-06-30T08:51:01.9316508Z                                           |___/                                                
2021-06-30T08:51:01.9328672Z 
2021-06-30T08:51:07.0604461Z Removing container laptop-jfa-01-dbase-ci
2021-06-30T08:51:11.2435647Z Removing laptop-jfa-01-dbase-ci from container hosts file
2021-06-30T08:51:11.4881712Z Removing laptop-jfa-01-dbase-ci-* from container hosts file
2021-06-30T08:51:11.5112813Z Removing C:\ProgramData\BcContainerHelper\Extensions\laptop-jfa-01-dbase-ci
2021-06-30T08:51:11.5988435Z 
2021-06-30T08:51:11.6002827Z Removing container took 10 seconds
2021-06-30T08:51:11.6018357Z NOTE: The app in c:\Agent\_work\5\s\dbas\app has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-06-30T08:51:11.6255689Z 
2021-06-30T08:51:11.6277617Z AL Pipeline finished in 1445 seconds
2021-06-30T08:51:11.7823099Z ##[section]Finishing: Run Pipeline
freddydk commented 3 years ago

@JonFjolnirAlbertsson it looks like your pipeline completes - does it show as an error in Azure DevOps?

JonFjolnirAlbertsson commented 3 years ago

Yes

@.D76DA0.E0E4B980] @.D76DA0.E0E4B980]

Med vennlig hilsen / Best regards Jón Fjölnir Albertsson

Fra: Freddy Kristiansen @.> Sendt: onsdag 30. juni 2021 11:08 Til: microsoft/navcontainerhelper @.> Kopi: Jón Fjölnir Albertsson @.>; Mention @.> Emne: Re: [microsoft/navcontainerhelper] ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them (#1979)

@JonFjolnirAlbertssonhttps://github.com/JonFjolnirAlbertsson it looks like your pipeline completes - does it show as an error in Azure DevOps?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/microsoft/navcontainerhelper/issues/1979#issuecomment-871228142, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACZDSC7BUYVYEQLJI3BNIVTTVLNF7ANCNFSM47QLJ5HA.

JonFjolnirAlbertsson commented 3 years ago

Pipeline error

freddydk commented 3 years ago

Could you try to run a simple new-bccontainer command on that machine:

$artifactUrl = Get-BCArtifactUrl -country us $auth = "UserPassword" New-BcContainer -accept_eula -artifactUrl $artifactUrl ` -auth $auth -Credential $credential -imageName "my"

and paste the full output here, thanks

JonFjolnirAlbertsson commented 3 years ago

PS >New-BcContainer -accept_eula -artifactUrl $artifactUrl -auth $auth -Credential $credential -imageName "my" BcContainerHelper is version 2.0.14 BcContainerHelper is running as administrator Host is Microsoft Windows 10 Pro - 20H2 Docker Client Version is 20.10.7 Docker Server Version is 20.10.7 Downloading application artifact /sandbox/18.2.26217.27444/us Downloading C:\Users\JónFjölnirAlbertsson\AppData\Local\Temp\d813a981-3f7b-4d1d-91a7-e0d54dfa0d0d.zip Unpacking application artifact to tmp folder using Expand-Archive Downloading platform artifact /sandbox/18.2.26217.27444/platform Downloading C:\Users\JónFjölnirAlbertsson\AppData\Local\Temp\c913c4c1-06da-4b2d-a606-66899a0c4441.zip Unpacking platform artifact to tmp folder using Expand-Archive Downloading Prerequisite Components Downloading c:\bcartifacts.cache\sandbox\18.2.26217.27444\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi Downloading c:\bcartifacts.cache\sandbox\18.2.26217.27444\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi Downloading c:\bcartifacts.cache\sandbox\18.2.26217.27444\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe Fetching all docker images Fetching all docker volumes ArtifactUrl and ImageName specified Building multitenant image my:sandbox-18.2.26217.27444-us-mt based on mcr.microsoft.com/businesscentral:10.0.19042.1052 with https://bcartifacts.azureedge.net/sandbox/18.2.26217.27444/us Pulling latest image mcr.microsoft.com/businesscentral:10.0.19042.1052 10.0.19042.1052: Pulling from businesscentral Digest: sha256:19541ab987b7dcd9434ed9586b142eeb8667cfb97fedebb33709a3a3ea448d90 Status: Image is up to date for mcr.microsoft.com/businesscentral:10.0.19042.1052 mcr.microsoft.com/businesscentral:10.0.19042.1052 Generic Tag: 1.0.1.7 Container OS Version: 10.0.19042.1052 (20H2) Host OS Version: 10.0.19042.1052 (20H2) Using process isolation Files in c:\bcartifacts.cache\a2umsfrx.wsm\my: Copying Platform Artifacts Copying Database Copying Licensefile Copying ConfigurationPackages Copying Extensions Copying Applications.US c:\bcartifacts.cache\a2umsfrx.wsm Sending build context to Docker daemon 2.023GB

Step 1/6 : FROM mcr.microsoft.com/businesscentral:10.0.19042.1052 ---> 606484f34c35 Step 2/6 : ENV DatabaseServer=localhost DatabaseInstance=SQLEXPRESS DatabaseName=CRONUS IsBcSandbox=Y artifactUrl=https://bcartifacts.azureedge.net/sandbox/18.2.26217.27444/us filesOnly=False ---> Running in 869376548d4e Removing intermediate container 869376548d4e ---> 0332dd80920a Step 3/6 : COPY my /run/ ---> 7ac19fab7498 Step 4/6 : COPY NAVDVD /NAVDVD/ ---> cdf99cc15a25 Step 5/6 : RUN \Run\start.ps1 -installOnly -multitenant ---> Running in e7ae288f2109 Using installer from C:\Run\150-new Installing Business Central Installing from DVD Starting Local SQL Server Starting Internet Information Server Copying Service Tier Files C:\NAVDVD\ServiceTier\Program Files C:\NAVDVD\ServiceTier\System64Folder Copying PowerShell Scripts C:\NAVDVD\WindowsPowerShellScripts\Cloud\NAVAdministration C:\NAVDVD\WindowsPowerShellScripts\WebSearch Copying dependencies Copying ReportBuilder Importing PowerShell Modules Determining Database Collation Restoring CRONUS Demo Database Setting CompatibilityLevel for tenant on localhost\SQLEXPRESS Exporting Application to CRONUS Removing Application from tenant Modifying Business Central Service Tier Config File for Docker Creating Business Central Service Tier Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll' Copying Web Client Files C:\NAVDVD\WebClient\Microsoft Dynamics NAV Copying Client Files C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV C:\NAVDVD\LegacyDlls\systemFolder Copying ModernDev Files C:\NAVDVD C:\NAVDVD\ModernDev\program files\Microsoft Dynamics NAV Copying additional files Copying ConfigurationPackages C:\NAVDVD\ConfigurationPackages Copying Test Assemblies C:\NAVDVD\Test Assemblies Copying Extensions C:\NAVDVD\Extensions Copying Applications C:\NAVDVD\Applications Copying Applications.US C:\NAVDVD\Applications.US Starting Business Central Service Tier Importing CRONUS license file Copying Database on localhost\SQLEXPRESS from tenant to default Taking database tenant offline Copying database files Attaching files as new Database default Putting database tenant back online Mounting tenant database Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False Sync'ing Tenant Tenant is Operational Stopping Business Central Service Tier Installation took 242 seconds Installation complete Removing intermediate container e7ae288f2109 ---> abc99c34cafc Step 6/6 : LABEL legal=http://go.microsoft.com/fwlink/?LinkId=837447 created="202106301114" nav="" cu="" multitenant="Y" country="US" version="18.2.26217.27444" platform="18.0.26213.27342" ---> Running in e8085a08c963 Removing intermediate container e8085a08c963 ---> 4f11201a1110 Successfully built 4f11201a1110 Successfully tagged my:sandbox-18.2.26217.27444-us-mt Building image took 567 seconds Using image my:sandbox-18.2.26217.27444-us-mt Creating Container bcserver Version: 18.2.26217.27444-US Style: sandbox Multitenant: Yes Platform: 18.0.26213.27342 Generic Tag: 1.0.1.7 Container OS Version: 10.0.19042.1052 (20H2) Host OS Version: 10.0.19042.1052 (20H2) Using process isolation Using locale en-US Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my:

Files: http://bcserver:8080/ALLanguage.vsix

Container Total Physical Memory is 31.8Gb Container Free Physical Memory is 11.4Gb

Initialization took 194 seconds Ready for connections! Reading CustomSettings.config from bcserver Creating Desktop Shortcuts for bcserver Container bcserver successfully created

Use: Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container Remove-BcContainer -containerName bcserver to remove the container again docker logs bcserver to retrieve information about URL's again

C:\WINDOWS\system32

freddydk commented 3 years ago

In this case, the docker image build didn't throw an error. Strange...

JonFjolnirAlbertsson commented 3 years ago

It only happens when the pipeline agent runs. I have not experienced it when I run it personally.

Med vennlig hilsen / Best regards Jón Fjölnir Albertsson

Fra: Freddy Kristiansen @.> Sendt: onsdag 30. juni 2021 15:03 Til: microsoft/navcontainerhelper @.> Kopi: Jón Fjölnir Albertsson @.>; Mention @.> Emne: Re: [microsoft/navcontainerhelper] ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them (#1979)

In this case, the docker image build didn't throw an error. Strange...

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/microsoft/navcontainerhelper/issues/1979#issuecomment-871384564, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACZDSC4BROX22W3DN4N4QF3TVMIWPANCNFSM47QLJ5HA.

freddydk commented 3 years ago

Can you connect to the agent and run new-bccontainer there?

JonFjolnirAlbertsson commented 3 years ago

Hi that worked. In the meantime I did run the command “$ENV:DOCKER_SCAN_SUGGEST = 'false'” on my computer.

2021-06-30T18:10:27.1183080Z ##[section]Starting: PowerShell 2021-06-30T18:10:27.1369695Z ============================================================================== 2021-06-30T18:10:27.1370039Z Task : PowerShell 2021-06-30T18:10:27.1370297Z Description : Run a PowerShell script on Linux, macOS, or Windows 2021-06-30T18:10:27.1370713Z Version : 2.186.0 2021-06-30T18:10:27.1370945Z Author : Microsoft Corporation 2021-06-30T18:10:27.1371426Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2021-06-30T18:10:27.1371757Z ============================================================================== 2021-06-30T18:10:29.1445906Z Generating script. 2021-06-30T18:10:29.1503896Z Formatted command: . 'c:\Agent_work\18\s\NewContainer.ps1' 2021-06-30T18:10:29.2007670Z ========================== Starting Command Output =========================== 2021-06-30T18:10:29.2329920Z ##[command]"C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'c:\Agent_work_temp\18f51acd-1fd7-482b-9a66-c14e0fc2491b.ps1'" 2021-06-30T18:10:30.7166792Z BcContainerHelper version 2.0.14 2021-06-30T18:11:03.9222114Z BcContainerHelper is version 2.0.14 2021-06-30T18:11:03.9236779Z BcContainerHelper is running as administrator 2021-06-30T18:11:03.9268200Z Host is Microsoft Windows 10 Pro - 20H2 2021-06-30T18:11:04.3789971Z Docker Client Version is 20.10.7 2021-06-30T18:11:04.3827524Z Docker Server Version is 20.10.7 2021-06-30T18:11:05.5467988Z Fetching all docker images 2021-06-30T18:11:06.0418429Z Fetching all docker volumes 2021-06-30T18:11:06.5366832Z ArtifactUrl and ImageName specified 2021-06-30T18:11:06.8821032Z Image my:sandbox-18.2.26217.27444-us-mt already exists 2021-06-30T18:11:07.5954673Z Using image my:sandbox-18.2.26217.27444-us-mt 2021-06-30T18:11:08.1285996Z Creating Container bcserver 2021-06-30T18:11:08.1475024Z Version: 18.2.26217.27444-US 2021-06-30T18:11:08.1488077Z Style: sandbox 2021-06-30T18:11:08.1500918Z Multitenant: Yes 2021-06-30T18:11:08.1528357Z Platform: 18.0.26213.27342 2021-06-30T18:11:08.1540622Z Generic Tag: 1.0.1.7 2021-06-30T18:11:08.1579551Z Container OS Version: 10.0.19042.1052 (20H2) 2021-06-30T18:11:08.1595885Z Host OS Version: 10.0.19042.1052 (20H2) 2021-06-30T18:11:08.1645714Z Using process isolation 2021-06-30T18:11:08.1706045Z Using locale en-US 2021-06-30T18:11:08.1743001Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) 2021-06-30T18:11:08.2264476Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my: 2021-06-30T18:11:08.2410367Z - AdditionalOutput.ps1 2021-06-30T18:11:08.2422662Z - MainLoop.ps1 2021-06-30T18:11:08.2434031Z - SetupVariables.ps1 2021-06-30T18:11:08.2447495Z - updatecontainerhosts.ps1 2021-06-30T18:11:08.2457906Z Creating container bcserver from image my:sandbox-18.2.26217.27444-us-mt 2021-06-30T18:11:08.8084915Z 3a19de734f9845694aa9752494c48dc652e2f01bfeb1a3ded7cbf2d6cd10d5b1 2021-06-30T18:11:13.4807439Z Waiting for container bcserver to be ready 2021-06-30T18:11:19.4098314Z Initializing... 2021-06-30T18:11:19.4098999Z Setting host.containerhelper.internal to 192.168.208.1 in container hosts file 2021-06-30T18:11:19.4099722Z Starting Container 2021-06-30T18:11:19.4100849Z Hostname is bcserver 2021-06-30T18:11:31.2513292Z PublicDnsName is bcserver 2021-06-30T18:11:31.2514395Z WARNING: DNS resolution not working from within the container. 2021-06-30T18:11:32.8173727Z Using NavUserPassword Authentication 2021-06-30T18:11:34.3865901Z Starting Local SQL Server 2021-06-30T18:12:20.5381861Z Starting Internet Information Server 2021-06-30T18:12:34.4611391Z Creating Self Signed Certificate 2021-06-30T18:12:34.4611848Z Self Signed Certificate Thumbprint D57CE56C146F8341314BB70ABD1CAE6FE2BE12F6 2021-06-30T18:12:34.4612749Z Modifying Service Tier Config File with Instance Specific Settings 2021-06-30T18:12:49.7969301Z Starting Service Tier 2021-06-30T18:12:49.7970119Z Registering event sources 2021-06-30T18:13:32.9276936Z Creating DotNetCore Web Server Instance 2021-06-30T18:13:32.9277329Z Enabling Financials User Experience 2021-06-30T18:13:36.0084817Z Dismounting Tenant 2021-06-30T18:13:36.0085148Z Mounting Tenant 2021-06-30T18:13:58.1033230Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2021-06-30T18:13:58.1034123Z Sync'ing Tenant 2021-06-30T18:13:58.1034791Z Tenant is Operational 2021-06-30T18:13:59.7252533Z Creating http download site 2021-06-30T18:13:59.7253205Z Setting SA Password and enabling SA 2021-06-30T18:13:59.7253736Z Creating admin as SQL User and add to sysadmin 2021-06-30T18:14:16.7545174Z Creating SUPER user 2021-06-30T18:14:16.7545799Z Container IP Address: 192.168.209.72 2021-06-30T18:14:16.7546627Z Container Hostname : bcserver 2021-06-30T18:14:16.7547142Z Container Dns Name : bcserver 2021-06-30T18:14:16.7547973Z Web Client : http://bcserver/BC/?tenant=default 2021-06-30T18:14:16.7548773Z Dev. Server : http://bcserver 2021-06-30T18:14:16.7549334Z Dev. ServerInstance : BC 2021-06-30T18:14:16.7550305Z Dev. Server Tenant : default 2021-06-30T18:14:16.7550919Z Setting bcserver-default to 127.0.0.1 in container hosts file 2021-06-30T18:14:16.7551127Z 2021-06-30T18:14:16.7551331Z Files: 2021-06-30T18:14:16.7551629Z http://bcserver:8080/ALLanguage.vsix 2021-06-30T18:14:16.7551851Z 2021-06-30T18:14:16.7552418Z Container Total Physical Memory is 31.8Gb 2021-06-30T18:14:16.7552739Z Container Free Physical Memory is 9.7Gb 2021-06-30T18:14:16.7552896Z 2021-06-30T18:14:16.7553138Z Initialization took 178 seconds 2021-06-30T18:14:16.7553895Z Ready for connections! 2021-06-30T18:14:16.7579107Z Reading CustomSettings.config from bcserver 2021-06-30T18:14:19.7783677Z Creating Desktop Shortcuts for bcserver 2021-06-30T18:14:19.7997226Z Container bcserver successfully created 2021-06-30T18:14:19.8001973Z 2021-06-30T18:14:19.8015534Z Use: 2021-06-30T18:14:19.8035457Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container 2021-06-30T18:14:19.8045932Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container 2021-06-30T18:14:19.8056225Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container 2021-06-30T18:14:19.8066515Z Remove-BcContainer -containerName bcserver to remove the container again 2021-06-30T18:14:19.8078056Z docker logs bcserver to retrieve information about URL's again 2021-06-30T18:14:19.8655031Z ##[section]Finishing: PowerShell

dd

freddydk commented 3 years ago

In this run it reuses the image. I suspect this machine will get the error every time it needs to build an image. I cannot repro that - I will need to see/work with a machine that has this problem.

JonFjolnirAlbertsson commented 3 years ago

Thank you Freddy If you have time and want to, you can get access to my computer? Otherwise it is not so big problem for me now.

Med vennlig hilsen / Best regards Jón Fjölnir Albertsson

Fra: Freddy Kristiansen @.> Sendt: onsdag 30. juni 2021 22:02 Til: microsoft/navcontainerhelper @.> Kopi: Jón Fjölnir Albertsson @.>; Mention @.> Emne: Re: [microsoft/navcontainerhelper] ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them (#1979)

In this run it reuses the image. I suspect this machine will get the error every time it needs to build an image. I cannot repro that - I will need to see/work with a machine that has this problem.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/microsoft/navcontainerhelper/issues/1979#issuecomment-871689451, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACZDSC7Y2WUN2DUNRQKNJRTTVNZ3BANCNFSM47QLJ5HA.

freddydk commented 3 years ago

I foresee this problem to only get bigger going forward, so I would like that. Could you email me on freddyk at microsoft dot com, then I will send a suggestion for a teams meeting - maybe tomorrow 10AM (danish time)?

GreatScott000 commented 3 years ago

Hi Freddy, happy to help if you need anything from me. Just let me know.

JonFjolnirAlbertsson commented 3 years ago

Hi I deleted the image and ran the pipeline again with the PowerShell code you suggested. I see the error now in the log but the run did not fail. It was green and good 😊 The reason might be that I ran this “$ENV:DOCKER_SCAN_SUGGEST = 'false'“ Powershell command yesterday on my computer.

2021-07-01T09:55:42.9005132Z ##[section]Starting: PowerShell 2021-07-01T09:55:42.9147036Z ============================================================================== 2021-07-01T09:55:42.9147316Z Task : PowerShell 2021-07-01T09:55:42.9147531Z Description : Run a PowerShell script on Linux, macOS, or Windows 2021-07-01T09:55:42.9147740Z Version : 2.186.0 2021-07-01T09:55:42.9147917Z Author : Microsoft Corporation 2021-07-01T09:55:42.9148173Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2021-07-01T09:55:42.9148467Z ============================================================================== 2021-07-01T09:55:44.4476021Z Generating script. 2021-07-01T09:55:44.4559667Z Formatted command: . 'c:\Agent_work\18\s\NewContainer.ps1' 2021-07-01T09:55:44.4963814Z ========================== Starting Command Output =========================== 2021-07-01T09:55:44.5170555Z ##[command]"C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'c:\Agent_work_temp\4bfa5df3-34f4-49b5-90da-2e496a47d875.ps1'" 2021-07-01T09:55:45.6833879Z BcContainerHelper version 2.0.14 2021-07-01T09:56:06.8031084Z BcContainerHelper is version 2.0.14 2021-07-01T09:56:06.8045830Z BcContainerHelper is running as administrator 2021-07-01T09:56:06.8074122Z Host is Microsoft Windows 10 Pro - 20H2 2021-07-01T09:56:07.1521377Z Docker Client Version is 20.10.7 2021-07-01T09:56:07.1554101Z Docker Server Version is 20.10.7 2021-07-01T09:56:10.6535311Z Removing container bcserver 2021-07-01T09:56:12.1507370Z Removing C:\ProgramData\BcContainerHelper\Extensions\bcserver 2021-07-01T09:56:12.2828549Z Fetching all docker images 2021-07-01T09:56:12.8948774Z Fetching all docker volumes 2021-07-01T09:56:13.4961378Z ArtifactUrl and ImageName specified 2021-07-01T09:56:13.8773678Z Building multitenant image my:sandbox-18.2.26217.27444-us-mt based on mcr.microsoft.com/businesscentral:10.0.19042.1052 with https://bcartifacts.azureedge.net/sandbox/18.2.26217.27444/us 2021-07-01T09:56:13.8794384Z Pulling latest image mcr.microsoft.com/businesscentral:10.0.19042.1052 2021-07-01T09:56:14.7421862Z 10.0.19042.1052: Pulling from businesscentral 2021-07-01T09:56:14.7467107Z Digest: sha256:19541ab987b7dcd9434ed9586b142eeb8667cfb97fedebb33709a3a3ea448d90 2021-07-01T09:56:14.7479665Z Status: Image is up to date for mcr.microsoft.com/businesscentral:10.0.19042.1052 2021-07-01T09:56:14.7500379Z mcr.microsoft.com/businesscentral:10.0.19042.1052 2021-07-01T09:56:15.2784503Z Generic Tag: 1.0.1.7 2021-07-01T09:56:15.7466733Z Container OS Version: 10.0.19042.1052 (20H2) 2021-07-01T09:56:15.7486917Z Host OS Version: 10.0.19042.1052 (20H2) 2021-07-01T09:56:15.7515443Z Using process isolation 2021-07-01T09:56:15.7593763Z Files in c:\bcartifacts.cache\elbzvcjf.nj1\my: 2021-07-01T09:56:15.7665604Z Copying Platform Artifacts 2021-07-01T09:56:22.1984448Z Copying Database 2021-07-01T09:56:22.6012522Z Copying Licensefile 2021-07-01T09:56:22.6294255Z Copying ConfigurationPackages 2021-07-01T09:56:22.6594492Z Copying Extensions 2021-07-01T09:56:23.1607309Z Copying Applications.US 2021-07-01T09:56:24.3978167Z c:\bcartifacts.cache\elbzvcjf.nj1 2021-07-01T09:57:56.7982443Z Sending build context to Docker daemon 2.023GB 2021-07-01T09:57:56.7986584Z 2021-07-01T09:57:56.8682948Z Step 1/6 : FROM mcr.microsoft.com/businesscentral:10.0.19042.1052 2021-07-01T09:57:56.8687516Z ---> 606484f34c35 2021-07-01T09:57:56.8691820Z Step 2/6 : ENV DatabaseServer=localhost DatabaseInstance=SQLEXPRESS DatabaseName=CRONUS IsBcSandbox=Y artifactUrl=https://bcartifacts.azureedge.net/sandbox/18.2.26217.27444/us filesOnly=False 2021-07-01T09:57:56.8725756Z ---> Using cache 2021-07-01T09:57:56.8730682Z ---> 0332dd80920a 2021-07-01T09:57:56.8734623Z Step 3/6 : COPY my /run/ 2021-07-01T09:57:56.8743550Z ---> Using cache 2021-07-01T09:57:56.8749070Z ---> 7ac19fab7498 2021-07-01T09:57:56.8753844Z Step 4/6 : COPY NAVDVD /NAVDVD/ 2021-07-01T09:58:43.8079757Z ---> 656f6dc45c38 2021-07-01T09:58:43.8083260Z Step 5/6 : RUN \Run\start.ps1 -installOnly -multitenant 2021-07-01T09:58:43.8344498Z ---> Running in a8204de7e7be 2021-07-01T09:58:49.6297554Z Using installer from C:\Run\150-new 2021-07-01T09:58:49.7898769Z Installing Business Central 2021-07-01T09:58:49.8001593Z Installing from DVD 2021-07-01T09:58:49.8158502Z Starting Local SQL Server 2021-07-01T09:58:53.1127833Z Starting Internet Information Server 2021-07-01T09:58:53.5066254Z Copying Service Tier Files 2021-07-01T09:58:53.5170918Z C:\NAVDVD\ServiceTier\Program Files 2021-07-01T09:58:54.3865742Z C:\NAVDVD\ServiceTier\System64Folder 2021-07-01T09:58:54.4953115Z Copying PowerShell Scripts 2021-07-01T09:58:54.4968437Z C:\NAVDVD\WindowsPowerShellScripts\Cloud\NAVAdministration 2021-07-01T09:58:54.5507481Z C:\NAVDVD\WindowsPowerShellScripts\WebSearch 2021-07-01T09:58:55.4468697Z Copying dependencies 2021-07-01T09:58:55.6171556Z Copying ReportBuilder 2021-07-01T09:58:55.7547062Z Importing PowerShell Modules 2021-07-01T09:58:59.3154151Z Determining Database Collation 2021-07-01T09:59:03.1807991Z Restoring CRONUS Demo Database 2021-07-01T09:59:07.7437128Z Setting CompatibilityLevel for tenant on localhost\SQLEXPRESS 2021-07-01T09:59:08.6362274Z Exporting Application to CRONUS 2021-07-01T10:00:13.3153509Z Removing Application from tenant 2021-07-01T10:00:19.7657478Z Modifying Business Central Service Tier Config File for Docker 2021-07-01T10:00:19.8214317Z Creating Business Central Service Tier 2021-07-01T10:00:19.9242282Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll' 2021-07-01T10:00:20.3845571Z Copying Web Client Files 2021-07-01T10:00:20.3853707Z C:\NAVDVD\WebClient\Microsoft Dynamics NAV 2021-07-01T10:00:20.3856694Z Copying Client Files 2021-07-01T10:00:20.3861546Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV 2021-07-01T10:00:20.3870915Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV 2021-07-01T10:00:20.3876660Z C:\NAVDVD\LegacyDlls\systemFolder 2021-07-01T10:00:20.3882935Z Copying ModernDev Files 2021-07-01T10:00:20.3888711Z C:\NAVDVD 2021-07-01T10:00:20.3893988Z C:\NAVDVD\ModernDev\program files\Microsoft Dynamics NAV 2021-07-01T10:00:20.3899274Z Copying additional files 2021-07-01T10:00:20.3905812Z Copying ConfigurationPackages 2021-07-01T10:00:20.3909407Z C:\NAVDVD\ConfigurationPackages 2021-07-01T10:00:20.3914471Z Copying Test Assemblies 2021-07-01T10:00:20.3920115Z C:\NAVDVD\Test Assemblies 2021-07-01T10:00:20.3926880Z Copying Extensions 2021-07-01T10:00:20.3931606Z C:\NAVDVD\Extensions 2021-07-01T10:00:20.3936177Z Copying Applications 2021-07-01T10:00:20.3940907Z C:\NAVDVD\Applications 2021-07-01T10:00:20.3945409Z Copying Applications.US 2021-07-01T10:00:20.3951467Z C:\NAVDVD\Applications.US 2021-07-01T10:00:20.3975551Z Starting Business Central Service Tier 2021-07-01T10:00:32.3126357Z Importing CRONUS license file 2021-07-01T10:00:33.0647817Z Copying Database on localhost\SQLEXPRESS from tenant to default 2021-07-01T10:00:33.1020625Z Taking database tenant offline 2021-07-01T10:00:33.1848287Z Copying database files 2021-07-01T10:00:33.6582423Z Attaching files as new Database default 2021-07-01T10:00:35.2719629Z Putting database tenant back online 2021-07-01T10:00:35.3970588Z Mounting tenant database 2021-07-01T10:00:35.4184281Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2021-07-01T10:02:01.3864804Z Sync'ing Tenant 2021-07-01T10:02:01.9181581Z Tenant is Operational 2021-07-01T10:02:01.9208269Z Stopping Business Central Service Tier 2021-07-01T10:02:02.1858153Z Installation took 192 seconds 2021-07-01T10:02:02.1866551Z Installation complete 2021-07-01T10:03:33.1881407Z Removing intermediate container a8204de7e7be 2021-07-01T10:03:33.1884879Z ---> 0baf9bca6ffc 2021-07-01T10:03:33.1888725Z Step 6/6 : LABEL legal=http://go.microsoft.com/fwlink/?LinkId=837447 created="202107010956" nav="" cu="" multitenant="Y" country="US" version="18.2.26217.27444" platform="18.0.26213.27342" 2021-07-01T10:03:33.2162934Z ---> Running in b95c44026f53 2021-07-01T10:03:33.7166415Z Removing intermediate container b95c44026f53 2021-07-01T10:03:33.7169431Z ---> 836c4ded212f 2021-07-01T10:03:35.2895617Z Successfully built 836c4ded212f 2021-07-01T10:03:35.3017602Z Successfully tagged my:sandbox-18.2.26217.27444-us-mt 2021-07-01T10:03:35.6482294Z 2021-07-01T10:03:35.6484809Z Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them 2021-07-01T10:03:35.7051243Z Building image took 442 seconds 2021-07-01T10:03:37.4108009Z Using image my:sandbox-18.2.26217.27444-us-mt 2021-07-01T10:03:37.9238981Z Creating Container bcserver 2021-07-01T10:03:37.9372858Z Version: 18.2.26217.27444-US 2021-07-01T10:03:37.9389831Z Style: sandbox 2021-07-01T10:03:37.9396596Z Multitenant: Yes 2021-07-01T10:03:37.9463532Z Platform: 18.0.26213.27342 2021-07-01T10:03:37.9474898Z Generic Tag: 1.0.1.7 2021-07-01T10:03:37.9487162Z Container OS Version: 10.0.19042.1052 (20H2) 2021-07-01T10:03:37.9498075Z Host OS Version: 10.0.19042.1052 (20H2) 2021-07-01T10:03:37.9524354Z Using process isolation 2021-07-01T10:03:37.9560183Z Using locale en-US 2021-07-01T10:03:37.9589704Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable) 2021-07-01T10:03:37.9949793Z Files in C:\ProgramData\BcContainerHelper\Extensions\bcserver\my: 2021-07-01T10:03:38.0068134Z - AdditionalOutput.ps1 2021-07-01T10:03:38.0084566Z - MainLoop.ps1 2021-07-01T10:03:38.0095679Z - SetupVariables.ps1 2021-07-01T10:03:38.0102220Z - updatecontainerhosts.ps1 2021-07-01T10:03:38.0108868Z Creating container bcserver from image my:sandbox-18.2.26217.27444-us-mt 2021-07-01T10:03:38.5337572Z cac13aa50e4e46da5fed8e0c626403ea0377070ba2ddefb84306ebab26a44ba4 2021-07-01T10:03:42.3694202Z Waiting for container bcserver to be ready 2021-07-01T10:03:47.0843992Z Initializing... 2021-07-01T10:03:47.0844847Z Setting host.containerhelper.internal to 192.168.208.1 in container hosts file 2021-07-01T10:03:47.0845368Z Starting Container 2021-07-01T10:03:47.0847297Z Hostname is bcserver 2021-07-01T10:03:50.4985529Z PublicDnsName is bcserver 2021-07-01T10:03:50.5022625Z Using NavUserPassword Authentication 2021-07-01T10:03:53.7238378Z Starting Local SQL Server 2021-07-01T10:04:07.0606394Z Starting Internet Information Server 2021-07-01T10:04:08.5701220Z Creating Self Signed Certificate 2021-07-01T10:04:08.5702633Z Self Signed Certificate Thumbprint 99E791ED9D6F0A0038D1B7F5635C070DFFA96F69 2021-07-01T10:04:10.1100879Z Modifying Service Tier Config File with Instance Specific Settings 2021-07-01T10:04:25.3959988Z Starting Service Tier 2021-07-01T10:04:25.3960339Z Registering event sources 2021-07-01T10:05:03.7980764Z Creating DotNetCore Web Server Instance 2021-07-01T10:05:03.7981791Z Enabling Financials User Experience 2021-07-01T10:05:08.4262766Z Dismounting Tenant 2021-07-01T10:05:08.4264482Z Mounting Tenant 2021-07-01T10:05:29.4642310Z Mounting Database for default on server localhost\SQLEXPRESS with AllowAppDatabaseWrite = False 2021-07-01T10:05:31.0799476Z Sync'ing Tenant 2021-07-01T10:05:31.0799980Z Tenant is Operational 2021-07-01T10:05:31.0800847Z Creating http download site 2021-07-01T10:05:31.0801482Z Setting SA Password and enabling SA 2021-07-01T10:05:31.0801971Z Creating admin as SQL User and add to sysadmin 2021-07-01T10:05:47.9658254Z Creating SUPER user 2021-07-01T10:05:47.9658864Z Container IP Address: 192.168.215.144 2021-07-01T10:05:47.9659377Z Container Hostname : bcserver 2021-07-01T10:05:47.9659847Z Container Dns Name : bcserver 2021-07-01T10:05:47.9660331Z Web Client : http://bcserver/BC/?tenant=default 2021-07-01T10:05:47.9660962Z Dev. Server : http://bcserver 2021-07-01T10:05:47.9661427Z Dev. ServerInstance : BC 2021-07-01T10:05:47.9661980Z Dev. Server Tenant : default 2021-07-01T10:05:47.9662462Z Setting bcserver-default to 127.0.0.1 in container hosts file 2021-07-01T10:05:47.9663055Z 2021-07-01T10:05:47.9663415Z Files: 2021-07-01T10:05:47.9663874Z http://bcserver:8080/ALLanguage.vsix 2021-07-01T10:05:47.9664134Z 2021-07-01T10:05:47.9664603Z Container Total Physical Memory is 31.8Gb 2021-07-01T10:05:47.9665198Z Container Free Physical Memory is 10.8Gb 2021-07-01T10:05:47.9665412Z 2021-07-01T10:05:47.9666095Z Initialization took 122 seconds 2021-07-01T10:05:47.9666475Z Ready for connections! 2021-07-01T10:05:47.9687700Z Reading CustomSettings.config from bcserver 2021-07-01T10:05:50.9610475Z Creating Desktop Shortcuts for bcserver 2021-07-01T10:05:51.0017747Z Container bcserver successfully created 2021-07-01T10:05:51.0021135Z 2021-07-01T10:05:51.0029652Z Use: 2021-07-01T10:05:51.0039345Z Get-BcContainerEventLog -containerName bcserver to retrieve a snapshot of the event log from the container 2021-07-01T10:05:51.0049093Z Get-BcContainerDebugInfo -containerName bcserver to get debug information about the container 2021-07-01T10:05:51.0058633Z Enter-BcContainer -containerName bcserver to open a PowerShell prompt inside the container 2021-07-01T10:05:51.0067998Z Remove-BcContainer -containerName bcserver to remove the container again 2021-07-01T10:05:51.0077629Z docker logs bcserver to retrieve information about URL's again 2021-07-01T10:05:51.0835625Z ##[section]Finishing: PowerShell

freddydk commented 3 years ago

Thanks a lot for this info. I will add to the ContainerHelper that it adds this environment variable.

freddydk commented 3 years ago

A preview version of containerhelper should be available within 4 hours with this fix.

JonFjolnirAlbertsson commented 3 years ago

Thank you Freddy for good and fast response.

Med vennlig hilsen / Best regards Jón Fjölnir Albertsson

Fra: Freddy Kristiansen @.> Sendt: torsdag 1. juli 2021 12:57 Til: microsoft/navcontainerhelper @.> Kopi: Jón Fjölnir Albertsson @.>; Mention @.> Emne: Re: [microsoft/navcontainerhelper] ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them (#1979)

A preview version of containerhelper should be available within 4 hours with this fix.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/microsoft/navcontainerhelper/issues/1979#issuecomment-872138083, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACZDSC6BNXNE6C6HF3FN3QTTVRCWVANCNFSM47QLJ5HA.

freddydk commented 3 years ago

The version just published. If you guys can retry after a flush-containerhelpercache (to force a rebuild of all images) then we can see if the fix works. Thanks a lot

GreatScott000 commented 3 years ago

Hi Freddy, Just reran this pipeline and got the same error. I did do the flush-containerhelpercache first. Flush-containerhelpercache output

PS D:\Repos\evolveims\evol001\internal> flush-containerhelpercache Removing Cache D:\bcartifacts.cache\amtx1ixl.edi Removing Cache D:\bcartifacts.cache\onprem bcimage:onprem-18.2.26217.26490-gb was built on artifacts which was removed from the cache, removing image Untagged: bcimage:onprem-18.2.26217.26490-gb Deleted: sha256:9c8ac244792156516321b5ace863df0ea60d69b87a6bdca1041213f74f486987 Deleted: sha256:a2521ac696cce0ea0902f35da3b7fb4d940d0b19f161fe24e71d0a8b862a4e86 Deleted: sha256:4b2697e8adfeb1748f14b2e2d43969537a5c07257ec6ed6466b3c095c037631d Deleted: sha256:169e7bdae9ddd1dae2db4fca418ea551de6b09372b5ecae8ef1bef01eb504d01 Deleted: sha256:1bdd6db3e1119049dfc8e3db5c18c549cc60424d64247182b494dbd430c2fec6 Deleted: sha256:c2dead294e06e75a31f6b56a451e2bfb2fccc7aafae6d78545c22a0ce6d568b1 Deleted: sha256:ad8a81ba27347ac99426cd9f11916b863b6d5e3df2163bb1cfeb4f5908da0e76 Deleted: sha256:17284fca4163cc136cecbfa63a39105d932c0f7448e6cdb894177a9407670c1b bcimage:onprem-17.2.19367.19735-gb was built on artifacts which was removed from the cache, removing image Untagged: bcimage:onprem-17.2.19367.19735-gb Deleted: sha256:a83e4b27c53b8e9334568988d5b9fe2e8288a3e5e7f74ac24d35472a50b15afd Deleted: sha256:3e70f275b71496b92372b65595360ad0c99517791c8403f0582cb81f2879dd45 Deleted: sha256:4ae2cac6ad4134671ea53e952c9705bbcdad8b939dba477965092cac7407b03d Deleted: sha256:6fd4243f0dd9a323af8ffa7d404d47645777c87b7202d00586b67bf2881d9506 Deleted: sha256:4e9c87ed6d9f7432855b009f7b07039977af8bce5f757b0986618ae34d9e5464 Deleted: sha256:c82550157a3d3870de13aca3821a9c9653955d09a3f03f41cf9f2af1569411fb Deleted: sha256:4a5c2a2e6bd4d984b99c675859c97219d5e023592e0828ddbf14d6eb0a0fa1f6 Deleted: sha256:33651b946a92c8c48250b4ea5e2cda886dddeb735eec8245167dc4ed38f5320e Deleted: sha256:69d878efde3632785bd7c5177146b6195082dc2398a68b7dd6d9fbe1d2d901d5 Deleted: sha256:b32258cf0b7fa16752ffb52c0f0630746d5528ba3e451112e7fd0fa6ba3af4bc

: was built on artifacts which was removed from the cache, removing image Deleted: sha256:396c9e803b0b29a9542bfa9e42558defe5e3a440599b6f210e1dd34d9117eba4 Deleted: sha256:a0105a1cbf8a4730f94e1448f705918bb317a47cdc2fbe41eec3fd9b8d1e5f50 Deleted: sha256:efde9e9fc98247e6e5094663e84ca398cacaedf88eff657f3b9492f7d12f2501 Deleted: sha256:aa8df18424b4b41959993e3b15f8272e315d4851b82eed180cdfc4505866a4ba mcr.microsoft.com/businesscentral:10.0.19042.928 is a generic image for an old version of your OS, removing image Untagged: mcr.microsoft.com/businesscentral:10.0.19042.928 Untagged: mcr.microsoft.com/businesscentral@sha256:90d532f0db4f8e48d6f12df74c4f7f35a9f9d461a27dbbd02f963c3b491b95fe Deleted: sha256:0ba97ff6bd58d39415f64afeb500ca86cf06b09e88c06e052f802c868e846e6f internal:onprem-17.2.19367.19735-gb-nodb was built on artifacts which was removed from the cache, removing image Untagged: internal:onprem-17.2.19367.19735-gb-nodb Deleted: sha256:842d8e87ffe7cb0adba13dc0c207e47740913fd3eda07f67f5e1952bf39882cf Deleted: sha256:2d7b5e9dfba1f8aaa2535685f083c3d4ed90c22bd7db02a865f5cf3814137e3b Deleted: sha256:dafa9b82b53b5bb9ac7bc9b1a7f1a50f3c54217fd9ffc42b8b83e74bffe63566 Deleted: sha256:bfacafc5eca29cf1f340b80b391a2f0bd9dce444158d3cd62da228f991b98029 Deleted: sha256:929e879ca5e2018a78f3c88fc590b5e0964ad03b6b791e9348a3c5c4bd34d94c Deleted: sha256:db1da05a86aaa07f888336df73996790d98de7c2fb48a27fbf8fb646c08cf25c mcr.microsoft.com/businesscentral:10.0.19042.867 is a generic image for an old version of your OS, removing image WARNING: Unable to remove image Running Docker image prune Completed

Log output

2021-07-02T11:14:11.2122129Z ##[section]Starting: Run Pipeline
2021-07-02T11:14:11.2199092Z ==============================================================================
2021-07-02T11:14:11.2199307Z Task         : PowerShell
2021-07-02T11:14:11.2199482Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-07-02T11:14:11.2199638Z Version      : 2.186.0
2021-07-02T11:14:11.2199777Z Author       : Microsoft Corporation
2021-07-02T11:14:11.2199987Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-07-02T11:14:11.2200212Z ==============================================================================
2021-07-02T11:14:11.9146803Z Generating script.
2021-07-02T11:14:11.9179155Z Formatted command: . 'D:\agent-evolveims\_work\2\s\scripts\DevOps-Pipeline.ps1' -environment "AzureDevOps" -version "ci" -appBuild 466 -appRevision 0
2021-07-02T11:14:11.9411100Z ========================== Starting Command Output ===========================
2021-07-02T11:14:11.9565390Z ##[command]"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\agent-evolveims\_work\_temp\303f8af3-7876-4b18-9842-a25f8a2a64aa.ps1'"
2021-07-02T11:14:12.3982112Z Set artifact = https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-07-02T11:14:12.3985418Z Set pipelineName = vect001-ci
2021-07-02T11:14:12.3988995Z Set containerName = jtsdesktop-vect001-ci
2021-07-02T11:14:12.4162414Z Set installApps = ''
2021-07-02T11:14:12.4179292Z Set previousApps = 'https://tinyurl.com/22ntvgbk'
2021-07-02T11:14:12.4198718Z Set appSourceCopMandatoryAffixes = 'iMS'
2021-07-02T11:14:12.4217379Z Set appSourceCopSupportedCountries = 'gb'
2021-07-02T11:14:12.4239416Z Set appFolders = 'Legacy,LegacyUTK'
2021-07-02T11:14:12.4268249Z Set testFolders = ''
2021-07-02T11:14:12.4288518Z Set memoryLimit = '6G'
2021-07-02T11:14:12.4308867Z Set additionalCountries = ''
2021-07-02T11:14:12.4335559Z Set genericImageName = ''
2021-07-02T11:14:12.4362297Z Set vaultNameForLocal = 'evolveAppVault'
2021-07-02T11:14:12.4389132Z Set bcContainerHelperVersion = 'Latest'
2021-07-02T11:14:12.4514101Z Set installTestFramework = True
2021-07-02T11:14:12.4543644Z Set installTestLibraries = True
2021-07-02T11:14:12.4570309Z Set installPerformanceToolkit = False
2021-07-02T11:14:12.4598974Z Set enableCodeCop = True
2021-07-02T11:14:12.4623675Z Set enableAppSourceCop = True
2021-07-02T11:14:12.4644804Z Set enablePerTenantExtensionCop = False
2021-07-02T11:14:12.4665189Z Set enableUICop = True
2021-07-02T11:14:12.4684806Z Set doNotSignApps = True
2021-07-02T11:14:12.4691396Z Set doNotRunTests = False
2021-07-02T11:14:12.4710925Z Set cacheImage = True
2021-07-02T11:14:12.4730359Z Set CreateRuntimePackages = True
2021-07-02T11:14:12.4791695Z Set rulesetfile = '_RuleSets\ims.ruleset.json'
2021-07-02T11:14:12.4810152Z Set appPackages = '.packages'
2021-07-02T11:14:13.3053388Z Setting hostHelperFolder = d:\bccontainerhelper
2021-07-02T11:14:13.3083790Z Setting use7zipIfAvailable = true
2021-07-02T11:14:13.3106470Z Setting bcartifactsCacheFolder = d:\bcartifacts.cache
2021-07-02T11:14:13.5230603Z BcContainerHelper version 2.0.14
2021-07-02T11:14:16.9048264Z   _____                               _                
2021-07-02T11:14:16.9051764Z  |  __ \                             | |               
2021-07-02T11:14:16.9055256Z  | |__) |_ _ _ __ __ _ _ __ ___   ___| |_ ___ _ __ ___ 
2021-07-02T11:14:16.9058867Z  |  ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __|
2021-07-02T11:14:16.9062163Z  | |  | (_| | | | (_| | | | | | |  __/ |_  __/ |  \__ \
2021-07-02T11:14:16.9065663Z  |_|   \__,_|_|  \__,_|_| |_| |_|\___|\__\___|_|  |___/
2021-07-02T11:14:16.9067692Z 
2021-07-02T11:14:16.9071093Z Pipeline name               vect001-ci
2021-07-02T11:14:16.9075177Z Container name              jtsdesktop-vect001-ci
2021-07-02T11:14:16.9078248Z Image name                  bcimage
2021-07-02T11:14:16.9084131Z ArtifactUrl                 https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-07-02T11:14:16.9088034Z SasToken                    Not Specified
2021-07-02T11:14:16.9092466Z BcAuthContext               Not Specified
2021-07-02T11:14:16.9097739Z Environment                 
2021-07-02T11:14:16.9103980Z ReUseContainer              False
2021-07-02T11:14:16.9110392Z KeepContainer               False
2021-07-02T11:14:16.9225771Z Credential                  admin/Wete0559
2021-07-02T11:14:16.9742511Z MemoryLimit                 6G
2021-07-02T11:14:16.9748393Z Enable Task Scheduler       False
2021-07-02T11:14:16.9755422Z Assign Premium Plan         False
2021-07-02T11:14:16.9761159Z Install Test Runner         False
2021-07-02T11:14:16.9767705Z Install Test Framework      True
2021-07-02T11:14:16.9774148Z Install Test Libraries      True
2021-07-02T11:14:16.9780396Z Install Perf. Toolkit       False
2021-07-02T11:14:16.9786725Z CopySymbolsFromContainer    False
2021-07-02T11:14:16.9793331Z enableCodeCop               True
2021-07-02T11:14:16.9799537Z enableAppSourceCop          True
2021-07-02T11:14:16.9805799Z enableUICop                 True
2021-07-02T11:14:16.9812092Z enablePerTenantExtensionCop False
2021-07-02T11:14:16.9818049Z escapeFromCops              False
2021-07-02T11:14:16.9824416Z useDefaultAppSourceRuleSet  False
2021-07-02T11:14:16.9830193Z rulesetFile                 D:\agent-evolveims\_work\2\s\_RuleSets\ims.ruleset.json
2021-07-02T11:14:16.9836343Z azureDevOps                 True
2021-07-02T11:14:16.9842627Z License file                Specified
2021-07-02T11:14:16.9850668Z CodeSignCertPfxFile         Not specified
2021-07-02T11:14:16.9856659Z TestResultsFile             D:\agent-evolveims\_work\2\s\TestResults.xml
2021-07-02T11:14:16.9862472Z TestResultsFormat           JUnit
2021-07-02T11:14:16.9887592Z AdditionalCountries         
2021-07-02T11:14:16.9893435Z PackagesFolder              D:\agent-evolveims\_work\2\s\.packages
2021-07-02T11:14:16.9899140Z OutputFolder                D:\agent-evolveims\_work\2\s\.output
2021-07-02T11:14:16.9904977Z BuildArtifactFolder         D:\agent-evolveims\_work\2\a
2021-07-02T11:14:16.9911701Z CreateRuntimePackages       True
2021-07-02T11:14:16.9919001Z AppBuild                    466
2021-07-02T11:14:16.9925198Z AppRevision                 0
2021-07-02T11:14:16.9931368Z Mandatory Affixes           iMS
2021-07-02T11:14:16.9937086Z Supported Countries         gb
2021-07-02T11:14:16.9940314Z Install Apps
2021-07-02T11:14:16.9943811Z - None
2021-07-02T11:14:16.9947016Z Install Test Apps
2021-07-02T11:14:16.9950124Z - None
2021-07-02T11:14:16.9953435Z Previous Apps
2021-07-02T11:14:17.0018024Z - https://tinyurl.com/22ntvgbk
2021-07-02T11:14:17.0021268Z Application folders
2021-07-02T11:14:17.0035689Z - D:\agent-evolveims\_work\2\s\Legacy
2021-07-02T11:14:17.0039020Z - D:\agent-evolveims\_work\2\s\LegacyUTK
2021-07-02T11:14:17.0042236Z Test application folders
2021-07-02T11:14:17.0045543Z - None
2021-07-02T11:14:17.0235367Z 
2021-07-02T11:14:17.0239047Z   _____       _ _ _                                          _        _                            
2021-07-02T11:14:17.0242690Z  |  __ \     | | (_)                                        (_)      (_)                           
2021-07-02T11:14:17.0246208Z  | |__) |   _| | |_ _ __   __ _    __ _  ___ _ __   ___ _ __ _  ___   _ _ __ ___   __ _  __ _  ___ 
2021-07-02T11:14:17.0250290Z  |  ___/ | | | | | | '_ \ / _` |  / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \
2021-07-02T11:14:17.0254483Z  | |   | |_| | | | | | | | (_| | | (_| |  __/ | | |  __/ |  | | (__  | | | | | | | (_| | (_| |  __/
2021-07-02T11:14:17.0258170Z  |_|    \__,_|_|_|_|_| |_|\__, |  \__, |\___|_| |_|\___|_|  |_|\___| |_|_| |_| |_|\__,_|\__, |\___|
2021-07-02T11:14:17.0261641Z                            __/ |   __/ |                                                 __/ |     
2021-07-02T11:14:17.0265022Z                           |___/   |___/                                                 |___/      
2021-07-02T11:14:17.0266927Z 
2021-07-02T11:14:17.8020684Z Pulling mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-07-02T11:14:19.9395616Z 
2021-07-02T11:14:19.9398889Z Pulling generic image took 3 seconds
2021-07-02T11:14:19.9538525Z 
2021-07-02T11:14:19.9542304Z    _____                _   _                               _        _                 
2021-07-02T11:14:19.9545678Z   / ____|              | | (_)                             | |      (_)                
2021-07-02T11:14:19.9549152Z  | |     _ __ ___  __ _| |_ _ _ __   __ _    ___ ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-07-02T11:14:19.9552401Z  | |    | '__/ _ \/ _` | __| | '_ \ / _` |  / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-07-02T11:14:19.9555656Z  | |____| | |  __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | |  __/ |   
2021-07-02T11:14:19.9558958Z   \_____|_|  \___|\__,_|\__|_|_| |_|\__, |  \___\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-07-02T11:14:19.9562164Z                                      __/ |                                             
2021-07-02T11:14:19.9565399Z                                     |___/                                              
2021-07-02T11:14:19.9567160Z 
2021-07-02T11:14:20.3896274Z WARNING: Container name should not exceed 15 characters
2021-07-02T11:14:20.7870235Z BcContainerHelper is version 2.0.14
2021-07-02T11:14:20.7873443Z BcContainerHelper is running as administrator
2021-07-02T11:14:20.7882851Z Host is Microsoft Windows 10 Pro - 20H2
2021-07-02T11:14:20.9165979Z Docker Client Version is 20.10.7
2021-07-02T11:14:20.9177228Z Docker Server Version is 20.10.7
2021-07-02T11:14:21.2565461Z Downloading application artifact /onprem/18.2.26217.26490/gb
2021-07-02T11:14:21.2710108Z Downloading C:\Users\micro\AppData\Local\Temp\2d34abf6-af57-4281-8922-2c0e060cc887.zip
2021-07-02T11:16:24.1946094Z Unpacking application artifact to tmp folder using 7zip
2021-07-02T11:16:28.3453627Z Downloading platform artifact /onprem/18.2.26217.26490/platform
2021-07-02T11:16:28.3463307Z Downloading C:\Users\micro\AppData\Local\Temp\cb917b4e-eefc-40c0-8a79-582e370d7e50.zip
2021-07-02T11:18:44.6718493Z Unpacking platform artifact to tmp folder using 7zip
2021-07-02T11:19:00.7361870Z Downloading Prerequisite Components
2021-07-02T11:19:00.7504924Z Downloading d:\bcartifacts.cache\onprem\18.2.26217.26490\platform\Prerequisite Components\DotNetCore\DotNetCore.1.0.4_1.1.1-WindowsHosting.exe
2021-07-02T11:19:23.6387275Z Downloading d:\bcartifacts.cache\onprem\18.2.26217.26490\platform\Prerequisite Components\Open XML SDK 2.5 for Microsoft Office\OpenXMLSDKv25.msi
2021-07-02T11:19:24.4928080Z Downloading d:\bcartifacts.cache\onprem\18.2.26217.26490\platform\Prerequisite Components\IIS URL Rewrite Module\rewrite_2.0_rtw_x64.msi
2021-07-02T11:19:26.1681471Z Fetching all docker images
2021-07-02T11:19:26.3478534Z Fetching all docker volumes
2021-07-02T11:19:26.5285961Z ArtifactUrl and ImageName specified
2021-07-02T11:19:27.1809212Z Building image bcimage:onprem-18.2.26217.26490-gb based on mcr.microsoft.com/businesscentral:10.0.19042.1052 with https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb
2021-07-02T11:19:27.1816778Z Pulling latest image mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-07-02T11:19:28.0724159Z 10.0.19042.1052: Pulling from businesscentral
2021-07-02T11:19:28.1296697Z Digest: sha256:19541ab987b7dcd9434ed9586b142eeb8667cfb97fedebb33709a3a3ea448d90
2021-07-02T11:19:28.1325068Z Status: Image is up to date for mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-07-02T11:19:28.1915583Z mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-07-02T11:19:28.3950754Z Generic Tag: 1.0.1.7
2021-07-02T11:19:28.5816720Z Container OS Version: 10.0.19042.1052 (20H2)
2021-07-02T11:19:28.5821842Z Host OS Version: 10.0.19042.1052 (20H2)
2021-07-02T11:19:28.5838028Z Using process isolation
2021-07-02T11:19:28.5894832Z Using license file ***
2021-07-02T11:19:28.5902524Z Downloading d:\bcartifacts.cache\4iuxxytx.pne\my\license.flf
2021-07-02T11:19:28.8113468Z Files in d:\bcartifacts.cache\4iuxxytx.pne\my:
2021-07-02T11:19:28.8197859Z - license.flf
2021-07-02T11:19:28.8218854Z Copying Platform Artifacts
2021-07-02T11:19:44.9547276Z Copying Database
2021-07-02T11:19:45.1129604Z Copying Licensefile
2021-07-02T11:19:45.1252189Z Copying ConfigurationPackages
2021-07-02T11:19:45.1980985Z Copying Applications
2021-07-02T11:19:46.2103321Z d:\bcartifacts.cache\4iuxxytx.pne
2021-07-02T11:21:20.8165269Z Sending build context to Docker daemon  1.568GB
2021-07-02T11:21:20.8168345Z 
2021-07-02T11:21:20.8575530Z Step 1/6 : FROM mcr.microsoft.com/businesscentral:10.0.19042.1052
2021-07-02T11:21:20.8578884Z  ---> 606484f34c35
2021-07-02T11:21:20.8582973Z Step 2/6 : ENV DatabaseServer=localhost DatabaseInstance=SQLEXPRESS DatabaseName=CRONUS IsBcSandbox=N artifactUrl=https://bcartifacts.azureedge.net/onprem/18.2.26217.26490/gb filesOnly=False
2021-07-02T11:21:20.8592036Z  ---> Using cache
2021-07-02T11:21:20.8596185Z  ---> 79c2bb8a6f0c
2021-07-02T11:21:20.8599729Z Step 3/6 : COPY my /run/
2021-07-02T11:21:23.9439441Z  ---> 0d1017c6499e
2021-07-02T11:21:23.9443350Z Step 4/6 : COPY NAVDVD /NAVDVD/
2021-07-02T11:26:09.8425690Z  ---> f182b09ecbbf
2021-07-02T11:26:09.8428956Z Step 5/6 : RUN \Run\start.ps1 -installOnly
2021-07-02T11:26:10.0148147Z  ---> Running in 2c152c5e24af
2021-07-02T11:26:43.1720768Z Using installer from C:\Run\150-new
2021-07-02T11:26:43.4652856Z Installing Business Central
2021-07-02T11:26:43.4783904Z Installing from DVD
2021-07-02T11:26:43.5135952Z Starting Local SQL Server
2021-07-02T11:26:52.4693907Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-07-02T11:26:52.4701725Z start...
2021-07-02T11:26:54.5793155Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-07-02T11:26:54.5815478Z start...
2021-07-02T11:26:55.0967868Z Starting Internet Information Server
2021-07-02T11:26:55.8917718Z Copying Service Tier Files
2021-07-02T11:26:55.8960168Z C:\NAVDVD\ServiceTier\Program Files
2021-07-02T11:27:06.0370571Z C:\NAVDVD\ServiceTier\System64Folder
2021-07-02T11:27:06.1122545Z Copying PowerShell Scripts
2021-07-02T11:27:06.1130531Z C:\NAVDVD\WindowsPowerShellScripts\Cloud\NAV***istration
2021-07-02T11:27:06.1597448Z C:\NAVDVD\WindowsPowerShellScripts\WebSearch
2021-07-02T11:27:08.6893052Z Copying dependencies
2021-07-02T11:27:09.2258977Z Copying ReportBuilder
2021-07-02T11:27:09.3024732Z Importing PowerShell Modules
2021-07-02T11:27:10.7238879Z Determining Database Collation
2021-07-02T11:27:50.7177982Z Changing Database Server Collation to Latin1_General_100_CI_AS
2021-07-02T11:28:33.7622876Z Restoring CRONUS Demo Database
2021-07-02T11:28:54.7223008Z Setting CompatibilityLevel for CRONUS on localhost\SQLEXPRESS
2021-07-02T11:28:55.9754774Z Modifying Business Central Service Tier Config File for Docker
2021-07-02T11:28:55.9999191Z Creating Business Central Service Tier
2021-07-02T11:28:56.1247735Z Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
2021-07-02T11:28:56.7831091Z Copying Web Client Files
2021-07-02T11:28:56.7842264Z C:\NAVDVD\WebClient\Microsoft Dynamics NAV
2021-07-02T11:28:56.7849532Z Copying Client Files
2021-07-02T11:28:56.7853406Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-07-02T11:28:56.7857129Z C:\NAVDVD\LegacyDlls\program files\Microsoft Dynamics NAV
2021-07-02T11:28:56.7860566Z C:\NAVDVD\LegacyDlls\systemFolder
2021-07-02T11:28:56.7863910Z Copying ModernDev Files
2021-07-02T11:28:56.7867303Z C:\NAVDVD
2021-07-02T11:28:56.7870731Z C:\NAVDVD\ModernDev\program files\Microsoft Dynamics NAV
2021-07-02T11:28:56.7873955Z Copying additional files
2021-07-02T11:28:56.7877249Z Copying ConfigurationPackages
2021-07-02T11:28:56.7880509Z C:\NAVDVD\ConfigurationPackages
2021-07-02T11:28:56.7883820Z Copying Test Assemblies
2021-07-02T11:28:56.7887031Z C:\NAVDVD\Test Assemblies
2021-07-02T11:28:56.7890248Z Copying Applications
2021-07-02T11:28:56.7893447Z C:\NAVDVD\Applications
2021-07-02T11:28:56.7896696Z Starting Business Central Service Tier
2021-07-02T11:30:17.0492830Z Importing CRONUS license file
2021-07-02T11:30:18.1952196Z Stopping Business Central Service Tier
2021-07-02T11:30:18.4576485Z Installation took 215 seconds
2021-07-02T11:30:18.4580056Z Installation complete
2021-07-02T11:34:26.0019901Z Removing intermediate container 2c152c5e24af
2021-07-02T11:34:26.0023497Z  ---> b336e1f3b484
2021-07-02T11:34:26.0027259Z Step 6/6 : LABEL legal="http://go.microsoft.com/fwlink/?LinkId=837447"       created="202107021119"       nav=""       cu=""       country="gb"       version="18.2.26217.26490"       platform="18.0.26213.26464"
2021-07-02T11:34:26.1769078Z  ---> Running in bf6ad13edb04
2021-07-02T11:34:27.9590728Z Removing intermediate container bf6ad13edb04
2021-07-02T11:34:27.9598305Z  ---> fbe5261bfec5
2021-07-02T11:34:28.7159557Z Successfully built fbe5261bfec5
2021-07-02T11:34:28.8055776Z Successfully tagged bcimage:onprem-18.2.26217.26490-gb
2021-07-02T11:34:29.3669886Z ##[error]Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them
2021-07-02T11:34:29.3952170Z Building image took 902 seconds
2021-07-02T11:34:48.4812355Z Using image bcimage:onprem-18.2.26217.26490-gb
2021-07-02T11:34:48.6400515Z Creating Container jtsdesktop-vect001-ci
2021-07-02T11:34:48.6515015Z Version: 18.2.26217.26490-gb
2021-07-02T11:34:48.6518312Z Style: onprem
2021-07-02T11:34:48.6521520Z Multitenant: No
2021-07-02T11:34:48.6532483Z Platform: 18.0.26213.26464
2021-07-02T11:34:48.6535857Z Generic Tag: 1.0.1.7
2021-07-02T11:34:48.6539297Z Container OS Version: 10.0.19042.1052 (20H2)
2021-07-02T11:34:48.6543058Z Host OS Version: 10.0.19042.1052 (20H2)
2021-07-02T11:34:48.6558592Z Using process isolation
2021-07-02T11:34:48.6571282Z Using locale en-GB
2021-07-02T11:34:48.6582007Z Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
2021-07-02T11:34:48.6632173Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-07-02T11:35:09.4833466Z Using license file https://evolveapp.blob.core.windows.net/app/BC18License.flf
2021-07-02T11:35:09.4841375Z Downloading d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my\license.flf
2021-07-02T11:35:10.2793041Z Additional Parameters:
2021-07-02T11:35:10.2870249Z --volume "D:\agent-evolveims\_work\2\s:c:\sources"
2021-07-02T11:35:10.2873488Z --env customNavSettings=EnableTaskScheduler=False
2021-07-02T11:35:10.2876784Z Files in d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci\my:
2021-07-02T11:35:10.2933379Z - AdditionalOutput.ps1
2021-07-02T11:35:10.2936573Z - license.flf
2021-07-02T11:35:10.2940462Z - MainLoop.ps1
2021-07-02T11:35:10.2944075Z - SetupVariables.ps1
2021-07-02T11:35:10.2947671Z - updatehosts.ps1
2021-07-02T11:35:10.2951193Z Creating container jtsdesktop-vect001-ci from image bcimage:onprem-18.2.26217.26490-gb
2021-07-02T11:35:10.7288857Z 0044e3e1c739dc5ea658106243188389eaba00e1a05e2e9ee2f5e2e0075990ab
2021-07-02T11:35:18.5699129Z Waiting for container jtsdesktop-vect001-ci to be ready
2021-07-02T11:35:30.2086447Z Adding JTSDESKTOP-VECT to hosts file
2021-07-02T11:35:30.2089394Z Initializing...
2021-07-02T11:35:30.2092720Z Setting host.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-07-02T11:35:30.2095931Z Setting gateway.docker.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-07-02T11:35:30.2099145Z Setting kubernetes.docker.internal to 127.0.0.1 in container hosts file (copy from host hosts file)
2021-07-02T11:35:30.2102349Z Setting dbserver.containerhelper.internal to 192.168.0.11 in container hosts file (copy from host hosts file)
2021-07-02T11:35:30.2105524Z Setting host.containerhelper.internal to 172.30.160.1 in container hosts file
2021-07-02T11:35:30.2108634Z Starting Container
2021-07-02T11:35:30.2111832Z Hostname is jtsdesktop-vect001-ci
2021-07-02T11:35:31.3439494Z PublicDnsName is jtsdesktop-vect001-ci
2021-07-02T11:35:32.4875247Z Using NavUserPassword Authentication
2021-07-02T11:35:35.9602581Z Starting Local SQL Server
2021-07-02T11:35:35.9605898Z WARNING: Waiting for service 'SQL Server (SQLEXPRESS) (MSSQL$SQLEXPRESS)' to 
2021-07-02T11:35:37.1344739Z start...
2021-07-02T11:35:40.6948900Z Starting Internet Information Server
2021-07-02T11:35:42.9983664Z Creating Self Signed Certificate
2021-07-02T11:35:42.9987782Z Self Signed Certificate Thumbprint CDDC8B5B9E080EB6A20FCAD17F8286AA7497382B
2021-07-02T11:35:42.9991810Z Modifying Service Tier Config File with Instance Specific Settings
2021-07-02T11:35:42.9995925Z Modifying Service Tier Config File with settings from environment variable
2021-07-02T11:35:45.3073166Z Setting EnableTaskScheduler to False
2021-07-02T11:37:15.3756869Z Starting Service Tier
2021-07-02T11:37:15.3760085Z Registering event sources
2021-07-02T11:38:03.6551946Z Creating DotNetCore Web Server Instance
2021-07-02T11:38:03.6555083Z Using license file 'c:\run\my\license.flf'
2021-07-02T11:38:03.6558442Z Import License
2021-07-02T11:38:05.9147832Z Creating http download site
2021-07-02T11:38:08.1894777Z Setting SA Password and enabling SA
2021-07-02T11:38:10.4779123Z Creating admin as SQL User and add to sysadmin
2021-07-02T11:38:25.6092155Z Creating SUPER user
2021-07-02T11:38:25.6095365Z Container IP Address: 172.30.173.184
2021-07-02T11:38:25.6098703Z Container Hostname  : jtsdesktop-vect001-ci
2021-07-02T11:38:25.6101868Z Container Dns Name  : jtsdesktop-vect001-ci
2021-07-02T11:38:25.6105022Z Web Client          : http://jtsdesktop-vect001-ci/BC/
2021-07-02T11:38:25.6108210Z Dev. Server         : http://jtsdesktop-vect001-ci
2021-07-02T11:38:25.6111326Z Dev. ServerInstance : BC
2021-07-02T11:38:26.7874426Z Setting jtsdesktop-vect001-ci to 172.30.173.184 in host hosts file
2021-07-02T11:38:26.7876124Z 
2021-07-02T11:38:26.7879621Z Files:
2021-07-02T11:38:26.7883080Z http://jtsdesktop-vect001-ci:8080/Microsoft.VisualStudio.Services.VSIXPackage.vsix
2021-07-02T11:38:26.7884886Z 
2021-07-02T11:38:26.7888170Z Container Total Physical Memory is 31.7Gb
2021-07-02T11:38:26.7891400Z Container Free Physical Memory is 6.0Gb
2021-07-02T11:38:26.7893163Z 
2021-07-02T11:38:26.7896380Z Initialization took 176 seconds
2021-07-02T11:38:26.7899534Z Ready for connections!
2021-07-02T11:38:26.7902693Z Reading CustomSettings.config from jtsdesktop-vect001-ci
2021-07-02T11:38:31.8523933Z Creating Desktop Shortcuts for jtsdesktop-vect001-ci
2021-07-02T11:38:31.9399810Z Container jtsdesktop-vect001-ci successfully created
2021-07-02T11:38:31.9401559Z 
2021-07-02T11:38:31.9404794Z Use:
2021-07-02T11:38:31.9409770Z Get-BcContainerEventLog -containerName jtsdesktop-vect001-ci to retrieve a snapshot of the event log from the container
2021-07-02T11:38:31.9415907Z Get-BcContainerDebugInfo -containerName jtsdesktop-vect001-ci to get debug information about the container
2021-07-02T11:38:31.9422417Z Enter-BcContainer -containerName jtsdesktop-vect001-ci to open a PowerShell prompt inside the container
2021-07-02T11:38:31.9428213Z Remove-BcContainer -containerName jtsdesktop-vect001-ci to remove the container again
2021-07-02T11:38:31.9434248Z docker logs jtsdesktop-vect001-ci to retrieve information about URL's again
2021-07-02T11:38:31.9562802Z 
2021-07-02T11:38:31.9566057Z Creating container took 1452 seconds
2021-07-02T11:38:31.9567970Z 
2021-07-02T11:38:31.9571373Z    _____                      _ _ _                                     
2021-07-02T11:38:31.9574540Z   / ____|                    (_) (_)                                    
2021-07-02T11:38:31.9577694Z  | |     ___  _ __ ___  _ __  _| |_ _ __   __ _    __ _ _ __  _ __  ___ 
2021-07-02T11:38:31.9580814Z  | |    / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` |  / _` | '_ \| '_ \/ __|
2021-07-02T11:38:31.9583942Z  | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \
2021-07-02T11:38:31.9587056Z   \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, |  \__,_| .__/| .__/|___/
2021-07-02T11:38:31.9590137Z                        | |                 __/ |       | |   | |        
2021-07-02T11:38:31.9593235Z                        |_|                |___/        |_|   |_|        
2021-07-02T11:38:31.9594955Z 
2021-07-02T11:38:32.2144481Z Using custom ruleset
2021-07-02T11:38:32.2169280Z Using Version 18.2.466.0
2021-07-02T11:38:32.2217938Z Copying previous apps to packages folder
2021-07-02T11:38:32.2355659Z Downloading C:\Users\micro\AppData\Local\Temp\64327412-0ed5-4107-a9ff-eb9b0cb9f77e
2021-07-02T11:38:34.8020128Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy_18.2.460.0.app
2021-07-02T11:38:34.8932402Z Evolve iMS Ltd._Vector Legacy = 18.2.460.0
2021-07-02T11:38:34.9076995Z Extracting D:\agent-evolveims\_work\2\s\.packages\Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app
2021-07-02T11:38:34.9411820Z Evolve iMS Ltd._Vector Legacy UTK = 18.2.460.0
2021-07-02T11:38:34.9468403Z Creating AppSourceCop.json for validation
2021-07-02T11:38:35.6552929Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-07-02T11:38:44.2779661Z Downloading symbols: Microsoft_Application_18.2.26217.26490.app
2021-07-02T11:38:44.2791616Z Url : http://172.30.173.184:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0&tenant=default
2021-07-02T11:38:48.4232729Z Adding dependency to System Application from Microsoft
2021-07-02T11:38:48.4242347Z Adding dependency to Base Application from Microsoft
2021-07-02T11:38:48.4258959Z Downloading symbols: Microsoft_System_18.0.26213.26464.app
2021-07-02T11:38:48.4262632Z Url : http://172.30.173.184:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=1.0.0.0&tenant=default
2021-07-02T11:38:49.6375887Z Downloading symbols: Microsoft_System Application_18.2.26217.26490.app
2021-07-02T11:38:49.6380065Z Url : http://172.30.173.184:7049/BC/dev/packages?publisher=Microsoft&appName=System%20Application&versionText=18.2.0.0&tenant=default
2021-07-02T11:38:50.5152483Z Downloading symbols: Microsoft_Base Application_18.2.26217.26490.app
2021-07-02T11:38:50.5156432Z Url : http://172.30.173.184:7049/BC/dev/packages?publisher=Microsoft&appName=Base%20Application&versionText=18.2.0.0&tenant=default
2021-07-02T11:38:51.3021824Z Compiling...
2021-07-02T11:38:51.3245722Z .\alc.exe /project:"c:\sources\Legacy" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy_18.2.466.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-07-02T11:38:59.6578050Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-07-02T11:38:59.6590304Z Copyright (C) Microsoft Corporation. All rights reserved
2021-07-02T11:38:59.6592180Z 
2021-07-02T11:38:59.6596309Z Compilation started for project 'Vector Legacy' containing '55' files at '12:38:52.654'.
2021-07-02T11:38:59.6598092Z 
2021-07-02T11:38:59.6616030Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(500,50): warning AL0432: Field 'Cross-Reference No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-07-02T11:38:59.6619184Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(505,59): warning AL0432: Field 'Unit of Measure (Cross Ref.)' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-07-02T11:38:59.6621176Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(510,51): warning AL0432: Field 'Cross-Reference Type' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-07-02T11:38:59.6623200Z ##[warning]c:\sources\Legacy\Page\iMSPurchaseInvoiceLines.Page.al(515,55): warning AL0432: Field 'Cross-Reference Type No.' is marked for removal. Reason: Cross-Reference replaced by Item Reference feature.. Tag: 17.0.
2021-07-02T11:38:59.6625159Z ##[warning]c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(274,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-07-02T11:38:59.6627160Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(276,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-07-02T11:38:59.6629379Z ##[warning]c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(731,30): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-07-02T11:38:59.6632922Z ##[warning]c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(276,50): warning AL0432: Table 'Item Cross Reference' is marked for removal. Reason: Replaced by ItemReference table as part of Item Reference feature.. Tag: 18.0.
2021-07-02T11:38:59.6634751Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(394,17): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6639636Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(429,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6643306Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(370,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6646618Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(496,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6650927Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(309,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6654896Z c:\sources\Legacy\Report\iMSPurchaseInvoiceGBVEC.Report.al(371,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6658698Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(386,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6663306Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(450,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6666646Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(458,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6670550Z c:\sources\Legacy\Report\iMSSalesInvoiceGBVEC.Report.al(449,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6673826Z c:\sources\Legacy\Report\iMSSalesShipmentVEC.Report.al(347,29): info AL0667: 'NewPage' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6677611Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(328,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6681320Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(330,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6684990Z c:\sources\Legacy\Report\iMSStatementVEC.Report.al(265,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6688682Z c:\sources\Legacy\Report\iMSOrderConfirmationGBVEC.Report.al(388,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6692279Z c:\sources\Legacy\Report\iMSSalesQuoteGBVEC.Report.al(390,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6695923Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(458,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6699797Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(447,21): info AL0667: 'PageNo' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6704041Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(330,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6708012Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(304,29): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6711915Z c:\sources\Legacy\Report\iMSSalesQuoteGBVECNEW.Report.al(390,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6715959Z c:\sources\Legacy\Report\iMSOrderGBVEC.Report.al(363,33): info AL0667: 'CreateTotals' is being deprecated in the versions: '1.0' or greater.  This warning will become an error in a future release.
2021-07-02T11:38:59.6721776Z ##[warning]'PermissionSet'(,): warning AS0094:  The XML file 'c:\sources\Legacy\extensionsPermissionSet.xml' should not contain Permissions or Permission Sets. Instead, use the dedicated AL object 'PermissionSet'.
2021-07-02T11:38:59.6725301Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50000..50009]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-07-02T11:38:59.6747305Z ##[warning]c:\sources\Legacy\app.json(21,5): warning AS0084: The ID range '[50010..50031]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-07-02T11:38:59.6750842Z ##[warning]c:\sources\Legacy\app.json(34,5): warning AS0053: The compilation target is set to 'OnPrem', but it must be set to 'Cloud' or 'Extension'.
2021-07-02T11:38:59.6751441Z 
2021-07-02T11:38:59.6755709Z Compilation ended at '12:38:59.571'.
2021-07-02T11:38:59.6757536Z 
2021-07-02T11:38:59.6836761Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy_18.2.466.0.app successfully created in 25 seconds
2021-07-02T11:38:59.6854347Z Evolve iMS Ltd._Vector Legacy_18.2.466.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-07-02T11:38:59.7159550Z Using custom ruleset
2021-07-02T11:38:59.7172131Z Using Version 18.2.466.0
2021-07-02T11:38:59.7206310Z Creating AppSourceCop.json for validation
2021-07-02T11:39:00.4780448Z Using Symbols Folder: D:\agent-evolveims\_work\2\s\.packages
2021-07-02T11:39:01.2476298Z Compiling...
2021-07-02T11:39:01.2485979Z .\alc.exe /project:"c:\sources\LegacyUTK" /packagecachepath:"c:\sources\.packages" /out:"c:\sources\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app" /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll /analyzer:C:\build\vsix\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll /ruleset:c:\sources\_RuleSets\ims.ruleset.json /assemblyprobingpaths:"C:\Program Files (x86)\Microsoft Dynamics NAV\180\RoleTailored Client","C:\Program Files\Microsoft Dynamics NAV\180\Service","C:\Program Files (x86)\Open XML SDK\V2.5\lib","c:\Windows\Microsoft.NET\Assembly","C:\Test Assemblies\Mock Assemblies"
2021-07-02T11:39:08.0971374Z Microsoft (R) AL Compiler version 7.2.7.16535
2021-07-02T11:39:08.0975867Z Copyright (C) Microsoft Corporation. All rights reserved
2021-07-02T11:39:08.0977764Z 
2021-07-02T11:39:08.0981031Z Compilation started for project 'Vector Legacy UTK' containing '2' files at '12:39:1.840'.
2021-07-02T11:39:08.0982720Z 
2021-07-02T11:39:08.0991359Z ##[warning]c:\sources\LegacyUTK\app.json(26,5): warning AS0084: The ID range '[50100..50100]' is not valid. It must be within the range allocated to the partner for AppSource, within the range '[1000000..75999999]' allocated to AppSource applications, and outside the range '[50000..99999]' allocated to per-tenant customizations.
2021-07-02T11:39:08.0996104Z ##[warning]c:\sources\LegacyUTK\dataimport\XMLPort.txt(1,1): warning AL1025: The file at location 'c:\sources\LegacyUTK\dataimport\XMLPort.txt' does not match any definition.
2021-07-02T11:39:08.0996994Z 
2021-07-02T11:39:08.0997136Z Compilation ended at '12:39:8.56'.
2021-07-02T11:39:08.0998861Z 
2021-07-02T11:39:08.1008151Z D:\agent-evolveims\_work\2\s\.output\Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app successfully created in 8 seconds
2021-07-02T11:39:08.1023901Z Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app copied to D:\agent-evolveims\_work\2\s\.packages
2021-07-02T11:39:08.1137997Z 
2021-07-02T11:39:08.1141566Z Compiling apps took 36 seconds
2021-07-02T11:39:08.1143511Z 
2021-07-02T11:39:08.1146831Z   _____           _        _ _ _               _____                _                                            
2021-07-02T11:39:08.1150025Z  |_   _|         | |      | | (_)             |  __ \              (_)                     /\                    
2021-07-02T11:39:08.1153149Z    | |  _ __  ___| |_ __ _| | |_ _ __   __ _  | |__) | __ _____   ___  ___  _   _ ___     /  \   _ __  _ __  ___ 
2021-07-02T11:39:08.1156315Z    | | | '_ \/ __| __/ _` | | | | '_ \ / _` | |  ___/ '__/ _ \ \ / / |/ _ \| | | / __|   / /\ \ | '_ \| '_ \/ __|
2021-07-02T11:39:08.1159415Z   _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | |   | | |  __/\ V /| | (_) | |_| \__ \  / ____ \| |_) | |_) \__ \
2021-07-02T11:39:08.1162610Z  |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | |_|   |_|  \___| \_/ |_|\___/ \__,_|___/ /_/    \_\ .__/| .__/|___/
2021-07-02T11:39:08.1165750Z                                         __/ |                                                   | |   | |        
2021-07-02T11:39:08.1168924Z                                        |___/                                                    |_|   |_|        
2021-07-02T11:39:08.1170612Z 
2021-07-02T11:39:08.8444851Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\b07bdefd-d091-44af-98cd-67b06fdaf588\Evolve iMS Ltd._Vector Legacy_18.2.460.0.app
2021-07-02T11:39:17.0622382Z Synchronizing Vector Legacy on tenant default
2021-07-02T11:39:21.2584412Z Installing Vector Legacy on tenant default
2021-07-02T11:39:25.2855471Z App Evolve iMS Ltd._Vector Legacy_18.2.460.0.app successfully published
2021-07-02T11:39:25.9966018Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\fa085d81-06e7-40f7-bb5c-4c960f3783c2\Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app
2021-07-02T11:39:26.4393243Z Synchronizing Vector Legacy UTK on tenant default
2021-07-02T11:39:26.5935931Z Installing Vector Legacy UTK on tenant default
2021-07-02T11:39:26.7006622Z App Evolve iMS Ltd._Vector Legacy UTK_18.2.460.0.app successfully published
2021-07-02T11:39:26.7080083Z 
2021-07-02T11:39:26.7083376Z Installing apps took 19 seconds
2021-07-02T11:39:26.7089734Z 
2021-07-02T11:39:26.7093063Z   _____       _     _ _     _     _                                        
2021-07-02T11:39:26.7096273Z  |  __ \     | |   | (_)   | |   (_)                 /\                    
2021-07-02T11:39:26.7099430Z  | |__) |   _| |__ | |_ ___| |__  _ _ __   __ _     /  \   _ __  _ __  ___ 
2021-07-02T11:39:26.7102603Z  |  ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` |   / /\ \ | '_ \| '_ \/ __|
2021-07-02T11:39:26.7105769Z  | |   | |_| | |_) | | \__ \ | | | | | | | (_| |  / ____ \| |_) | |_) \__ \
2021-07-02T11:39:26.7108872Z  |_|    \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | /_/    \_\ .__/| .__/|___/
2021-07-02T11:39:26.7112016Z                                            __/ |          | |   | |        
2021-07-02T11:39:26.7115192Z                                           |___/           |_|   |_|        
2021-07-02T11:39:26.7116906Z 
2021-07-02T11:39:27.9930755Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\2ecb0446-c03f-4016-b915-61eb94d29706\Evolve iMS Ltd._Vector Legacy_18.2.466.0.app
2021-07-02T11:39:29.1952116Z Synchronizing Vector Legacy on tenant default
2021-07-02T11:39:29.6012489Z Upgrading Vector Legacy on tenant default
2021-07-02T11:39:42.2522661Z App Evolve iMS Ltd._Vector Legacy_18.2.466.0.app successfully published
2021-07-02T11:39:42.8795462Z Publishing C:\ProgramData\BcContainerHelper\Extensions\jtsdesktop-vect001-ci\4bb8a512-1b20-4b0a-b085-2836a0d7b0a0\Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app
2021-07-02T11:39:43.6795530Z Synchronizing Vector Legacy UTK on tenant default
2021-07-02T11:39:43.7598560Z Upgrading Vector Legacy UTK on tenant default
2021-07-02T11:39:43.8389206Z App Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app successfully published
2021-07-02T11:39:43.8461457Z 
2021-07-02T11:39:43.8465560Z Publishing apps took 17 seconds
2021-07-02T11:39:43.8468079Z    _____                    _          ____        _ _     _                 _   _  __           _       
2021-07-02T11:39:43.8471556Z   / ____|                  | |        |  _ \      (_) |   | |     /\        | | (_)/ _|         | |      
2021-07-02T11:39:43.8475382Z  | |     ___  _ __  _   _  | |_ ___   | |_) |_   _ _| | __| |    /  \   _ __| |_ _| |_ __ _  ___| |_ ___ 
2021-07-02T11:39:43.8479172Z  | |    / _ \| '_ \| | | | | __/ _ \  |  _ <| | | | | |/ _` |   / /\ \ | '__| __| |  _/ _` |/ __| __/ __|
2021-07-02T11:39:43.8482901Z  | |____ (_) | |_) | |_| | | |_ (_) | | |_) | |_| | | | (_| |  / ____ \| |  | |_| | || (_| | (__| |_\__ \
2021-07-02T11:39:43.8486731Z   \_____\___/| .__/ \__, |  \__\___/  |____/ \__,_|_|_|\__,_| /_/    \_\_|   \__|_|_| \__,_|\___|\__|___/
2021-07-02T11:39:43.8490500Z              | |     __/ |                                                                               
2021-07-02T11:39:43.8494179Z              |_|    |___/                                                                                
2021-07-02T11:39:43.8717052Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy_18.2.466.0.app
2021-07-02T11:39:45.0058260Z Copying runtime package to build artifact
2021-07-02T11:39:45.0098965Z Getting Runtime Package for Evolve iMS Ltd._Vector Legacy UTK_18.2.466.0.app
2021-07-02T11:39:45.2873682Z Copying runtime package to build artifact
2021-07-02T11:39:45.2947688Z 
2021-07-02T11:39:45.2951123Z Copying to Build Artifacts took 1 seconds
2021-07-02T11:39:45.2953107Z 
2021-07-02T11:39:45.2956430Z   _____                           _                _____            _        _                 
2021-07-02T11:39:45.2959635Z  |  __ \                         (_)              / ____|          | |      (_)                
2021-07-02T11:39:45.2962724Z  | |__) |___ _ __ ___   _____   ___ _ __   __ _  | |     ___  _ __ | |_ __ _ _ _ __   ___ _ __ 
2021-07-02T11:39:45.2965910Z  |  _  // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | | |    / _ \| '_ \| __/ _` | | '_ \ / _ \ '__|
2021-07-02T11:39:45.2969113Z  | | \ \  __/ | | | | | (_) \ V /| | | | | (_| | | |____ (_) | | | | |_ (_| | | | | |  __/ |   
2021-07-02T11:39:45.2972251Z  |_|  \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, |  \_____\___/|_| |_|\__\__,_|_|_| |_|\___|_|   
2021-07-02T11:39:45.2975524Z                                            __/ |                                               
2021-07-02T11:39:45.2980065Z                                           |___/                                                
2021-07-02T11:39:45.2982352Z 
2021-07-02T11:39:46.1894518Z Removing container jtsdesktop-vect001-ci
2021-07-02T11:39:59.5827145Z Removing jtsdesktop-vect001-ci from container hosts file
2021-07-02T11:39:59.6248515Z Removing jtsdesktop-vect001-ci-* from container hosts file
2021-07-02T11:39:59.6471215Z Removing d:\bccontainerhelper\Extensions\jtsdesktop-vect001-ci
2021-07-02T11:39:59.6732115Z 
2021-07-02T11:39:59.6736263Z Removing container took 14 seconds
2021-07-02T11:39:59.6740244Z NOTE: The app in D:\agent-evolveims\_work\2\s\Legacy has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-07-02T11:39:59.6744183Z NOTE: The app in D:\agent-evolveims\_work\2\s\LegacyUTK has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)
2021-07-02T11:39:59.6799269Z 
2021-07-02T11:39:59.6802963Z AL Pipeline finished in 1543 seconds
2021-07-02T11:39:59.7464709Z ##[section]Finishing: Run Pipeline
freddydk commented 3 years ago

@GreatScott000 you are not running the prerelease, you would need that.

GreatScott000 commented 3 years ago

Sorry, forgot to update this. Using the prerelease BCContainerHelper resolved the issue.

freddydk commented 3 years ago

Shipped in 2.0.15