azure-pipelines-release-pipeline
How do I uninstall “Microsoft .NET Core 1.0.0 RC2 – VS 2015 Tooling Preview 1”?
Download a copy of the installer exe from Microsoft: DotNetCore.1.0.0.RC2-VS2015Tools.Preview1.exe DotNetCore.1.0.0-VS2015Tools.Preview2.exe DotNetCore.1.0.0-VS2015Tools.Preview2.0.1.exe DotNetCore.1.0.1-VS2015Tools.Preview2.0.2.exe DotNetCore.1.0.1-VS2015Tools.Preview2.0.3.exe DotNetCore.1.0.1-VS2015Tools.Preview2.0.4.exe After choose this file when asked. Then you can successfully remove it.
Azure DevOps, YAML release pipelines? [closed]
At the time of writing this response the features timeline reflects yaml releases are coming 2018 Q3. https://learn.microsoft.com/en-us/azure/devops/release-notes/ Update: This has been bumped a few times. Checking the comments below is recommended as folks have been providing updates as they find them. Update As per comments, this is now possible: https://devblogs.microsoft.com/devops/whats-new-with-azure-pipelines/. The following is copied … Read more
What is the difference between Pipeline and Release Pipeline in azure devops?
Pipelines is a name in latest DevOps user interface for Builds. In old UI it’s like this: It can be said that Pipeline(or Build, or Build Pipeline) represents CI (continuous integration) in Azure DevOps. Release represents CD(continuous delivery) in Azure DevOps. Pipeline usually takes code, builds it, tests and creates an artifact. Release takes the … Read more