HodorNV / ALOps

ALOps
59 stars 24 forks source link

[FEATURE REQUEST] Expand appversiontemplate with Major/Minor application from app.json #570

Closed Arthurvdv closed 1 year ago

Arthurvdv commented 2 years ago

Is your feature request related to a problem? Please describe. We would like our versioning of our apps as \.\.\.0.

The Major and Minor would be fetched from the application-property in the app.json.

Describe the solution you'd like For example;

app.json

...
  "application": "19.2.0.0",
...

The version of the app would be 19.2.54534.0. The version reflects the minimum version of Business Central the app is compatible with.

Describe alternatives you've considered Populate the app-version-template with PowerShell

- task: PowerShell@2
  displayName: 'Populate app_version_template'
  env:
    APP_FILE: '${{ parameters.app_file }}'
  condition: succeeded()
  inputs:
    targetType: 'inline'
    script: |
      ### Grab the application version from the app file
      $AppFile = $env:APP_FILE
      Write-Host "##[command]Read $AppFile"
      $AppFileObject = Get-Content -Raw -Path $AppFile | ConvertFrom-Json

      $ApplicationVersion = $null
      if ([System.Version]::TryParse($AppFileObject.application, [ref]$ApplicationVersion)) {
          Write-Host "##[command]Found Application version $ApplicationVersion"
      }
      else {
          Write-Error -Message "Invalid Application version in App.json" -ErrorAction Stop
      }

      $v = $ApplicationVersion
      $version = $v.Major.ToString() + "." + $v.Minor.ToString() + "." + "*" + "." + "0"

      Write-Host "##[command]app_version_template:$version"
      Write-Host "##vso[task.setvariable variable=app_version_template]$version"
waldo1001 commented 2 years ago

That should already be possible with "?.?.*.0"?

Arthurvdv commented 2 years ago

I’m like 95% sure the question-mark uses the ‘version’ in stead of the ‘application’ property of the app.json?

waldo1001 commented 1 year ago

Ah, ok, sorry .. my mistake. I was too quick.

Well .. we update that manually .. 🤔. I'll talk it through. HOw would you see the syntax?

Arthurvdv commented 1 year ago

Maybe an extra param: appversiontemplatesource with the values;

Maybe in the future there are other interesting version-context properties in the app.json to retrieve?

waldo1001 commented 1 year ago

We'll make it happen ..

AdminHodor commented 1 year ago

Please check our latest release v1.453 for this feature. You can use the following markers in the ApplicationVersionTemplate:

? = Original Version from App.json

The marker is replaced with the same position from the reference.

Arthurvdv commented 1 year ago

I'm getting an error it seems when I want to implement this; ##[error]Exception calling "Parse" with "1" argument(s): "Input string was not in a correct format."

