-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
54 lines (45 loc) · 1.27 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
version: 3.2.0.{build}
image: Visual Studio 2022
skip_non_tags: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: "{version}"
package_version: "{version}"
assembly_version: "{version}"
file_version: "{version}"
informational_version: "{version}"
before_build:
- ps: >-
nuget restore
build:
project: C:\projects\dotfeather\src\dotfeather.csproj
publish_nuget: true
configuration: Release
after_build:
- nuget pack -Prop Configuration=Release src -OutputDirectory src/bin/Release/
artifacts:
- path: '**\*.nupkg'
name: DotFeather
deploy:
- provider: NuGet
api_key:
# Use encrypt tool
# https://ci.appveyor.com/tools/encrypt
secure: 1k6f11E9bN8eBIzSz4tDjART0Nk5agF+JvR85X+w8Lb8GgJSJTr2uPlZrM+TyIja
artifact: /.*\.nupkg/
on:
appveyor_repo_tag: true
- provider: GitHub
artifact: /.*\.nupkg/ # upload all NuGet packages to release assets
draft: false
prerelease: false
description: |
# 3.2.0
## 追加
* `DF.Run<T>` メソッドを追加
* 指定したシーンを起動時に自動的に読み込みます。
auth_token:
secure: Cl90a4N9L02nmN2e45TxbRCOGAPa1SnO4A0IF6StuIZvUGz4gFvP+5TlPU70JlPp
on:
APPVEYOR_REPO_TAG: true # deploy on tag push only