-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
95 lines (69 loc) · 2.55 KB
/
appveyor.yml
File metadata and controls
95 lines (69 loc) · 2.55 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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:
- x86
- x64
- 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 .\SqlKata.Extensions\SqlKata.Extensions.csproj
- msbuild .\SqlKata.MSOfficeCompilers\SqlKata.MSOfficeCompilers.csproj
- msbuild .\MsAccessInterop\MsAccessDao.csproj
- msbuild .\DataBaseObjects\DataBaseObjects.csproj
- msbuild .\DataBaseObjects.MSOffice\DatabaseObjects.MsOffice.csproj
- msbuild .\DataBaseObjects.SqLite\DatabaseObjects.SqLite.csproj
- msbuild .\DataBaseObjects.SqlServer\DataBaseObjects.SqlServer.csproj
artifacts: # Locate the Nuget Packages
- path: .\_OutputPackages\RFBCodeWorks.DatabaseObjects.1*.nupkg
name: DatabaseObjects
- path: .\_OutputPackages\RFBCodeWorks.DatabaseObjects.MsOffice.1*.nupkg
name: DatabaseObjects.MSOffice
- path: .\_OutputPackages\RFBCodeWorks.DatabaseObjects.SqLite.1*.nupkg
name: DatabaseObjects.SqLite
- path: .\_OutputPackages\RFBCodeWorks.DatabaseObjects.SqlServer.1*.nupkg
name: DatabaseObjects.SqlServer
- path: .\_OutputPackages\RFBCodeWorks.MsAccessDao.1*.nupkg
name: RFBCodeWorks.MsAccessDao
- path: .\_OutputPackages\RFBCodeWorks.SqlKata.Extensions.1*.nupkg
name: SqlKata.Extensions
- path: .\_OutputPackages\RFBCodeWorks.SqlKata.MsOfficeCompilers.1*.nupkg
name: SqlKata.MsOfficeCompilers
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