HodorNV / ALOps

ALOps
56 stars 24 forks source link

Compiler failed with exit code 1 #409

Closed lorenzfleerackers closed 2 years ago

lorenzfleerackers commented 3 years ago

Describe the bug When compiling my extension i receive a "exit code 1" error without some output from the error. Can you point me please in the right direction to solve this problem.

Kinds regards

the used yaml please provide the yaml that you used. It helps you put the yaml like this:

parameters:
  artifactversion: ''
  artifacttype: 'Sandbox'
  artifactcountry: 'W1'
  versionselect: ''
  ruleset: ''
  appversiontemplate: ''
  updatebuildnumber: false
  alcodeanalyzer: ''
  applicationinsightskey: ''
  failonwarnings: true
  publishartifact: false
  sastoken: ''
  pfx_path: ''
  pfx_password: ''

steps:
- task: PowerShell@2
  displayName: 'Set AL Code Analysis'
  condition: always()
  env:
    app_folder: '$(Build.SourcesDirectory)\App\'
  inputs:
    targetType: 'inline'
    script: |
      $App = Get-Content (Join-Path $env:app_folder app.json) -Raw | ConvertFrom-Json

      if ($App.target -eq 'OnPrem') {
          Write-Host "##vso[task.setvariable variable=alcodeanalyzer]CodeCop,UICop"
      } else {
          Write-Host "##vso[task.setvariable variable=alcodeanalyzer]${{ parameters.alcodeanalyzer }}"
      }

- task: ALOpsAppCompiler@2
  displayName: 'Compile Extension'
  condition: succeeded()
  inputs:
    artifactversion: '${{ parameters.artifactversion }}'
    artifacttype: '${{ parameters.artifacttype }}'
    artifactcountry: '${{ parameters.artifactcountry }}'
    versionselect: '${{ parameters.versionselect }}'
    alsourcepath: '$(System.DefaultWorkingDirectory)\App'
    ruleset: '${{ parameters.ruleset }}'
    appversiontemplate: '${{ parameters.appversiontemplate }}'
    updatebuildnumber: '${{ parameters.updatebuildnumber }}'
    alcodeanalyzer: '$(alcodeanalyzer)'
    applicationinsightskey: '${{ parameters.applicationinsightskey }}'
    failonwarnings: ${{ parameters.failonwarnings }}
    publishartifact: ${{ parameters.publishartifact }}
    sastoken: '${{ parameters.sastoken }}'

- task: ALOpsAppSign@1
  displayName: 'Sign Extension'
  condition: and(succeeded(), eq('${{ parameters.publishartifact }}', 'true'))
  inputs:
    pfx_path: '${{ parameters.pfx_path }}'
    pfx_password: '${{ parameters.pfx_password }}'

the output Also the complete output is necessary for us to see what is going on. Also use backtics:

