Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
alvaron14
bfd2dc4fc6 Update azure-pipelines.yml for Azure Pipelines 2020-12-29 02:36:40 +01:00
alvaron14
5dc16a2880 Update azure-pipelines.yml for Azure Pipelines 2020-12-28 21:58:24 +01:00
alvaron14
b21b1f87b8 Set up CI with Azure Pipelines
[skip ci]
2020-12-28 21:12:27 +01:00

22
azure-pipelines.yml Normal file
View file

@ -0,0 +1,22 @@
# 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
trigger:
- main
pool:
vmImage: 'ubuntu-latest'
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'publish'
publishWebProjects: false
projects: '**/*.csproj'