diff --git a/README.md b/README.md index dff610f8ce..8a72d281df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ -# Sample ASP.NET Core application for Azure Pipelines docs +[![Build Status](https://dev.azure.com/demoscaifinance/AZ400-Bruno-Davide/_apis/build/status%2Fdavidebruno28.pipelines-dotnet-core?branchName=master)](https://dev.azure.com/demoscaifinance/AZ400-Bruno-Davide/_build/latest?definitionId=10&branchName=master) + + + +a# Sample ASP.NET Core application for Azure Pipelines docs For information on how to set up a pipeline for this repository, see [Create your first pipeline](https://docs.microsoft.com/azure/devops/pipelines/get-started-yaml?view=azure-devops). For more information on building .NET Core applications, see [.NET Core](https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core?view=azure-devops). diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..27a798ad83 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script'