-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
appveyor.yml
42 lines (32 loc) · 868 Bytes
/
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
# version format
version: 5.1.5.{build}
# environment
environment:
packageversion: 5.1.5
image: Visual Studio 2022
# Do not build on tags
skip_tags: true
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '$(packageversion)'
assembly_file_version: '$(packageversion)'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '$(packageversion)'
package_version: '$(packageversion)'
before_build:
- appveyor-retry dotnet restore src/UIOMatic.sln -v Minimal
build_script:
- dotnet build src/UIOMatic.sln
- dotnet pack src/UIOMatic/UIOMatic.csproj -o artifacts
- dotnet pack src/UIOMatic.Core/UIOMatic.Core.csproj -o artifacts
artifacts:
- path: artifacts\*.nupkg
deploy:
provider: NuGet
server:
api_key:
secure: oK4E7nnsqROELHTg1p+1+DZjDZ8TK6zq6mMiOOEOFbkwcxBkjZPjMZAn7NbFnRVj
artifact: /.*\.nupkg/