-
Notifications
You must be signed in to change notification settings - Fork 27
/
appveyor.yml
40 lines (32 loc) · 931 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
# http://www.appveyor.com/docs/appveyor-yml
# version format
version: 1.1.{build}
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Build worker image (VM template)
image: Visual Studio 2015
# Assembly Info
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
#Build Relase instead of Debug
configuration: Release
artifacts:
- path: Tulpep.NotificationWindow\bin\Release\Tulpep.NotificationWindow.dll
name: Tulpep.NotificationWindow.dll
- path: '**\Tulpep.NotificationWindow*.nupkg'
name: Tulpep.NotificationWindow.nupkg
after_test:
- ps: .\Nuget\build.ps1
#Publish NuGet
deploy:
provider: NuGet
api_key:
secure: 5ldn0g+rIeS2ZHbyFJjilj/nCUyUcTTMN1As3uJ3kCtW2QStDsdk4dCiL4G2KvOL
artifact: /.*\.nupkg/
on:
branch: master