I\'m currently working together with Microsoft on a case where one of your UWP Apps is crashing after start. After a lot of debugging around msbuild I recognized that the cr
I used @SebastianZolg's solution this way:
- task: PowerShell@2
displayName: 'Distribute via AppCenter'
inputs:
targetType: 'filePath'
filePath: 'AppCenterDistributeThroughCli.ps1'
arguments: xxxMyTokenxxxxx MyAppCenterAppSlug "Collaborators"
workingDirectory: '$(Build.ArtifactStagingDirectory)\AppxPackages'
And AppCenterDistributeThroughCli.ps1
is @SebastianZolg's script.