function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nikhil Sharma 263Nikhil Sharma 263 

How to bypass UWP App Certification in an Azure Devops build pipeline?

When I create a UWP app package from Visual Studio, running the app certification is optional. However, when building the app in an Azure Devops pipeline, I don't know how to bypass the DevOps Certification Course (https://www.igmguru.com/cloud-computing/devops-certification-training/).

Here is the task:
task: VSBuild@1
displayName: Build solution **/MyApp_UWP.sln
inputs:
    solution: '**/MyApp_UWP.sln'
    vsVersion: 15.0
    msbuildArgs: '/p:AppxBundlePlatforms="$(BuildPlatform)" /p:AppxPackageDir="$(Build.ArtifactStagingDirectory)\AppxPackages\\" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
    platform: x86
    configuration: '$(BuildConfiguration)'

 
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Nikhil,

Can you check if your ask is similar to this.


https://stackoverflow.com/questions/53050523/how-to-bypass-uwp-app-certification-in-an-azure-devops-build-pipeline

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,