Distribute UWP App to App Center (aka Mobile Center) using VSTS Task

后端 未结 2 1957
广开言路
广开言路 2021-01-06 03:55

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

2条回答
  •  春和景丽
    2021-01-06 04:53

    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.

提交回复
热议问题