I'm trying to publish an app to Windows Store using Azure Pipelines, the problem is the self-signed certificate is not accepted on the store, while I can publish the package using Visual Studio.
How can I make it work.
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)"
/p:AppxPackageDir="$(appxPackageDir)"
/p:AppxBundle=Always
/p:UapAppxPackageBuildMode=StoreUpload
/p:AppxPackageSigningEnabled=true
/p:AppxPackageOutput=$(Build.ArtifactStagingDirectory)\***.msix'
displayName: 'Package the App'
- task: store-flight@0
inputs:
serviceEndpoint: 'PublishToWinStore'
appId: '***'
flightName: 'Beta'
packagePath: '$(Build.ArtifactStagingDirectory)\***.msix'
force: true
skipPolling: false
For this issue , as stated in the documentation:
For details ,please refer to the link mentioned by Access Denied in comment.