2022-10-25T08:08:30.0765962Z ##[section]Starting: Compile Extension
2022-10-25T08:08:30.0877370Z ==============================================================================
2022-10-25T08:08:30.0877639Z Task         : ALOps App Compiler
2022-10-25T08:08:30.0877856Z Description  : Compile AL Extension(s) for Business Central
2022-10-25T08:08:30.0878057Z Version      : 2.0.3279
2022-10-25T08:08:30.0878213Z Author       : Hodor
2022-10-25T08:08:30.0878426Z Help         : Compile Business Central extension(s) from AL code.
2022-10-25T08:08:30.0878692Z ==============================================================================
2022-10-25T08:08:31.3431143Z ******************************************************************************
2022-10-25T08:08:31.3436397Z *** ALOps v2 - Preview                                                     ***
2022-10-25T08:08:31.3440181Z ******************************************************************************
2022-10-25T08:08:31.3579982Z *** Importing required ALOps-Functions
2022-10-25T08:08:31.5961988Z *** Task Inputs:
2022-10-25T08:08:31.5999645Z 
2022-10-25T08:08:31.6087674Z name                                             value                                                                 
2022-10-25T08:08:31.6088097Z ----                                             -----                                                                 
2022-10-25T08:08:31.6089428Z artifactversion                                                                                                        
2022-10-25T08:08:31.6089915Z artifacttype                                     Sandbox                                                               
2022-10-25T08:08:31.6090260Z artifactcountry                                  BE                                                                    
2022-10-25T08:08:31.6090832Z versionselect                                    Daily                                                                 
2022-10-25T08:08:31.6092469Z alternativevsixurl                               Latest                                                                
2022-10-25T08:08:31.6092977Z alsourcepath                                     C:\azure-vsts-agent-build\_work\633\s\App                             
2022-10-25T08:08:31.6102742Z ruleset                                          https://vrabadevops.blob.core.windows.net/default/app.ruleset.json?...
2022-10-25T08:08:31.6103184Z suppresswarnings                                 None                                                                  
2022-10-25T08:08:31.6103475Z appversiontemplate                               A.A.*.0                                                               
2022-10-25T08:08:31.6105094Z updatebuildnumber                                False                                                                 
2022-10-25T08:08:31.6114626Z appfilenametemplate                              %APP_PUBLISHER%_%APP_NAME%_%APP_VERSION%_%BC_TYPE%_%BC_VERSION%_%BC...
2022-10-25T08:08:31.6115152Z alcodeanalyzer                                   CodeCop,UICop,PerTenantExtensionCop,BusinessCentral.LinterCop.dll     
2022-10-25T08:08:31.6115558Z showmycode                                       false                                                                 
2022-10-25T08:08:31.6116695Z resourceexposurepolicy_allowdebugging            Enable                                                                
2022-10-25T08:08:31.6117213Z resourceexposurepolicy_allowdownloadingsource    Disable                                                               
2022-10-25T08:08:31.6118408Z resourceexposurepolicy_includesourceinsymbolfile Disable                                                               
2022-10-25T08:08:31.6118817Z internalsvisibleto                               Keep                                                                  
2022-10-25T08:08:31.6119157Z preprocessorsymbols                                                                                                    
2022-10-25T08:08:31.6120869Z applicationinsightskey                                                                                                 
2022-10-25T08:08:31.6121181Z alcachepath                                      C:\azure-vsts-agent-build\_work\633\s                                 
2022-10-25T08:08:31.6121875Z publishartifact                                  True                                                                  
2022-10-25T08:08:31.6122559Z publishxlif                                      False                                                                 
2022-10-25T08:08:31.6123757Z failonwarnings                                   True                                                                  
2022-10-25T08:08:31.6124216Z storageaccount                                                                                                         
2022-10-25T08:08:31.6124519Z sastoken                                                                                                               
2022-10-25T08:08:31.6125728Z printappmanifest                                 True                                                                  
2022-10-25T08:08:31.6126035Z outputalclogs                                    True                                                                  
2022-10-25T08:08:31.6127224Z additionalprobingpaths                                                                                                 
2022-10-25T08:08:31.6127481Z 
2022-10-25T08:08:31.6141360Z 
2022-10-25T08:08:31.6146678Z 
2022-10-25T08:08:31.6272846Z *** For documentation, please visit   : https://www.alops.be/documentation
2022-10-25T08:08:31.6276098Z 
2022-10-25T08:08:32.0839534Z *** ALOps License:
2022-10-25T08:08:32.0859024Z   * Licensed To: Van Roey (Collection License)
2022-10-25T08:08:32.0861783Z 
2022-10-25T08:08:32.1612061Z *** Importing required Task-Functions
2022-10-25T08:08:34.8635819Z 
2022-10-25T08:08:34.8765741Z *** Artifact Type   : [Sandbox]
2022-10-25T08:08:34.8771432Z *** Artifact Version: []
2022-10-25T08:08:34.8777099Z *** Artifact Country: [BE]
2022-10-25T08:08:34.8782721Z *** AL Source Path  : [C:\azure-vsts-agent-build\_work\633\s\App]
2022-10-25T08:08:34.8788546Z *** AL Cache Path   : [C:\azure-vsts-agent-build\_work\633\s]
2022-10-25T08:08:34.8790807Z 
2022-10-25T08:08:34.8810824Z 
2022-10-25T08:08:34.8818264Z *** Fetching Latest VSIX from Marketplace
2022-10-25T08:08:35.1431413Z *** Latest VSIX from Marketplace: https://ms-dynamics-smb.gallerycdn.vsassets.io/extensions/ms-dynamics-smb/al/10.0.687650/1664782550315/Microsoft.VisualStudio.Services.VSIXPackage
2022-10-25T08:08:35.1437362Z *** Fetching Alternative VSIX: [https://ms-dynamics-smb.gallerycdn.vsassets.io/extensions/ms-dynamics-smb/al/10.0.687650/1664782550315/Microsoft.VisualStudio.Services.VSIXPackage]
2022-10-25T08:08:35.1562569Z 
2022-10-25T08:08:35.1740162Z *** Downloading Extension from...[https://ms-dynamics-smb.gallerycdn.vsassets.io/extensions/ms-dynamics-smb/al/10.0.687650/1664782550315/Microsoft.VisualStudio.Services.VSIXPackage]
2022-10-25T08:08:35.1769329Z ##[command]Invoke-RestMethod -Method Get -Uri "https://ms-dynamics-smb.gallerycdn.vsassets.io/extensions/ms-dynamics-smb/al/10.0.687650/1664782550315/Microsoft.VisualStudio.Services.VSIXPackage" -OutFile "C:\azure-vsts-agent-build\_work\_temp\VSIX\custom.vsix"
2022-10-25T08:08:39.9481955Z *** Download complete
2022-10-25T08:08:39.9488506Z *** VSIX Downloaded to [C:\azure-vsts-agent-build\_work\_temp\VSIX\custom.vsix]
2022-10-25T08:08:39.9492272Z *** Prepare Extension for Unpack
2022-10-25T08:08:39.9510643Z *** Unpacking Extension to folder...
2022-10-25T08:08:45.1265645Z *** VSIX Available: [C:\azure-vsts-agent-build\_work\_temp\VSIX\custom]
2022-10-25T08:08:45.1428888Z *** Default Working Folder: C:\azure-vsts-agent-build\_work\633\s
2022-10-25T08:08:45.1435071Z *** Artifact Folder       : C:\azure-vsts-agent-build\_work\633\a
2022-10-25T08:08:45.1442117Z *** Agent Tool Folder     : C:\azure-vsts-agent-build\_work\_tool
2022-10-25T08:08:45.1448216Z *** Agent Temp Folder     : C:\azure-vsts-agent-build\_work\_temp
2022-10-25T08:08:45.1450966Z 
2022-10-25T08:08:45.1474007Z *** Resolving Path: [C:\azure-vsts-agent-build\_work\633\s\App]
2022-10-25T08:08:45.1503176Z *** AL Source Folder      : C:\azure-vsts-agent-build\_work\633\s\App
2022-10-25T08:08:45.1510140Z *** Resolving Path: [C:\azure-vsts-agent-build\_work\633\s]
2022-10-25T08:08:45.1519601Z *** AL Cache Folder       : C:\azure-vsts-agent-build\_work\633\s
2022-10-25T08:08:45.1521983Z 
2022-10-25T08:08:45.1535192Z *** Check BcContainerHelper
2022-10-25T08:08:45.2298758Z *** Load BcContainerHelper
2022-10-25T08:08:45.2734039Z BcContainerHelper version 4.0.5
2022-10-25T08:08:45.4494943Z BcContainerHelper emits usage statistics telemetry to Microsoft
2022-10-25T08:08:46.1759951Z 
2022-10-25T08:08:46.1810240Z ##[command]"Get-BCArtifactUrl" 
2022-10-25T08:08:46.1810734Z Name                           Value                                                                                   
2022-10-25T08:08:46.1811307Z ----                           -----                                                                                   
2022-10-25T08:08:46.1812038Z select                         Daily                                                                                   
2022-10-25T08:08:46.1812325Z type                           Sandbox                                                                                 
2022-10-25T08:08:46.1812575Z country                        BE                                                                                      
2022-10-25T08:08:46.1812695Z 
2022-10-25T08:08:46.1813365Z 
2022-10-25T08:08:46.1813934Z  -select: Daily -type: Sandbox -country: BE
2022-10-25T08:09:04.4110877Z *** Platform: c:\bcartifacts.cache\sandbox\21.0.46256.48224\platform
2022-10-25T08:09:04.4134998Z *** Localisation: c:\bcartifacts.cache\sandbox\21.0.46256.48224\be
2022-10-25T08:09:04.4366913Z *** BC Management DLL: C:\bcartifacts.cache\sandbox\21.0.46256.48224\platform\ServiceTier\program files\Microsoft Dynamics NAV\210\Service\Microsoft.Dynamics.Nav.Management.dll
2022-10-25T08:09:04.4808228Z *** BC App Management DLL: C:\bcartifacts.cache\sandbox\21.0.46256.48224\platform\ServiceTier\program files\Microsoft Dynamics NAV\210\Service\Microsoft.Dynamics.Nav.Apps.Management.dll
2022-10-25T08:09:04.5249822Z *** Get [*.app] and [app.json] files recursive from [C:\azure-vsts-agent-build\_work\633\s\App]
2022-10-25T08:09:04.5299565Z *** Found [1] file.
2022-10-25T08:09:04.5305975Z *** Extract App detail from [C:\azure-vsts-agent-build\_work\633\s\App\app.json]
2022-10-25T08:09:04.5494477Z *** Starting Batch compile of Apps:
2022-10-25T08:09:04.5520768Z   * C:\azure-vsts-agent-build\_work\633\s\App
2022-10-25T08:09:04.5530350Z *** Start Compiling: [C:\azure-vsts-agent-build\_work\633\s\App]
2022-10-25T08:09:04.6014481Z *** Get App Information
2022-10-25T08:09:04.6039464Z *** Loading Json Object: [C:\azure-vsts-agent-build\_work\633\s\App\app.json]
2022-10-25T08:09:04.6056894Z   * Id         : f7d8ea03-1ea7-4591-a981-d798d6412e1d
2022-10-25T08:09:04.6062897Z   * Publisher  : VanRoey.be
2022-10-25T08:09:04.6069143Z   * Name       : App
2022-10-25T08:09:04.6075020Z   * Description: 
2022-10-25T08:09:04.6093885Z *** Check Runtime: [7.0]
2022-10-25T08:09:04.6130340Z *** Runtime: 7
2022-10-25T08:09:04.6136388Z *** Removing ResourceExposurePolicy
2022-10-25T08:09:04.6156448Z *** Add 'resourceExposurePolicy' in App Manifest
2022-10-25T08:09:04.6175467Z *** Remove 'showMyCode' from App Manifest
2022-10-25T08:09:04.6194073Z *** Overrule 'ResourceExposurePolicy.allowDebugging': ENABLE
2022-10-25T08:09:04.6212413Z *** Overrule 'ResourceExposurePolicy.allowDownloadingSource': DISABLE
2022-10-25T08:09:04.6223281Z *** Overrule 'ResourceExposurePolicy.includeSourceInSymbolFile': DISABLE
2022-10-25T08:09:04.6238594Z *** Remove SuppressWarnings
2022-10-25T08:09:04.7674653Z ##[error]Exception calling "Parse" with "1" argument(s): "Input string was not in a correct format."
2022-10-25T08:09:04.7976470Z ##[section]Finishing: Compile Extension

I'm on the right version I believe?

image

AdminHodor commented 1 year ago

@Arthurvdv ,

Please check again, we released a hotfix for this: v1.453.3283

Arthurvdv commented 1 year ago

Hotfix worked, thanks!

*** Retaining original [Major] from Application (?.0.0.0)
*** Retaining original [Minor] from Application (0.?.0.0)
Arthurvdv commented 1 year ago

The v1 version of the compiler (ALOpsAppCompiler@1) shows a non-blocking warning. (and the developer somehow set the versioning wrong on the Platform/Application for the test App. Thats fixed now.)

##[warning]Get-NAVInfoStep: Exception calling "Parse" with "1" argument(s): "Input string was not in a correct format."
2022-10-26T06:30:48.9656707Z ##[section]Starting: Compile Test App
2022-10-26T06:30:48.9770084Z ==============================================================================
2022-10-26T06:30:48.9770351Z Task         : ALOps App Compiler
2022-10-26T06:30:48.9770567Z Description  : Compile AL Extensions for Business Central
2022-10-26T06:30:48.9770761Z Version      : 1.453.3283
2022-10-26T06:30:48.9770918Z Author       : Hodor
2022-10-26T06:30:48.9771129Z Help         : Compile a Business Central extension from AL code.
2022-10-26T06:30:48.9771399Z ==============================================================================
2022-10-26T06:30:51.3607656Z *** Validate configuration
2022-10-26T06:30:51.5826892Z *** Task Inputs:
2022-10-26T06:30:51.5866997Z 
2022-10-26T06:30:51.5960593Z name                                                                                           value
2022-10-26T06:30:51.5962399Z ----                                                                                           -----
2022-10-26T06:30:51.5962925Z usedocker                                                                                       True
2022-10-26T06:30:51.5964567Z fixed_tag                                                                                           
2022-10-26T06:30:51.5965268Z targetproject                                    C:\azure-vsts-agent-build\_work\615\s\test\app.json
2022-10-26T06:30:51.5965584Z nav_computername                                                                                    
2022-10-26T06:30:51.5967300Z nav_serverinstance                                                                             BC140
2022-10-26T06:30:51.5967774Z nav_tenant                                                                                   default
2022-10-26T06:30:51.5968941Z nav_ports_dev                                                                                   7049
2022-10-26T06:30:51.5969463Z bc_username                                                                                         
2022-10-26T06:30:51.5969995Z bc_password                                                                                         
2022-10-26T06:30:51.5971643Z al_compiler_version                                                                       0.12.15355
2022-10-26T06:30:51.5972072Z ruleset                                                                                             
2022-10-26T06:30:51.5972743Z suppresswarnings                                                                                KEEP
2022-10-26T06:30:51.5973206Z al_analyzer                                                                                     None
2022-10-26T06:30:51.5974780Z nav_app_version                                                                              A.A.*.0
2022-10-26T06:30:51.5975093Z vsix_download_path                                                                                  
2022-10-26T06:30:51.5976874Z use_ssl                                                                                        False
2022-10-26T06:30:51.5977315Z download_test_symbols                                                                          False
2022-10-26T06:30:51.5978925Z usecompression                                                                                  True
2022-10-26T06:30:51.5979326Z publish_artifact                                                                               False
2022-10-26T06:30:51.5981026Z publishxlif                                                                                    False
2022-10-26T06:30:51.5981327Z failed_on_warnings                                                                             False
2022-10-26T06:30:51.5983126Z app_file_suffix                                                                                _TEST
2022-10-26T06:30:51.5983449Z updatebuildnumber                                                                              False
2022-10-26T06:30:51.5984772Z setup_working_folder                                                                           False
2022-10-26T06:30:51.5986532Z showmycode                                                                                      Keep
2022-10-26T06:30:51.5986824Z resourceexposurepolicy_allowdebugging                                                           Keep
2022-10-26T06:30:51.5988118Z resourceexposurepolicy_allowdownloadingsource                                                   Keep
2022-10-26T06:30:51.5988585Z resourceexposurepolicy_includesourceinsymbolfile                                                Keep
2022-10-26T06:30:51.5989845Z internalsvisibleto                                                                              Keep
2022-10-26T06:30:51.5990343Z preprocessorsymbols                                                                                 
2022-10-26T06:30:51.5990688Z applicationinsightskey                                                                              
2022-10-26T06:30:51.5991849Z printappmanifest                                                                                True
2022-10-26T06:30:51.5992329Z output_alc_logs                                                                                 True
2022-10-26T06:30:51.5993771Z additionalprobingpaths                                                                              
2022-10-26T06:30:51.5993944Z 
2022-10-26T06:30:51.6008490Z 
2022-10-26T06:30:51.6014252Z 
2022-10-26T06:30:51.6137435Z *** For documentation, please visit   : https://www.alops.be/documentation
2022-10-26T06:30:51.6140870Z 
2022-10-26T06:30:52.1311594Z *** ALOps License:
2022-10-26T06:30:52.1329066Z   * Licensed To: Van Roey (Collection License)
2022-10-26T06:30:52.1331906Z 
2022-10-26T06:30:52.1424550Z *** Importing required PS-Functions
2022-10-26T06:30:52.7182877Z *** Initiate Docker Session
2022-10-26T06:30:52.9540182Z *** Set Docker Container ErrorActionPreference = Stop
2022-10-26T06:30:53.4241897Z *** Import NAV/BC Management DLL's
2022-10-26T06:30:53.4380523Z *** Loading assemblies for ServiceTier [BC].
2022-10-26T06:30:53.6324510Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\210\service]
2022-10-26T06:30:53.6418638Z *** Selected module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2022-10-26T06:30:53.6421768Z *** Loading module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2022-10-26T06:30:53.7009866Z *** Selected module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Management.dll]
2022-10-26T06:30:53.7013070Z *** Loading module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Management.dll]
2022-10-26T06:30:53.7237467Z *** BC NCL Management DLL: C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Ncl.dll
2022-10-26T06:30:54.0270257Z *** BC Types DLL: C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Types.dll
2022-10-26T06:30:54.2424754Z *** Setting up AL Compiler [ALLanguage]
2022-10-26T06:30:54.3834564Z *** Downloading AL Compiler [ALLanguage]
2022-10-26T06:30:54.3906190Z *** Get Extension from Local-Disk...[C:\Run\ALLanguage.vsix]
2022-10-26T06:30:54.3909317Z *** Resolving Path [C:\Run\ALLanguage.vsix]
2022-10-26T06:30:54.4523233Z *** VSIX Path Resolved: [C:\Run\ALLanguage.vsix]
2022-10-26T06:30:54.4541870Z *** Unpacking Extension to folder...
2022-10-26T06:31:00.2576177Z *** Loading Json Object: [c:\Run\Microsoft.al\al-ALLanguage\extension\package.json]
2022-10-26T06:31:00.2787657Z *** Using AL Compiler [vALLanguage] located [C:\Run\Microsoft.al\al-ALLanguage\extension\bin\win32\alc.exe]
2022-10-26T06:31:00.2790623Z ***
2022-10-26T06:31:00.2796501Z *** Working folder: C:\azure-vsts-agent-build\_work\615\s
2022-10-26T06:31:00.2800272Z ***
2022-10-26T06:31:00.2804457Z *** Copy Working folder to Docker Container: 3d0a36210436a6ffc7b8814b17ba06eca839b56e6760a3a06c41a9e4efccdf55
2022-10-26T06:31:00.2808238Z *** Docker Working Folder: c:\Run\DevOps\
2022-10-26T06:31:00.2812667Z *** Copy from [C:\azure-vsts-agent-build\_work\615\s] to [c:\Run\DevOps\]
2022-10-26T06:31:00.2861717Z *** Source File setup completed
2022-10-26T06:31:00.6086938Z *** Target Project: \test\app.json
2022-10-26T06:31:00.6090320Z *** Check for app.json files: c:\Run\DevOps\
2022-10-26T06:31:00.6213294Z *** Multiple projects found:
2022-10-26T06:31:00.6255559Z    - C:\Run\DevOps\App
2022-10-26T06:31:00.6261988Z    - C:\Run\DevOps\Test
2022-10-26T06:31:00.6280116Z *** Retrieving App-Info [\test\app.json]
2022-10-26T06:31:00.6322976Z *** Loading Json Object: [c:\Run\DevOps\test\app.json]
2022-10-26T06:31:00.6345273Z   * App.ID          = 9e79e24e-a891-4201-9345-684a494fc7a1
2022-10-26T06:31:00.6359543Z   * App.Name        = <Customer>-Test
2022-10-26T06:31:00.6375766Z   * App.Publisher   = VanRoey.be
2022-10-26T06:31:00.6393251Z   * App.Version     = 1.0.0.0
2022-10-26T06:31:00.6406432Z   * App.Platform    = 18.0.0.0
2022-10-26T06:31:00.6420751Z   * App.Application = 1.0.0.0
2022-10-26T06:31:00.6469238Z *** Check Runtime: [7.0]
2022-10-26T06:31:00.6534697Z *** Removing ResourceExposurePolicy
2022-10-26T06:31:00.6567588Z ***
2022-10-26T06:31:00.7057351Z ##[warning]Get-NAVInfoStep: Exception calling "Parse" with "1" argument(s): "Input string was not in a correct format."
2022-10-26T06:31:00.7062883Z ***
2022-10-26T06:31:00.7557608Z *** Working Direcotry: [c:\Run\DevOps\]
2022-10-26T06:31:00.7560843Z *** Target Project: [\test\app.json]
2022-10-26T06:31:00.7566422Z *** Project Directory: [c:\Run\DevOps\test]
2022-10-26T06:31:00.7596316Z *** VSCode Settings: [c:\Run\DevOps\test\.vscode\settings.json]
2022-10-26T06:31:00.7612295Z *** VSCode-Settings json found.
2022-10-26T06:31:00.7621921Z *** Loading Json Object: [c:\Run\DevOps\test\.vscode\settings.json]
2022-10-26T06:31:00.7676962Z *** Using Ruleset: [c:\Run\DevOps\test\.vscode\custom.ruleset.json]
2022-10-26T06:31:00.7681894Z ***
2022-10-26T06:31:01.0017074Z *** Resolve Docker Credentials
2022-10-26T06:31:01.0073530Z *** Setup BC Username/Password from Container info
2022-10-26T06:31:01.0198388Z *** Download Symbols
2022-10-26T06:31:01.2963551Z *** Working Dir: c:\Run\DevOps\
2022-10-26T06:31:01.4332029Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\210\service]
2022-10-26T06:31:01.4819403Z *** PackageCache path created [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:01.4821495Z ***
2022-10-26T06:31:01.4882547Z *** Propagated Dependency: VanRoey.be - <Customer> - 1.0.0.0
2022-10-26T06:31:01.4937522Z *** Propagated Dependency: Microsoft - Library Assert - 18.0.0.0
2022-10-26T06:31:01.4942131Z *** Propagated Dependency: Microsoft - Any - 18.0.0.0
2022-10-26T06:31:01.4951170Z *** Propagated Dependency: Microsoft - System Application Test Library - 18.0.0.0
2022-10-26T06:31:01.4962465Z *** Propagated Dependency: Microsoft - Tests-TestLibraries - 18.0.0.0
2022-10-26T06:31:01.4974624Z *** Propagated Dependency: Microsoft - Test Runner - 18.0.0.0
2022-10-26T06:31:01.4987042Z *** Propagated Dependency: Microsoft - Library Variable Storage - 18.0.0.0
2022-10-26T06:31:01.4996170Z *** Download System-Symbols for [18.0.0.0]
2022-10-26T06:31:01.5311033Z *** Downloading NAV Symbols for [System v18.0.0.0]
2022-10-26T06:31:01.5313776Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:01.5572075Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:01.5585460Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:02.2382612Z *** Content-Disposition: attachment; filename=Microsoft_System_21.0.46384.48251.app; filename*=UTF-8''Microsoft_System_21.0.46384.48251.app
2022-10-26T06:31:02.2521931Z *** Saving symbol file [Microsoft_System_21.0.46384.48251.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:02.2648195Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System_21.0.46384.48251.app].
2022-10-26T06:31:02.3517082Z ***
2022-10-26T06:31:02.3520465Z *** Download Application-Symbols for [1.0.0.0]
2022-10-26T06:31:02.3527560Z *** Downloading NAV Symbols for [Application v1.0.0.0]
2022-10-26T06:31:02.3536580Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=1.0.0.0&tenant=default]
2022-10-26T06:31:02.3545761Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:02.3553966Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=1.0.0.0&tenant=default
2022-10-26T06:31:02.6551960Z *** Content-Disposition: attachment; filename=Microsoft_Application_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Application_21.0.46256.48285.app
2022-10-26T06:31:02.6567902Z *** Saving symbol file [Microsoft_Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:02.6579649Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_21.0.46256.48285.app].
2022-10-26T06:31:02.6728669Z *** Propagated Dependency: Microsoft - System Application - 21.0.0.0
2022-10-26T06:31:02.6767258Z *** Propagated Dependency: Microsoft - Base Application - 21.0.0.0
2022-10-26T06:31:02.6770392Z ***
2022-10-26T06:31:02.6774824Z *** AppSourceCop not specified, skipping download previous
2022-10-26T06:31:02.6788102Z *** Check for Depency Apps 9
2022-10-26T06:31:02.6812494Z *** Download Application-Symbols for [<Customer> v1.0.0.0]
2022-10-26T06:31:02.6823077Z *** Downloading NAV Symbols for [<Customer> v1.0.0.0]
2022-10-26T06:31:02.6827932Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=<Customer>&versionText=1.0.0.0&tenant=default]
2022-10-26T06:31:02.6838708Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:02.6843918Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=<Customer>&versionText=1.0.0.0&tenant=default
2022-10-26T06:31:03.0001822Z *** Content-Disposition: attachment; filename=VanRoey.be_<Customer>_19.0.57383.0.app; filename*=UTF-8''VanRoey.be_<Customer>_19.0.57383.0.app
2022-10-26T06:31:03.0015509Z *** Saving symbol file [VanRoey.be_<Customer>_19.0.57383.0.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:03.0040335Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\VanRoey.be_<Customer>_19.0.57383.0.app].
2022-10-26T06:31:03.0064269Z *** Propagated Dependency: VanRoey.be - <Customer> - EDS Invoice - 1.0.0.0
2022-10-26T06:31:03.0074548Z *** Propagated Dependency: VanRoey.be - Connection Library - 1.0.0.0
2022-10-26T06:31:03.0086644Z *** Propagated Dependency: Microsoft - Application - 19.0.0.0
2022-10-26T06:31:03.0096253Z ***
2022-10-26T06:31:03.0109251Z *** Download Application-Symbols for [Library Assert v18.0.0.0]
2022-10-26T06:31:03.0119227Z *** Downloading NAV Symbols for [Library Assert v18.0.0.0]
2022-10-26T06:31:03.0128286Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Assert&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:03.0137475Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:03.0182081Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Assert&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:03.3311824Z *** Content-Disposition: attachment; filename="Microsoft_Library Assert_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Library%20Assert_21.0.46256.48285.app
2022-10-26T06:31:03.3327132Z *** Saving symbol file [Microsoft_Library Assert_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:03.3339851Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Library Assert_21.0.46256.48285.app].
2022-10-26T06:31:03.3352812Z ***
2022-10-26T06:31:03.3364327Z *** Download Application-Symbols for [Any v18.0.0.0]
2022-10-26T06:31:03.3375522Z *** Downloading NAV Symbols for [Any v18.0.0.0]
2022-10-26T06:31:03.3383849Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:03.3393227Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:03.3401111Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:03.6440187Z *** Content-Disposition: attachment; filename=Microsoft_Any_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Any_21.0.46256.48285.app
2022-10-26T06:31:03.6455961Z *** Saving symbol file [Microsoft_Any_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:03.6470785Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Any_21.0.46256.48285.app].
2022-10-26T06:31:03.6482953Z ***
2022-10-26T06:31:03.6493098Z *** Download Application-Symbols for [System Application Test Library v18.0.0.0]
2022-10-26T06:31:03.6505277Z *** Downloading NAV Symbols for [System Application Test Library v18.0.0.0]
2022-10-26T06:31:03.6513846Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application+Test+Library&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:03.6523679Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:03.6534066Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application+Test+Library&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:03.9576203Z *** Content-Disposition: attachment; filename="Microsoft_System Application Test Library_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_System%20Application%20Test%20Library_21.0.46256.48285.app
2022-10-26T06:31:03.9589440Z *** Saving symbol file [Microsoft_System Application Test Library_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:03.9604769Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application Test Library_21.0.46256.48285.app].
2022-10-26T06:31:03.9692004Z *** Propagated Dependency: Microsoft - Any - 21.0.0.0
2022-10-26T06:31:03.9695277Z ***
2022-10-26T06:31:03.9705997Z *** Download Application-Symbols for [Tests-TestLibraries v18.0.0.0]
2022-10-26T06:31:03.9716656Z *** Downloading NAV Symbols for [Tests-TestLibraries v18.0.0.0]
2022-10-26T06:31:03.9725114Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:03.9735395Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:03.9742915Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Tests-TestLibraries&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:04.2791081Z *** Content-Disposition: attachment; filename=Microsoft_Tests-TestLibraries_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Tests-TestLibraries_21.0.46256.48285.app
2022-10-26T06:31:04.2806847Z *** Saving symbol file [Microsoft_Tests-TestLibraries_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:04.2829800Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Tests-TestLibraries_21.0.46256.48285.app].
2022-10-26T06:31:04.2871734Z *** Propagated Dependency: Microsoft - System Application Test Library - 21.0.0.0
2022-10-26T06:31:04.2878981Z *** Propagated Dependency: Microsoft - Library Variable Storage - 21.0.0.0
2022-10-26T06:31:04.2893276Z *** Propagated Dependency: Microsoft - Permissions Mock - 21.0.0.0
2022-10-26T06:31:04.2911897Z *** Propagated Dependency: Microsoft - Application - 21.0.0.0
2022-10-26T06:31:04.2916445Z ***
2022-10-26T06:31:04.2928312Z *** Download Application-Symbols for [Test Runner v18.0.0.0]
2022-10-26T06:31:04.2942839Z *** Downloading NAV Symbols for [Test Runner v18.0.0.0]
2022-10-26T06:31:04.2951730Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Test+Runner&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:04.2960274Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:04.2966287Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Test+Runner&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:04.5977099Z *** Content-Disposition: attachment; filename="Microsoft_Test Runner_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Test%20Runner_21.0.46256.48285.app
2022-10-26T06:31:04.5993809Z *** Saving symbol file [Microsoft_Test Runner_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:04.6009065Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Test Runner_21.0.46256.48285.app].
2022-10-26T06:31:04.6022692Z ***
2022-10-26T06:31:04.6033058Z *** Download Application-Symbols for [Library Variable Storage v18.0.0.0]
2022-10-26T06:31:04.6190229Z *** Downloading NAV Symbols for [Library Variable Storage v18.0.0.0]
2022-10-26T06:31:04.6193015Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Variable+Storage&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:04.6200488Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:04.6208843Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Variable+Storage&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:04.9210693Z *** Content-Disposition: attachment; filename="Microsoft_Library Variable Storage_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Library%20Variable%20Storage_21.0.46256.48285.app
2022-10-26T06:31:04.9225897Z *** Saving symbol file [Microsoft_Library Variable Storage_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:04.9238492Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Library Variable Storage_21.0.46256.48285.app].
2022-10-26T06:31:04.9254992Z *** Propagated Dependency: Microsoft - Library Assert - 21.0.0.0
2022-10-26T06:31:04.9265741Z ***
2022-10-26T06:31:04.9310214Z *** Download Application-Symbols for [System Application v21.0.0.0]
2022-10-26T06:31:04.9335597Z *** Downloading NAV Symbols for [System Application v21.0.0.0]
2022-10-26T06:31:04.9338692Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:04.9347546Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:04.9355371Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:05.2496018Z *** Content-Disposition: attachment; filename="Microsoft_System Application_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_System%20Application_21.0.46256.48285.app
2022-10-26T06:31:05.2508897Z *** Saving symbol file [Microsoft_System Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:05.2684879Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application_21.0.46256.48285.app].
2022-10-26T06:31:05.2815760Z ***
2022-10-26T06:31:05.2821451Z *** Download Application-Symbols for [Base Application v21.0.0.0]
2022-10-26T06:31:05.2831755Z *** Downloading NAV Symbols for [Base Application v21.0.0.0]
2022-10-26T06:31:05.2840079Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:05.2849836Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:05.2858848Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Base+Application&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:05.6963166Z *** Content-Disposition: attachment; filename="Microsoft_Base Application_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Base%20Application_21.0.46256.48285.app
2022-10-26T06:31:05.6980263Z *** Saving symbol file [Microsoft_Base Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:05.8321916Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Base Application_21.0.46256.48285.app].
2022-10-26T06:31:05.9061198Z ***
2022-10-26T06:31:05.9064485Z *** Download Application-Symbols for [<Customer> - EDS Invoice v1.0.0.0]
2022-10-26T06:31:05.9072980Z *** Downloading NAV Symbols for [<Customer> - EDS Invoice v1.0.0.0]
2022-10-26T06:31:05.9081349Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=<Customer>+-+EDS+Invoice&versionText=1.0.0.0&tenant=default]
2022-10-26T06:31:05.9089005Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:05.9096816Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=<Customer>+-+EDS+Invoice&versionText=1.0.0.0&tenant=default
2022-10-26T06:31:06.2179730Z *** Content-Disposition: attachment; filename="VanRoey.be_<Customer> - EDS Invoice_1.0.0.0.app"; filename*=UTF-8''VanRoey.be_<Customer>%20-%20EDS%20Invoice_1.0.0.0.app
2022-10-26T06:31:06.2194003Z *** Saving symbol file [VanRoey.be_<Customer> - EDS Invoice_1.0.0.0.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:06.2207089Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\VanRoey.be_<Customer> - EDS Invoice_1.0.0.0.app].
2022-10-26T06:31:06.2224033Z *** Propagated Dependency: Microsoft - Send To Email Printer - 1.0.0.0
2022-10-26T06:31:06.2391401Z ***
2022-10-26T06:31:06.2397983Z *** Download Application-Symbols for [Connection Library v1.0.0.0]
2022-10-26T06:31:06.2409063Z *** Downloading NAV Symbols for [Connection Library v1.0.0.0]
2022-10-26T06:31:06.2417427Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=Connection+Library&versionText=1.0.0.0&tenant=default]
2022-10-26T06:31:06.2428466Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:06.2436593Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=VanRoey.be&appName=Connection+Library&versionText=1.0.0.0&tenant=default
2022-10-26T06:31:06.5520441Z *** Content-Disposition: attachment; filename="VanRoey.be_Connection Library_1.2.202217.36643.app"; filename*=UTF-8''VanRoey.be_Connection%20Library_1.2.202217.36643.app
2022-10-26T06:31:06.5535545Z *** Saving symbol file [VanRoey.be_Connection Library_1.2.202217.36643.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:06.5546603Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\VanRoey.be_Connection Library_1.2.202217.36643.app].
2022-10-26T06:31:06.5562593Z *** Propagated Dependency: Microsoft - Application - 18.0.0.0
2022-10-26T06:31:06.5572145Z ***
2022-10-26T06:31:06.5584170Z *** Download Application-Symbols for [Application v19.0.0.0]
2022-10-26T06:31:06.5595187Z *** Downloading NAV Symbols for [Application v19.0.0.0]
2022-10-26T06:31:06.5602740Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=19.0.0.0&tenant=default]
2022-10-26T06:31:06.5612059Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:06.5620416Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=19.0.0.0&tenant=default
2022-10-26T06:31:06.8681768Z *** Content-Disposition: attachment; filename=Microsoft_Application_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Application_21.0.46256.48285.app
2022-10-26T06:31:06.8695611Z *** Saving symbol file [Microsoft_Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:06.8705754Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_21.0.46256.48285.app].
2022-10-26T06:31:06.8726025Z ***
2022-10-26T06:31:06.8737451Z *** Download Application-Symbols for [Any v21.0.0.0]
2022-10-26T06:31:06.8749075Z *** Downloading NAV Symbols for [Any v21.0.0.0]
2022-10-26T06:31:06.8756098Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:06.8766195Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:06.8774176Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Any&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:07.1833991Z *** Content-Disposition: attachment; filename=Microsoft_Any_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Any_21.0.46256.48285.app
2022-10-26T06:31:07.1845501Z *** Saving symbol file [Microsoft_Any_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:07.1854101Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Any_21.0.46256.48285.app].
2022-10-26T06:31:07.1865647Z ***
2022-10-26T06:31:07.1875988Z *** Download Application-Symbols for [System Application Test Library v21.0.0.0]
2022-10-26T06:31:07.1884925Z *** Downloading NAV Symbols for [System Application Test Library v21.0.0.0]
2022-10-26T06:31:07.1889780Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application+Test+Library&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:07.1896031Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:07.1901750Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=System+Application+Test+Library&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:07.4904200Z *** Content-Disposition: attachment; filename="Microsoft_System Application Test Library_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_System%20Application%20Test%20Library_21.0.46256.48285.app
2022-10-26T06:31:07.4934220Z *** Saving symbol file [Microsoft_System Application Test Library_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:07.4943480Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_System Application Test Library_21.0.46256.48285.app].
2022-10-26T06:31:07.4983748Z ***
2022-10-26T06:31:07.4990900Z *** Download Application-Symbols for [Library Variable Storage v21.0.0.0]
2022-10-26T06:31:07.5002283Z *** Downloading NAV Symbols for [Library Variable Storage v21.0.0.0]
2022-10-26T06:31:07.5010213Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Variable+Storage&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:07.5020838Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:07.5030696Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Variable+Storage&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:08.0143355Z *** Content-Disposition: attachment; filename="Microsoft_Library Variable Storage_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Library%20Variable%20Storage_21.0.46256.48285.app
2022-10-26T06:31:08.0162235Z *** Saving symbol file [Microsoft_Library Variable Storage_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:08.0175961Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Library Variable Storage_21.0.46256.48285.app].
2022-10-26T06:31:08.0192460Z ***
2022-10-26T06:31:08.0203735Z *** Download Application-Symbols for [Permissions Mock v21.0.0.0]
2022-10-26T06:31:08.0216699Z *** Downloading NAV Symbols for [Permissions Mock v21.0.0.0]
2022-10-26T06:31:08.0220476Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Permissions+Mock&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:08.0229784Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:08.0236330Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Permissions+Mock&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:08.3186411Z *** Content-Disposition: attachment; filename="Microsoft_Permissions Mock_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Permissions%20Mock_21.0.46256.48285.app
2022-10-26T06:31:08.3196989Z *** Saving symbol file [Microsoft_Permissions Mock_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:08.3211492Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Permissions Mock_21.0.46256.48285.app].
2022-10-26T06:31:08.3223613Z ***
2022-10-26T06:31:08.3235516Z *** Download Application-Symbols for [Application v21.0.0.0]
2022-10-26T06:31:08.3247242Z *** Downloading NAV Symbols for [Application v21.0.0.0]
2022-10-26T06:31:08.3254267Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:08.3276869Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:08.3278667Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:08.6251627Z *** Content-Disposition: attachment; filename=Microsoft_Application_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Application_21.0.46256.48285.app
2022-10-26T06:31:08.6263609Z *** Saving symbol file [Microsoft_Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:08.6274602Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_21.0.46256.48285.app].
2022-10-26T06:31:08.6293800Z ***
2022-10-26T06:31:08.6305738Z *** Download Application-Symbols for [Library Assert v21.0.0.0]
2022-10-26T06:31:08.6316726Z *** Downloading NAV Symbols for [Library Assert v21.0.0.0]
2022-10-26T06:31:08.6324689Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Assert&versionText=21.0.0.0&tenant=default]
2022-10-26T06:31:08.6333912Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:08.6344486Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Library+Assert&versionText=21.0.0.0&tenant=default
2022-10-26T06:31:08.9354702Z *** Content-Disposition: attachment; filename="Microsoft_Library Assert_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Library%20Assert_21.0.46256.48285.app
2022-10-26T06:31:08.9367250Z *** Saving symbol file [Microsoft_Library Assert_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:08.9377974Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Library Assert_21.0.46256.48285.app].
2022-10-26T06:31:08.9390099Z ***
2022-10-26T06:31:08.9620954Z *** Download Application-Symbols for [Send To Email Printer v1.0.0.0]
2022-10-26T06:31:08.9625690Z *** Downloading NAV Symbols for [Send To Email Printer v1.0.0.0]
2022-10-26T06:31:08.9632506Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Send+To+Email+Printer&versionText=1.0.0.0&tenant=default]
2022-10-26T06:31:08.9642886Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:08.9651176Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Send+To+Email+Printer&versionText=1.0.0.0&tenant=default
2022-10-26T06:31:09.2639233Z *** Content-Disposition: attachment; filename="Microsoft_Send To Email Printer_21.0.46256.48285.app"; filename*=UTF-8''Microsoft_Send%20To%20Email%20Printer_21.0.46256.48285.app
2022-10-26T06:31:09.2652844Z *** Saving symbol file [Microsoft_Send To Email Printer_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:09.2669951Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Send To Email Printer_21.0.46256.48285.app].
2022-10-26T06:31:09.2695911Z ***
2022-10-26T06:31:09.2704770Z *** Download Application-Symbols for [Application v18.0.0.0]
2022-10-26T06:31:09.2716132Z *** Downloading NAV Symbols for [Application v18.0.0.0]
2022-10-26T06:31:09.2724445Z *** Downloading NAV Symbols from [https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0&tenant=default]
2022-10-26T06:31:09.2734672Z *** Downloading NAV Symbols with BasicAuthentication [admin]
2022-10-26T06:31:09.2743357Z ##[command]Invoke-RestMethod -Method Get -Uri https://3d0a36210436:7049/BC/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0&tenant=default
2022-10-26T06:31:09.5671654Z *** Content-Disposition: attachment; filename=Microsoft_Application_21.0.46256.48285.app; filename*=UTF-8''Microsoft_Application_21.0.46256.48285.app
2022-10-26T06:31:09.5684675Z *** Saving symbol file [Microsoft_Application_21.0.46256.48285.app] to [c:\Run\DevOps\PackageCache]
2022-10-26T06:31:09.5696158Z *** Read App Manifest: [c:\Run\DevOps\PackageCache\Microsoft_Application_21.0.46256.48285.app].
2022-10-26T06:31:09.5721655Z ***
2022-10-26T06:31:09.8897674Z *** Starting AL Compiler...
2022-10-26T06:31:09.8900594Z *** App.Name         = <Customer>-Test
2022-10-26T06:31:09.8902959Z *** App.Publisher    = VanRoey.be
2022-10-26T06:31:09.8910498Z *** App.Compiler Path= C:\Run\Microsoft.al\al-ALLanguage\extension\bin\win32\alc.exe
2022-10-26T06:31:09.8952635Z *** Checking for Assemblies in App
2022-10-26T06:31:09.9038056Z *** Add Windows Assembly Path [C:\Windows\assembly]
2022-10-26T06:31:09.9090350Z *** CodeAnalyzers DISABLED.
2022-10-26T06:31:09.9114801Z *** Detect ALC.EXE Features.
2022-10-26T06:31:09.9119768Z ##[command]& C:\Run\Microsoft.al\al-ALLanguage\extension\bin\win32\alc.exe /?
2022-10-26T06:31:10.1451973Z   * PARALLEL+
2022-10-26T06:31:10.1455432Z   * MAXDEGREEOFPARALLELISM
2022-10-26T06:31:10.1460391Z   * ASSEMBLYPROBINGPATHS
2022-10-26T06:31:10.1484928Z ##[command]& C:\Run\Microsoft.al\al-ALLanguage\extension\bin\win32\alc.exe /packagecachepath:"c:\Run\DevOps\PackageCache" /project:"c:\Run\DevOps\test" /out:"c:\Run\DevOps\VanRoey.be_<Customer>-Test_1.0.0.0_TEST.app" /fullpaths /parallel+ /maxDegreeOfParallelism:2 /assemblyprobingpaths:"C:\Windows\assembly","C:\Windows\Microsoft.NET\assembly","C:\program files\microsoft dynamics nav\210\service" /ruleset:"c:\Run\DevOps\test\.vscode\custom.ruleset.json"
2022-10-26T06:31:13.8912352Z *** AL Compiler Exit Code: 0
2022-10-26T06:31:13.9412477Z *** AL Compiler raw logs: Start
2022-10-26T06:31:13.9419704Z Microsoft (R) AL Compiler version 10.0.10.35234
2022-10-26T06:31:13.9426188Z Copyright (C) Microsoft Corporation. All rights reserved
2022-10-26T06:31:13.9435290Z Compilation started for project '<Customer>-Test' containing '3' files at '08:31:10.477'.
2022-10-26T06:31:13.9442542Z Compilation ended at '08:31:13.861'.
2022-10-26T06:31:13.9450238Z *** AL Compiler raw logs: End
2022-10-26T06:31:13.9457381Z *** Start processing compile results.
2022-10-26T06:31:13.9687760Z *** Store compile log to [c:\Run\DevOps\compilelog.txt]
2022-10-26T06:31:13.9741589Z *** Start processing compile results done.
2022-10-26T06:31:13.9748569Z *** Transfer App Artifact from Docker container.
2022-10-26T06:31:14.1552297Z *** Transfer Compile Log from Docker container.
2022-10-26T06:31:14.2102614Z *** Process Compile results.
2022-10-26T06:31:14.2245413Z *** Process Compile results: retrieve status.
2022-10-26T06:31:14.2290587Z *** Publish XLIF as Artifact skipped
2022-10-26T06:31:14.2294713Z *** Transfer App file to Artifacts.
2022-10-26T06:31:14.2319600Z *** AL Compiler Finished.
2022-10-26T06:31:14.2323990Z ***
2022-10-26T06:31:14.2328031Z *** Compile OK.
2022-10-26T06:31:14.2335685Z ***
2022-10-26T06:31:14.2380036Z 
2022-10-26T06:31:14.2393354Z *** Disconnect Docker session.
2022-10-26T06:31:14.2410407Z *** Remove Docker session.
2022-10-26T06:31:14.2414466Z *** Docker session removed.
2022-10-26T06:31:14.2470866Z *** Set Pipeline variable $(ALOPS_COMPILE_ARTIFACT_ARRAY) = 'C:\azure-vsts-agent-build\_work\615\a\VanRoey.be_<Customer>-Test_1.0.0.0_TEST.app'
2022-10-26T06:31:14.2520324Z *** Set Pipeline variable $(ALOPS_COMPILE_ARTIFACT) = 'C:\azure-vsts-agent-build\_work\615\a\VanRoey.be_<Customer>-Test_1.0.0.0_TEST.app'
2022-10-26T06:31:14.2529047Z *** App-Artifact upload skipped.
2022-10-26T06:31:14.2532859Z ***
2022-10-26T06:31:14.2593823Z *** Cleanup VSTS Environment: True
2022-10-26T06:31:16.5511677Z ##[section]Async Command Start: Add Build Tag
2022-10-26T06:31:16.5512533Z Build '57383' has following tags now: AL.Analyzer.UICop, AL.Analyzer.PerTenantExtensionCop, AL.Analyzer.CodeCop, AL.Compiler.ALLanguage, App.<Customer> - EDS Invoice.1.0.0.0, App.Connection Library.1.2.202217.36643, AL.Analyzer.BusinessCentral.LinterCop, myimage-sandbox-21.0.46256.48285-be-10.0.17763.3287-ltsc2019, BC.Version.21.0.46256.48285, BC.Platform.21.0.46384.48251, App.<Customer>.19.0.57383.0
2022-10-26T06:31:16.5513241Z ##[section]Async Command End: Add Build Tag
2022-10-26T06:31:16.5513976Z ##[section]Finishing: Compile Test App