Browse Source

Set up CI with Azure Pipelines

dotnet6
Scott Hanselman 7 years ago
parent
commit
064f906554
  1. 14
      azure-pipelines.yml

14
azure-pipelines.yml

@ -0,0 +1,14 @@
# ASP.NET Core
# Build and test ASP.NET Core web applications targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/dotnet-core
pool:
vmImage: 'Ubuntu 16.04'
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
Loading…
Cancel
Save