Posts

Showing posts from January, 2019

CI-CD Pipeline in Azure | Customization basics

Image
CI-CD Pipeline in Azure After successfully configured CI/CD default pipeline in my last article https://sharjeelswork.blogspot.com/2019/01/cicd-pipeline-for-dot-net-core-and.html I am moving towards customization of CI/CD pipeline. Take the following steps to familiarize yourself with the Azure DevOps build and release pipelines. l  At the top of the DevOps Projects dashboard, select Build Pipelines. This link opens a browser tab and the Azure DevOps build pipeline for your new project. l  Select the ellipsis (...). This action opens a menu where you can start several activities such as queuing a new build, pausing a build, and editing the build pipeline. l  Select Edit. Triggers DevOps Projects automatically created a CI trigger, and every commit to the repository starts a new build. You can optionally choose to include or exclude branches from the CI process. Retention Depending on your scenario, you can specify po

Error : Sitecore root certificate, Cannot validate argument on parameter 'Signer'

Image
Error : Cannot validate argument on parameter 'Signer'. The "$_.HasPrivateKey -eq $true" validation script for the argument with value "[Subject]   CN=DO_NOT_TRUST_SitecoreRootCert, I got above error while installing sitecore 9.0 update 1 on my system. To fix above issue I just change one line in file xconnect-createcert.json. Old  "StoreLocation" : "abc" , New  "StoreLocation" : "LocalMachine" , Now delete all sitecore root certificate available in your system and re run your script. Happy Learning!!!

CI/CD pipeline for Dot Net Core and Azure DevOps

Image
CI/CD pipeline for .NET Core with Azure DevOps Projects DevOps Projects creates a CI/CD pipeline in Azure DevOps. You can create a new Azure DevOps organization or use an existing organization. DevOps Projects also creates Azure resources in the Azure subscription of your choice. Sign in to the Microsoft Azure portal. In the left pane, select Create a resource icon in the left navigation bar, and then search for DevOps Projects. Select Create. Select Dot net option from next window. In next screen select dot net core option for further process. In next screen you will get available option for service. Here you can choose option as per your requirement. In my case I am choosing windows web app and moving to next screen. Select Next. Web App on Windows is the default deployment target. Optionally, you can choose Web App on Linux or Web App for Containers. The application framewor