forked from WindowsAppCommunity/Quarrel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines-package.yml
50 lines (43 loc) · 1.03 KB
/
azure-pipelines-package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
branches:
include:
- '*'
exclude:
- "rewrite/alpha"
paths:
include:
- src/*
exclude:
- src/Quarrel/Strings/*
- src/Quarrel/MultilingualResources/*
- src/Quarrel/Assets/*
pool:
vmImage: 'windows-latest'
variables:
solution: '**/Quarrel.sln'
buildConfiguration: 'Debug'
steps:
- task: NuGetToolInstaller@1
displayName: "Install NuGet"
- task: NuGetCommand@2
displayName: "NuGet Restore"
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
displayName: "Build.x64"
inputs:
solution: '$(solution)'
platform: 'x64'
configuration: '$(buildConfiguration)'
msbuildArchitecture: 'x64'
- task: VSBuild@1
displayName: "Build.ARM64"
inputs:
solution: '$(solution)'
platform: 'ARM64'
configuration: '$(buildConfiguration)'
msbuildArchitecture: 'x64'