-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
46 lines (38 loc) · 1014 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
43
44
45
46
version: 0.10.0-build{build}
image: Visual Studio 2022
shallow_clone: true
clone_folder: c:\Avalonia.PropertyGenerator
configuration:
- Debug
- Release
platform: Any CPU
matrix:
fast_finish: true
nuget:
account_feed: false
project_feed: true
disable_publish_on_pr: true
build_script:
- cmd: dotnet msbuild /t:Restore;Build;Pack Avalonia.PropertyGenerator.sln
test: off
artifacts:
- path: 'artifacts\Debug\nupkg\*.nupkg'
name: DebugNupkg
- path: 'artifacts\Release\nupkg\*.nupkg'
name: ReleaseNupkg
deploy:
- provider: NuGet
api_key:
secure: nsINQ1oHohP7tM/wP5Icr1Ko3P/kgo12dHZlEd1HoYDOGkmRFQE6qJVx26uZLL7O
artifact: ReleaseNupkg
on:
appveyor_repo_tag: true
configuration: Release
- provider: NuGet
server: https://www.myget.org/F/jp2masa/api/v2/package
artifact: DebugNupkg
api_key:
secure: puOcEbngEmaVMEnUL20u4mzATgvoyaTPRWGGwE98as1+8KGY3ypOKzt5OV63duwI
on:
branch: master
configuration: Debug