2021-08-04T09:53:55.6168278Z ##[section]Starting: Compile Extension
2021-08-04T09:53:55.6281668Z ==============================================================================
2021-08-04T09:53:55.6282002Z Task         : ALOps App Compiler
2021-08-04T09:53:55.6282283Z Description  : Compile AL Extension(s) for Business Central
2021-08-04T09:53:55.6282538Z Version      : 2.0.2571
2021-08-04T09:53:55.6282739Z Author       : Hodor
2021-08-04T09:53:55.6283088Z Help         : Compile Business Central extension(s) from AL code.
2021-08-04T09:53:55.6283424Z ==============================================================================
2021-08-04T09:53:56.6697819Z *** Configure AMSI for session: disable (in memory)
2021-08-04T09:53:56.6870324Z 0
2021-08-04T09:53:56.9267792Z ******************************************************************************
2021-08-04T09:53:56.9273753Z *** ALOps v2 - Preview                                                     ***
2021-08-04T09:53:56.9279037Z ******************************************************************************
2021-08-04T09:53:56.9286745Z *** Importing required ALOps-Functions
2021-08-04T09:53:57.3543151Z *** Task Inputs:
2021-08-04T09:53:57.3552799Z 
2021-08-04T09:53:57.3587852Z name                   value                                                                           
2021-08-04T09:53:57.3588816Z ----                   -----                                                                           
2021-08-04T09:53:57.3589707Z artifactversion                                                                                        
2021-08-04T09:53:57.3590525Z artifacttype           Sandbox                                                                         
2021-08-04T09:53:57.3591328Z artifactcountry        BE                                                                              
2021-08-04T09:53:57.3592152Z versionselect                                                                                          
2021-08-04T09:53:57.3592970Z alternativevsixurl                                                                                     
2021-08-04T09:53:57.3593807Z alsourcepath           D:\azure-vsts-agent-build\_work\113\s\App                                       
2021-08-04T09:53:57.3594690Z ruleset                appsource.default.ruleset.json                                                  
2021-08-04T09:53:57.3595545Z appversiontemplate     ?.?.[yyyyWW].*                                                                  
2021-08-04T09:53:57.3596353Z updatebuildnumber      False                                                                           
2021-08-04T09:53:57.3597140Z appfilenametemplate    %APP_PUBLISHER%_%APP_NAME%_%APP_VERSION%_%BC_TYPE%_%BC_VERSION%_%BC_COUNTRY%.app
2021-08-04T09:53:57.3597997Z alcodeanalyzer         CodeCop,UICop,AppSourceCop                                                      
2021-08-04T09:53:57.3598800Z showmycode             Keep                                                                            
2021-08-04T09:53:57.3599631Z applicationinsightskey aa14c6a3-a427-447f-a271-c9dc8e4f810f                                            
2021-08-04T09:53:57.3600449Z alcachepath            D:\azure-vsts-agent-build\_work\113\s                                           
2021-08-04T09:53:57.3601254Z publishartifact        True                                                                            
2021-08-04T09:53:57.3602128Z publishxlif            False                                                                           
2021-08-04T09:53:57.3602993Z failonwarnings         True                                                                            
2021-08-04T09:53:57.3603781Z storageaccount                                                                                         
2021-08-04T09:53:57.3604563Z sastoken                                                                                               
2021-08-04T09:53:57.3605354Z printappmanifest       True                                                                            
2021-08-04T09:53:57.3608361Z outputalclogs          True                                                                            
2021-08-04T09:53:57.3608885Z additionalprobingpaths                                                                                 
2021-08-04T09:53:57.3609138Z 
2021-08-04T09:53:57.3623596Z 
2021-08-04T09:53:57.3630367Z 
2021-08-04T09:53:57.3754509Z *** For documentation, please visit   : https://www.alops.be/documentation
2021-08-04T09:53:57.3757921Z 
2021-08-04T09:53:57.6028691Z *** ALOps License:
2021-08-04T09:53:57.6031989Z   * Licensed To: Van Roey (Collection License)
2021-08-04T09:53:57.6344262Z 
2021-08-04T09:53:57.7491423Z *** Importing required Task-Functions
2021-08-04T09:53:59.5331620Z 
2021-08-04T09:53:59.5871350Z *** Artifact Type   : [Sandbox]
2021-08-04T09:53:59.5956766Z *** Artifact Version: []
2021-08-04T09:53:59.5962159Z *** Artifact Country: [BE]
2021-08-04T09:53:59.5964881Z *** AL Source Path  : [D:\azure-vsts-agent-build\_work\113\s\App]
2021-08-04T09:53:59.5969664Z *** AL Cache Path   : [D:\azure-vsts-agent-build\_work\113\s]
2021-08-04T09:53:59.5987669Z 
2021-08-04T09:53:59.6009475Z 
2021-08-04T09:53:59.6163486Z *** Default Working Folder: D:\azure-vsts-agent-build\_work\113\s
2021-08-04T09:53:59.6170491Z *** Artifact Folder       : D:\azure-vsts-agent-build\_work\113\a
2021-08-04T09:53:59.6177568Z *** Agent Tool Folder     : D:\azure-vsts-agent-build\_work\_tool
2021-08-04T09:53:59.6193571Z *** Agent Temp Folder     : D:\azure-vsts-agent-build\_work\_temp
2021-08-04T09:53:59.6193917Z 
2021-08-04T09:53:59.6222518Z *** Resolving Path: [D:\azure-vsts-agent-build\_work\113\s\App]
2021-08-04T09:53:59.6271458Z *** AL Source Folder      : D:\azure-vsts-agent-build\_work\113\s\App
2021-08-04T09:53:59.6281076Z *** Resolving Path: [D:\azure-vsts-agent-build\_work\113\s]
2021-08-04T09:53:59.6289394Z *** AL Cache Folder       : D:\azure-vsts-agent-build\_work\113\s
2021-08-04T09:53:59.6291190Z 
2021-08-04T09:53:59.6304870Z *** Check BcContainerHelper
2021-08-04T09:53:59.6648061Z *** Load BcContainerHelper
2021-08-04T09:53:59.8372549Z BcContainerHelper version 2.0.14
2021-08-04T09:54:00.5044237Z 
2021-08-04T09:54:00.5047299Z 
2021-08-04T09:54:00.6492763Z ##[command]"Get-BCArtifactUrl" 
2021-08-04T09:54:00.6493382Z Name                           Value                                                                                   
2021-08-04T09:54:00.6494208Z ----                           -----                                                                                   
2021-08-04T09:54:00.6494770Z country                        BE                                                                                      
2021-08-04T09:54:00.6495331Z type                           Sandbox                                                                                 
2021-08-04T09:54:00.6495600Z 
2021-08-04T09:54:00.6495701Z 
2021-08-04T09:54:00.6495988Z  -country: BE -type: Sandbox
2021-08-04T09:54:16.8260725Z *** Platform: c:\bcartifacts.cache\sandbox\18.3.27240.28653\platform
2021-08-04T09:54:16.8280452Z *** Localisation: c:\bcartifacts.cache\sandbox\18.3.27240.28653\be
2021-08-04T09:54:16.8530745Z *** BC Management DLL: C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ServiceTier\program files\Microsoft Dynamics NAV\180\Service\Microsoft.Dynamics.Nav.Management.dll
2021-08-04T09:54:16.8881563Z *** BC App Management DLL: C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ServiceTier\program files\Microsoft Dynamics NAV\180\Service\Microsoft.Dynamics.Nav.Apps.Management.dll
2021-08-04T09:54:16.9032695Z *** Get [*.app] and [app.json] files recursive from [D:\azure-vsts-agent-build\_work\113\s\App]
2021-08-04T09:54:16.9093596Z *** Found [7] files.
2021-08-04T09:54:16.9099981Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\Microsoft_Application_18.1.24822.25475.app]
2021-08-04T09:54:16.9728213Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\Microsoft_Base Application_18.1.24822.25475.app]
2021-08-04T09:54:17.3470262Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\Microsoft_System Application_18.1.24822.25475.app]
2021-08-04T09:54:17.3483572Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\Microsoft_System_18.0.24800.25456.app]
2021-08-04T09:54:17.3538346Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\VanRoey.be_Finance Extension (BE)_1.0.202131.14770_sandbox_18.3_be.app]
2021-08-04T09:54:18.0878827Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\.appSourceCopPackages\VanRoey.be_Finance Extension Library_1.0.202130.14474_sandbox_18.3_w1.app]
2021-08-04T09:54:18.0879479Z *** Extract App detail from [D:\azure-vsts-agent-build\_work\113\s\App\app.json]
2021-08-04T09:54:18.0879885Z *** Starting Batch compile of Apps:
2021-08-04T09:54:18.0880244Z   * D:\azure-vsts-agent-build\_work\113\s\App
2021-08-04T09:54:18.0880890Z *** Start Compiling: [D:\azure-vsts-agent-build\_work\113\s\App]
2021-08-04T09:54:18.0881232Z *** Get App Information
2021-08-04T09:54:18.0881604Z *** Loading Json Object: [D:\azure-vsts-agent-build\_work\113\s\App\app.json]
2021-08-04T09:54:18.0882023Z   * Id         : c7f3afeb-95cc-4ffe-8c3c-6c1ac185e864
2021-08-04T09:54:18.0882358Z   * Publisher  : VanRoey.be
2021-08-04T09:54:18.0882675Z   * Name       : Finance Extension (BE)
2021-08-04T09:54:18.0883102Z   * Description: Finance Extension is functionality to simplify finance actions for the users.
2021-08-04T09:54:18.0883556Z *** Set ApplicationInsightsKey = aa14c6a3-a427-447f-a271-c9dc8e4f810f
2021-08-04T09:54:18.0883890Z *** Match: yyyyWW
2021-08-04T09:54:18.0884208Z *** Retaining original [Major] from version (?.0.0.0)
2021-08-04T09:54:18.0884571Z *** Retaining original [Minor] from version (0.?.0.0)
2021-08-04T09:54:18.0885030Z *** Setting Managed App Version [D:\azure-vsts-agent-build\_work\113\s\App\app.json] =>  1.0.202131.14932
2021-08-04T09:54:18.0885553Z *** VSCode Settings: [D:\azure-vsts-agent-build\_work\113\s\App\.vscode\settings.json]
2021-08-04T09:54:18.0885942Z *** VSCode-Settings json found.
2021-08-04T09:54:18.0886343Z *** Loading Json Object: [D:\azure-vsts-agent-build\_work\113\s\App\.vscode\settings.json]
2021-08-04T09:54:18.0886815Z *** Overrule VSCode settings RuleSetPath: appsource.default.ruleset.json
2021-08-04T09:54:18.0887227Z *** Using Ruleset: [appsource.default.ruleset.json]
2021-08-04T09:54:18.0887558Z ##[command]"Get-BCArtifactUrl" 
2021-08-04T09:54:18.0887983Z Name                           Value                                                                                   
2021-08-04T09:54:18.0888537Z ----                           -----                                                                                   
2021-08-04T09:54:18.0889098Z select                         Latest                                                                                  
2021-08-04T09:54:18.0889821Z type                           Sandbox                                                                                 
2021-08-04T09:54:18.0890378Z country                        be                                                                                      
2021-08-04T09:54:18.0890643Z 
2021-08-04T09:54:18.0890751Z 
2021-08-04T09:54:18.0890843Z 
2021-08-04T09:54:34.1411800Z *** Platform: c:\bcartifacts.cache\sandbox\18.3.27240.28653\platform
2021-08-04T09:54:34.1425961Z *** Localisation: c:\bcartifacts.cache\sandbox\18.3.27240.28653\be
2021-08-04T09:54:34.1670876Z *** VSIX Path: C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ModernDev\program files\Microsoft Dynamics NAV\180\AL Development Environment\ALLanguage.vsix
2021-08-04T09:54:34.1708139Z *** ALC Path: C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\alc.exe
2021-08-04T09:54:34.1727333Z *** Nav.CodeAnalysis Path: C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Microsoft.Dynamics.Nav.CodeAnalysis.dll
2021-08-04T09:54:34.2432936Z *** Get Localised Apps [114]
2021-08-04T09:54:35.6754591Z *** Get Platform Apps [105]
2021-08-04T09:54:35.6762723Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\APIV1\Source\Microsoft__Exclude_APIV1_.app
2021-08-04T09:54:35.6870882Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\APIV1\Test\Microsoft__Exclude_APIV1_ Tests.app
2021-08-04T09:54:35.6902684Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\APIV2\Source\Microsoft__Exclude_APIV2_.app
2021-08-04T09:54:35.6945837Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\APIV2\Test\Microsoft__Exclude_APIV2_ Tests.app
2021-08-04T09:54:35.6978962Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Application\Source\Microsoft_Application.app
2021-08-04T09:54:35.7010326Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Base Application.app
2021-08-04T09:54:35.8019650Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Czech language (Czechia).app
2021-08-04T09:54:35.8052965Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Danish language (Denmark).app
2021-08-04T09:54:35.8081425Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Dutch language (Belgium).app
2021-08-04T09:54:35.8109310Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Dutch language (Netherlands).app
2021-08-04T09:54:35.8137114Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_English language (Australia).app
2021-08-04T09:54:35.8164247Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_English language (Canada).app
2021-08-04T09:54:35.8190107Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_English language (New Zealand).app
2021-08-04T09:54:35.8216418Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_English language (United Kingdom).app
2021-08-04T09:54:35.8242234Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_English language (United States).app
2021-08-04T09:54:35.8269167Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Finnish language (Finland).app
2021-08-04T09:54:36.5783859Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_French language (Belgium).app
2021-08-04T09:54:36.5784546Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_French language (Canada).app
2021-08-04T09:54:36.5785147Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_French language (France).app
2021-08-04T09:54:36.5785776Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_French language (Switzerland).app
2021-08-04T09:54:36.5786380Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_German language (Austria).app
2021-08-04T09:54:36.5786975Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_German language (Germany).app
2021-08-04T09:54:36.5787579Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_German language (Switzerland).app
2021-08-04T09:54:36.5788253Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Icelandic language (Iceland).app
2021-08-04T09:54:36.5788847Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Italian language (Italy).app
2021-08-04T09:54:36.5789621Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Italian language (Switzerland).app
2021-08-04T09:54:36.5790231Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Norwegian language (Norway).app
2021-08-04T09:54:36.5791025Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Russian language (Russia).app
2021-08-04T09:54:36.5791614Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Spanish language (Mexico).app
2021-08-04T09:54:36.5792199Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Spanish language (Spain).app
2021-08-04T09:54:36.5792780Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Source\Microsoft_Swedish language (Sweden).app
2021-08-04T09:54:36.5793356Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Library-NoTransactions.app
2021-08-04T09:54:36.5794029Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Bank.app
2021-08-04T09:54:36.5794572Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Cash Flow.app
2021-08-04T09:54:36.5795137Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Cost Accounting.app
2021-08-04T09:54:36.5795705Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-CRM integration.app
2021-08-04T09:54:36.5796272Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Data Exchange.app
2021-08-04T09:54:36.5796907Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Dimension.app
2021-08-04T09:54:36.5797445Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-ERM.app
2021-08-04T09:54:36.5797995Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Fixed Asset.app
2021-08-04T09:54:36.5798556Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-General Journal.app
2021-08-04T09:54:36.5799113Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Graph.app
2021-08-04T09:54:36.5799660Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Integration.app
2021-08-04T09:54:36.5800207Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Invoicing.app
2021-08-04T09:54:36.5800750Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Job.app
2021-08-04T09:54:36.5801283Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Local.app
2021-08-04T09:54:36.5801830Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Marketing.app
2021-08-04T09:54:36.5802371Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Misc.app
2021-08-04T09:54:36.5802933Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Monitor Sensitive Fields.app
2021-08-04T09:54:36.5803507Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Permissions.app
2021-08-04T09:54:36.5857740Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Physical Inventory.app
2021-08-04T09:54:36.5858658Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Prepayment.app
2021-08-04T09:54:36.5879138Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Rapid Start.app
2021-08-04T09:54:36.5903365Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Report.app
2021-08-04T09:54:36.5924633Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Resource.app
2021-08-04T09:54:36.5939808Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Reverse.app
2021-08-04T09:54:36.5953066Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-SCM.app
2021-08-04T09:54:36.6008806Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-SINGLESERVER.app
2021-08-04T09:54:36.6034679Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-SMB.app
2021-08-04T09:54:36.6063064Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-SMTP.app
2021-08-04T09:54:36.6085982Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-TestLibraries.app
2021-08-04T09:54:36.6133530Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Upgrade.app
2021-08-04T09:54:36.6158163Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-User.app
2021-08-04T09:54:36.6182172Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-VAT.app
2021-08-04T09:54:36.6208654Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\BaseApp\Test\Microsoft_Tests-Workflow.app
2021-08-04T09:54:36.6238490Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\ClientAddIns\Source\Microsoft__Exclude_ClientAddIns_.app
2021-08-04T09:54:36.6263093Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\CompanyHub\Source\Microsoft_Company Hub.app
2021-08-04T09:54:36.6296805Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\CompanyHub\Test\Microsoft_Company Hub Tests.app
2021-08-04T09:54:36.6320420Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\datacorrectionfa\source\Microsoft_Troubleshoot FA Ledger Entries.app
2021-08-04T09:54:36.6345422Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Current User Connector\Source\Microsoft_Email - Current User Connector.app
2021-08-04T09:54:36.6372156Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Current User Connector\Test\Microsoft_Email - Current User Connector Tests.app
2021-08-04T09:54:36.6395656Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Microsoft 365 Connector\Source\Microsoft_Email - Microsoft 365 Connector.app
2021-08-04T09:54:36.6422190Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Microsoft 365 Connector\Test\Microsoft_Email - Microsoft 365 Connector Tests.app
2021-08-04T09:54:36.6446309Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Outlook REST API\Source\Microsoft_Email - Outlook REST API.app
2021-08-04T09:54:36.6473679Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - Outlook REST API\Test\Microsoft_Library Outlook REST API.app
2021-08-04T09:54:36.6497445Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - SMTP Connector\Source\Microsoft_Email - SMTP Connector.app
2021-08-04T09:54:36.6525434Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\Email - SMTP Connector\Test\Microsoft_Email - SMTP Connector Tests.app
2021-08-04T09:54:36.6550404Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\EssentialBusinessHeadlines\Source\Microsoft_Essential Business Headlines.app
2021-08-04T09:54:36.6582868Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\EssentialBusinessHeadlines\Test\Microsoft_Essential Business Headlines Test.app
2021-08-04T09:54:36.6605803Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\LatePaymentPredictor\Source\Microsoft_Late Payment Prediction.app
2021-08-04T09:54:36.6635462Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\LatePaymentPredictor\Test\Microsoft_Late Payment Prediction Tests.app
2021-08-04T09:54:36.6658995Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\microsoftuniversalprint\source\Microsoft_Universal Print Integration (Preview).app
2021-08-04T09:54:36.6688129Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\onprem permissions\source\Microsoft_OnPrem Permissions.app
2021-08-04T09:54:36.6735481Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\onprem permissions\test\Microsoft_OnPrem Permissions Tests.app
2021-08-04T09:54:36.6758519Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\paypalpaymentsstandard\source\Microsoft_PayPal Payments Standard.app
2021-08-04T09:54:36.6790163Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\paypalpaymentsstandard\test\Microsoft_PayPal Payments Standard Tests.app
2021-08-04T09:54:36.6813655Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\salesandinventoryforecast\source\Microsoft_Sales and Inventory Forecast.app
2021-08-04T09:54:36.6846029Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\salesandinventoryforecast\test\Microsoft_Sales and Inventory Forecast Tests.app
2021-08-04T09:54:36.6869236Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\sendtoemailprinter\source\Microsoft_Send To Email Printer.app
2021-08-04T09:54:36.6898505Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\simplifiedbankstatementimport\source\Microsoft_Simplified Bank Statement Import.app
2021-08-04T09:54:36.6927244Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\system application\source\Microsoft_System Application.app
2021-08-04T09:54:36.7034024Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\system application\test\Microsoft_System Application Test Library.app
2021-08-04T09:54:36.7066200Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\system application\test\Microsoft_System Application Test.app
2021-08-04T09:54:36.7100053Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit Samples.app
2021-08-04T09:54:36.7123683Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit Tests.app
2021-08-04T09:54:36.7148130Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit.app
2021-08-04T09:54:36.7175275Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\TestLibraries\Any\Microsoft_Any.app
2021-08-04T09:54:36.7199401Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\TestLibraries\Assert\Microsoft_Library Assert.app
2021-08-04T09:54:36.7222410Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\TestLibraries\permissions mock\Microsoft_Permissions Mock.app
2021-08-04T09:54:36.7245273Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\TestLibraries\Variable Storage\Microsoft_Library Variable Storage.app
2021-08-04T09:54:36.7268505Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\testframework\TestRunner\Microsoft_Test Runner.app
2021-08-04T09:54:36.7293102Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\uksendremittanceadvice\source\Microsoft_Send remittance advice by email.app
2021-08-04T09:54:36.7317835Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\vatgroupmanagement\source\Microsoft_VAT Group Management.app
2021-08-04T09:54:36.7348551Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Applications\vatgroupmanagement\test\Microsoft_VAT Group Management Tests.app
2021-08-04T09:54:36.7372930Z   * C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ModernDev\program files\Microsoft Dynamics NAV\180\AL Development Environment\System.app
2021-08-04T09:54:36.7420891Z *** Retained Platform Apps [19]
2021-08-04T09:54:36.7429972Z *** Loaded [133] Apps
2021-08-04T09:54:36.7462449Z *** Get Build Apps [1]
2021-08-04T09:54:36.7468553Z *** AL Cache: [D:\azure-vsts-agent-build\_work\113\s]
2021-08-04T09:54:36.7496626Z *** Loaded [6] AL Apps
2021-08-04T09:54:36.7547899Z *** AL Language Version: 7.3.492799
2021-08-04T09:54:36.7573290Z *** App To Build: [D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app]
2021-08-04T09:54:36.7580051Z *** Checking for Assemblies in App
2021-08-04T09:54:36.7610315Z *** Add Windows Assembly Path [C:\Windows\assembly]
2021-08-04T09:54:36.8103195Z *** Adding Mock assemblies [C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Test Assemblies\Mock Assemblies]
2021-08-04T09:54:36.8792416Z *** Adding Add-In assemblies [C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\LegacyDlls\program files\Microsoft Dynamics NAV\180\RoleTailored Client]
2021-08-04T09:54:36.8798900Z *** Adding Add-In assemblies [C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ServiceTier\program files\Microsoft Dynamics NAV\180\Service]
2021-08-04T09:54:36.8830377Z *** Searching CodeCop: CodeCop
2021-08-04T09:54:36.9007317Z *** Codecop found: C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll
2021-08-04T09:54:36.9385716Z *** Searching CodeCop: UICop
2021-08-04T09:54:36.9386273Z *** Codecop found: C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll
2021-08-04T09:54:37.0118890Z *** Searching CodeCop: AppSourceCop
2021-08-04T09:54:37.0119491Z *** Codecop found: C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll
2021-08-04T09:54:37.0470973Z *** Copy BC Artifact dependencies
2021-08-04T09:54:39.7944394Z *** Copy Project Artifact dependencies
2021-08-04T09:54:39.8452058Z *** Copy Build Artifacts
2021-08-04T09:54:39.8484592Z *** Final app.json:
2021-08-04T09:54:39.8508597Z {
2021-08-04T09:54:39.8508942Z     "id":  "c7f3afeb-95cc-4ffe-8c3c-6c1ac185e864",
2021-08-04T09:54:39.8509302Z     "name":  "Finance Extension (BE)",
2021-08-04T09:54:39.8509626Z     "publisher":  "VanRoey.be",
2021-08-04T09:54:39.8509949Z     "version":  "1.0.202131.14932",
2021-08-04T09:54:39.8510388Z     "brief":  "Finance Extension is functionality to simplify finance actions.",
2021-08-04T09:54:39.8511667Z     "description":  "Finance Extension is functionality to simplify finance actions for the users.",
2021-08-04T09:54:39.8512321Z     "privacyStatement":  "https://www.vanroey.be/voorwaarden/#tab4",
2021-08-04T09:54:39.8512754Z     "EULA":  "https://www.vanroey.be/voorwaarden/",
2021-08-04T09:54:39.8513325Z     "help":  "https://www.vanroey.be/support/",
2021-08-04T09:54:39.8513704Z     "url":  "https://www.vanroey.be/",
2021-08-04T09:54:39.8514074Z     "logo":  "Media/VanRoey-logo-compact.png",
2021-08-04T09:54:39.8514693Z     "dependencies":  [
2021-08-04T09:54:39.8515021Z                          {
2021-08-04T09:54:39.8515482Z                              "id":  "b561d731-1e39-4bf4-a2ea-a162f3ab38a8",
2021-08-04T09:54:39.8515972Z                              "publisher":  "VanRoey.be",
2021-08-04T09:54:39.8516432Z                              "name":  "Finance Extension Library",
2021-08-04T09:54:39.8516849Z                              "version":  "1.0.0.0"
2021-08-04T09:54:39.8517181Z                          }
2021-08-04T09:54:39.8517660Z                      ],
2021-08-04T09:54:39.8517956Z     "internalsVisibleTo":  [
2021-08-04T09:54:39.8518270Z                                {
2021-08-04T09:54:39.8518663Z                                    "id":  "0000942a-0fbd-4f7a-83f1-0cede5cb6484",
2021-08-04T09:54:39.8519119Z                                    "publisher":  "VanRoey.be",
2021-08-04T09:54:39.8519572Z                                    "name":  "Finance Extension (BE) Testing"
2021-08-04T09:54:39.8519954Z                                }
2021-08-04T09:54:39.8520250Z                            ],
2021-08-04T09:54:39.8520538Z     "screenshots":  [
2021-08-04T09:54:39.8520675Z 
2021-08-04T09:54:39.8520914Z                     ],
2021-08-04T09:54:39.8521207Z     "application":  "17.0.0.0",
2021-08-04T09:54:39.8521516Z     "platform":  "17.0.0.0",
2021-08-04T09:54:39.8521800Z     "idRanges":  [
2021-08-04T09:54:39.8522073Z                      {
2021-08-04T09:54:39.8522432Z                          "from":  2094917,
2021-08-04T09:54:39.8522793Z                          "to":  2094926
2021-08-04T09:54:39.8523101Z                      },
2021-08-04T09:54:39.8523498Z                      {
2021-08-04T09:54:39.8523816Z                          "from":  2095057,
2021-08-04T09:54:39.8524162Z                          "to":  2095066
2021-08-04T09:54:39.8524464Z                      }
2021-08-04T09:54:39.8524728Z                  ],
2021-08-04T09:54:39.8525080Z     "contextSensitiveHelpUrl":  "https://www.vanroey.be/support/",
2021-08-04T09:54:39.8525430Z     "features":  [
2021-08-04T09:54:39.8525727Z                      "TranslationFile"
2021-08-04T09:54:39.8526015Z                  ],
2021-08-04T09:54:39.8526291Z     "runtime":  "6.0",
2021-08-04T09:54:39.8526653Z     "applicationInsightsKey":  "aa14c6a3-a427-447f-a271-c9dc8e4f810f"
2021-08-04T09:54:39.8526975Z }
2021-08-04T09:54:39.8527083Z 
2021-08-04T09:54:39.8540231Z *** Detect ALC.EXE Features.
2021-08-04T09:54:39.8546217Z ##[command]& C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\alc.exe /?
2021-08-04T09:54:39.9960085Z   * PARALLEL
2021-08-04T09:54:39.9966578Z   * MAXDEGREEOFPARALLELISM
2021-08-04T09:54:39.9973869Z   * ASSEMBLYPROBINGPATHS
2021-08-04T09:54:39.9979547Z *** Start ALC.EXE / Compile AL Extension
2021-08-04T09:54:39.9987251Z ##[command]& C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\alc.exe /packagecachepath:"D:\azure-vsts-agent-build\_work\113\s\App\.ALOPSCache" /project:"D:\azure-vsts-agent-build\_work\113\s\App" /out:"D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app" /fullpaths /analyzer:"C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.CodeCop.dll","C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.UICop.dll","C:\bcartifacts.cache\sandbox\18.3.27240.28653\VSIX\extension\bin\Analyzers\Microsoft.Dynamics.Nav.AppSourceCop.dll" /ruleset:"appsource.default.ruleset.json" /parallel+ /maxDegreeOfParallelism:2 /assemblyprobingpaths:"C:\Windows\assembly","C:\Windows\Microsoft.NET\assembly","C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\Test Assemblies\Mock Assemblies","C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\LegacyDlls\program files\Microsoft Dynamics NAV\180\RoleTailored Client","C:\bcartifacts.cache\sandbox\18.3.27240.28653\platform\ServiceTier\program files\Microsoft Dynamics NAV\180\Service"
2021-08-04T09:54:40.3743386Z *** AL Compiler Exit Code: 1
2021-08-04T09:54:40.3787633Z *** Set Pipeline variable $(ALOPS_COMPILE_ARTIFACT) = 'D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app'
2021-08-04T09:54:40.3850762Z *** Set Pipeline variable $(ALOPS_COMPILE_ARTIFACT_ARRAY) = 'D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app,D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app'
2021-08-04T09:54:40.3938758Z *** Start processing compile results.
2021-08-04T09:54:40.3962285Z *** Compile OK.
2021-08-04T09:54:40.3979966Z *** App not Created: [D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app]
2021-08-04T09:54:40.4527007Z *** BC Artifact [D:\azure-vsts-agent-build\_work\113\a\VanRoey.be_Finance Extension (BE)_1.0.202131.14932_sandbox_18.3_be.app] not produced.
2021-08-04T09:54:40.4533855Z *** Publish XLIF as Artifact skipped
2021-08-04T09:54:40.4592845Z ModuleType Version Name              ExportedCommands                                                                  
2021-08-04T09:54:40.4596818Z ---------- ------- ----              ----------------                                                                  
2021-08-04T09:54:40.4621913Z Script     2.0.14  BcContainerHelper {Add-FontsToBcContainer, Add-GitToAlProjectFolder, Backup-BcContainerDatabases,...
2021-08-04T09:54:40.4622231Z 
2021-08-04T09:54:40.4622345Z 
2021-08-04T09:54:40.5045837Z ##[section]Async Command Start: Add Build Tag
2021-08-04T09:54:40.5046519Z Build '14932' has following tags now: AL.Analyzer.UICop, AL.Analyzer.AppSourceCop, AL.Analyzer.CodeCop
2021-08-04T09:54:40.5046894Z ##[section]Async Command End: Add Build Tag
2021-08-04T09:54:40.5047714Z ##[section]Async Command Start: Add Build Tag
2021-08-04T09:54:40.5048212Z Build '14932' has following tags now: AL.Analyzer.UICop, AL.Analyzer.AppSourceCop, AL.Analyzer.CodeCop
2021-08-04T09:54:40.5048572Z ##[section]Async Command End: Add Build Tag
2021-08-04T09:54:40.5049373Z ##[section]Async Command Start: Add Build Tag
2021-08-04T09:54:40.5049875Z Build '14932' has following tags now: AL.Analyzer.UICop, AL.Analyzer.AppSourceCop, AL.Analyzer.CodeCop
2021-08-04T09:54:40.5050242Z ##[section]Async Command End: Add Build Tag
2021-08-04T09:54:40.5051233Z ##[section]Finishing: Compile Extension

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem. You can easily paste them in here.

Additional context Add any other context about the problem here.

waldo1001 commented 3 years ago

We'll see if we can print more info about the error.

Do you have the same error on another agent?

lorenzfleerackers commented 3 years ago

Yes we have the same issue on all agents.

Arthurvdv commented 3 years ago

Update We found the origin from this issue; In the pipeline a AppSourceCopFile.json was constructed, where a duplicate entry with a different action was defined.

Placing this constructed AppSourceCopFile.json in VS Code a readable warning will be outputted:

error AL1033: An error occurred while loading the included rule set file App\./.vscode/custom.ruleset.json - The rule set file has duplicate rules for 'AS0092' with differing actions 'Warn' and 'Suppress'.
Error: The package could not be created.

Would be a great improvement if ALOps could output this error in DevOps.

waldo1001 commented 3 years ago

We already did some work for this. Will be part of next release!

AdminHodor commented 3 years ago

Dear @lorenzfleerackers ,

Please tryout our latest release v1.445.

Kind regards