From 72397c425fbc171fee7d35e313cecd3385dbb67d Mon Sep 17 00:00:00 2001 From: saikumarputta <34767432+saikumarputta@users.noreply.github.com> Date: Tue, 4 Dec 2018 16:09:07 +0530 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..e3a5e2b --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,14 @@ +# ASP.NET Core +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +pool: + vmImage: 'Ubuntu 16.04' + +variables: + buildConfiguration: 'Release' + +steps: +- script: dotnet build --configuration $(buildConfiguration) + displayName: 'dotnet build $(buildConfiguration)'