From 37f20af83aa923d62fd2828530f255354dcc995c Mon Sep 17 00:00:00 2001 From: Dave Curylo Date: Thu, 6 Jun 2024 23:09:10 -0400 Subject: [PATCH] Create azure-pipelines.yml --- azure-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..76003a5 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,12 @@ +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: UseDotNet@2 + inputs: + version: 8.x +- task: DotNetCoreCLI@2 + inputs: + command: 'build' + arguments: '--configuration Release' + displayName: 'dotnet build Release'