From b28b07cb12673535192c5b700578fefd44dc0621 Mon Sep 17 00:00:00 2001 From: Lee Jeonghun Date: Mon, 18 Jan 2021 22:57:18 +0900 Subject: [PATCH] Add CI pipelines [skip ci] --- azure-pipelines.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..48763fd --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +trigger: +- main + +pool: + vmImage: 'windows-latest' + +variables: + solution: '**/*.sln' + buildPlatform: 'x86' + buildConfiguration: 'Release' + +steps: +- task: VSBuild@1 + inputs: + solution: '$(solution)' + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)'