22 lines
555 B
YAML
22 lines
555 B
YAML
platform:
|
|
- x86
|
|
- x64
|
|
|
|
os: Visual Studio 2015
|
|
|
|
install:
|
|
- date /T & time /T
|
|
- ps: >-
|
|
If ($env:Platform -Match "x86") {
|
|
$env:MSBUILD_PLATFORM="x86"
|
|
} Else {
|
|
$env:MSBUILD_PLATFORM="x64"
|
|
}
|
|
- git submodule update --init --recursive
|
|
|
|
# BUGFIX: wdf directory was renamed to 00wdf, rename it back (see github.com/appveyor/ci/issues/414)
|
|
- ps: ren 'C:\Program Files (x86)\Windows Kits\10\include\00wdf' 'wdf'
|
|
|
|
build_script:
|
|
- msbuild virtualsmartcard\win32\BixVReader.sln /p:Configuration=Release;Platform=%MSBUILD_PLATFORM%
|