forked from NPP-JSONViewer/JSON-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (26 loc) · 804 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
version: 1.34.{build}
image: Visual Studio 2019
environment:
matrix:
- PlatformToolset: v142
platform:
- x64
- Win32
configuration:
- Release
- Debug
install:
- if "%platform%"=="x64" set platform_input=x64
- if "%platform%"=="Win32" set platform_input=Win32
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%"
- cd NppJSONViewer
- msbuild NppJSONViewer.sln /m /p:configuration="%configuration%" /p:platform="%platform_input%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: NppJSONViewer\x64\Release\NPPJSONViewer.dll
name: x64
- path: NppJSONViewer\Win32\Release\NPPJSONViewer.dll
name: Win32