Skip to content

Commit 128edd0

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent e49dce9 commit 128edd0

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

azure-pipelines.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Universal Windows Platform
2+
# Build a Universal Windows Platform project using Visual Studio.
3+
# Add steps that test and distribute an app, save build artifacts, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'windows-latest'
11+
12+
variables:
13+
solution: '**/*.sln'
14+
buildPlatform: 'x86|x64|ARM'
15+
buildConfiguration: 'Release'
16+
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
17+
18+
steps:
19+
- task: NuGetToolInstaller@0
20+
21+
- task: NuGetCommand@2
22+
inputs:
23+
restoreSolution: '$(solution)'
24+
25+
- task: VSBuild@1
26+
inputs:
27+
platform: 'x86'
28+
solution: '$(solution)'
29+
configuration: '$(buildConfiguration)'
30+
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'

0 commit comments

Comments
 (0)