Skip to content

Commit a61bb09

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent f4515e6 commit a61bb09

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

azure-pipelines.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# ASP.NET Core
2+
# Build and test ASP.NET Core projects targeting .NET Core.
3+
# Add steps that run tests, create a NuGet package, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
5+
6+
7+
trigger:
8+
- main
9+
10+
pool:
11+
vmImage: 'ubuntu-latest'
12+
13+
variables:
14+
buildConfiguration: 'Release'
15+
16+
steps:
17+
- script: dotnet build --configuration $(buildConfiguration)
18+
displayName: 'dotnet build $(buildConfiguration)'

0 commit comments

Comments
 (0)