Skip to content

Commit 85d381f

Browse files
committed
attempt 1 at sorting appveypr.yml for release. prepare for failure
1 parent 89c77bc commit 85d381f

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

appveyor.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
os: Visual Studio 2015
2+
configuration: AppVeyor
3+
assembly_info:
4+
patch: true
5+
file: '**\AssemblyInfo.*'
6+
assembly_version: '{version}'
7+
assembly_file_version: '{version}'
8+
assembly_informational_version: '{version}.{build}'
9+
install:
10+
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
11+
before_build:
12+
- ps: nuget restore
13+
build:
14+
verbosity: minimal
15+
after_build:
16+
- ps: nuget pack MaterialDesignThemes.nuspec -Version $env:APPVEYOR_BUILD_VERSION
17+
artifacts:
18+
- path: '**\MaterialDesignThemes.*.nupkg'
19+
- path: bin\**\*.*
20+
21+
-
22+
branches:
23+
only:
24+
- master
25+
26+
version: 0.1.0-beta{build}
27+
deploy:
28+
- provider: NuGet
29+
api_key:
30+
secure: B+WIdbRYr/rJo1QMeDwNen2xcj4RTu1d8AZiA03kb8wsWZVQxt5OgsWRacmEjWRd
31+
32+
-
33+
branches:
34+
only:
35+
- release
36+
37+
version: 1.0.0.{build}
38+
deploy:
39+
- provider: NuGet
40+
api_key:
41+
secure: B+WIdbRYr/rJo1QMeDwNen2xcj4RTu1d8AZiA03kb8wsWZVQxt5OgsWRacmEjWRd

0 commit comments

Comments
 (0)