-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
74 lines (57 loc) · 1.84 KB
/
appveyor.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: 1.0.{build}.{branch}
#
# https://www.appveyor.com/docs/appveyor-yml/
#
#---------------------------------#
# environment configuration #
#---------------------------------#
image: Visual Studio 2022
nuget:
disable_publish_on_pr: true # disable publishing of .nupkg artifacts to account/project feeds for pull request builds
#---------------------------------#
# build configuration #
#---------------------------------#
platform: Any CPU
configuration: Release # AppVeyor | Release
branches:
only:
- master
build:
project: RFBCodeWorks.Mvvm.sln
publish_nuget: true
verbosity: quiet #quiet|minimal|normal|detailed
before_build:
- cmd: nuget restore
build_script:
- msbuild .\Mvvm.ViewModel\Mvvm.IViewModel.csproj
- msbuild .\Mvvm.Dialogs\Mvvm.Dialogs.csproj
- msbuild .\MvvmControls\Mvvm.Controls.csproj
- msbuild .\Mvvm.WebView2Integration\Mvvm.WebView2Integration.csproj
artifacts: # Locate the Nuget Packages
- path: .\_OutputNuget\*Controls*.nupkg
name: Controls
- path: .\_OutputNuget\*Dialogs*.nupkg
name: Dialogs
- path: .\_OutputNuget\*IViewModel*.nupkg
name: IViewModel
- path: .\_OutputNuget\*WebView2Integration*.nupkg
name: WebView
assembly_info:
patch: false
cache:
- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
#---------------------------------#
# deployment configuration #
#---------------------------------#
# providers: Local, FTP, WebDeploy, AzureCS, AzureBlob, S3, NuGet, Environment
# provider names are case-sensitive!
#deploy:
#
# # Deploying to NuGet feed
# - provider: NuGet
# server: https://my.nuget.server/feed
# api_key:
# secure: FYWX6NfjZIVw==
# skip_symbols: false
# symbol_server: https://your.symbol.server/feed
# artifact: MyPackage.nupkg