Files
vsmartcard/appveyor.yml
Nick Russler 493d48c5aa Update appveyor
Build the driver, the devmsi library and the msi with Visual Studio 2015.
2016-11-12 00:16:36 +01:00

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%