This repository has been archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathappveyor.yml
68 lines (51 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# general configuration #
#---------------------------------#
# Just for troubleshooting
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# version format
version: 0.3.{build}-beta
# branches:
# whitelist
# only:
# - master
# - development
image: Visual Studio 2015
clone_depth: 10
skip_tags: true
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
before_build:
- nuget restore src\YTMusicDownloader.sln -SolutionDirectory src\
#---------------------------------#
# build configuration #
#---------------------------------#
platform:
- x86
environment:
certEncryptPw:
secure: 6NdPPWtPhCGeEKGf9XqASEbzdJ3QPoPSsk6vXNO83WE4D+qAV76M2q/cDgjFjITBh5V2IgfwmXueb7MHgmplL3dw+CbxqAZmn8+PJLGo5TE=
certEncryptSalt:
secure: 0iLWuQs35JVizf7VxdOeNsVxccxtxPb3RhF2heu6VGW8vP4SzroHy5+d5RXTiiEw+hhTF1SNbu/v2N2/EaP9UNVZaZmPZ2gh4WdO3QGvl7w=
certPw:
secure: 39IBOHy06OYh2ozbLTur+A==
signtoolLocation: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\signtool.exe
configuration: Release
build:
verbosity: minimal
project: src\YTMusicDownloader\YTMusicDownloader.csproj
after_build:
- ps: .\buildScripts\signApp.ps1 -certFile ..\cert\YTMusicDownloader.pfx -outputDir src\YTMusicDownloader\bin\x86
artifacts:
- path: src\YTMusicDownloader\bin\x86\$(configuration)
name: YTMusicDownloader_portable_x86
type: zip
#test: off