AppVeyor: Switch from VS2015 to VS2017

This commit is contained in:
Jérôme Leclercq 2018-09-07 13:48:27 +02:00
parent 02383b1c0b
commit ba59bc927f
2 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ Miscellaneous:
- Replaced typedefs keywords with modern using keywords - Replaced typedefs keywords with modern using keywords
- When supported, projects are now parts of a virtual "workspace group" according to their kind - When supported, projects are now parts of a virtual "workspace group" according to their kind
- Fixed .dll copy when building Nazara occuring on Linux when targeting Windows (MinGW) - Fixed .dll copy when building Nazara occuring on Linux when targeting Windows (MinGW)
- ⚠ Appveyor nightlies are now compiled with VS2017
Nazara Engine: Nazara Engine:
- VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned. - VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned.

View File

@ -17,11 +17,11 @@ skip_commits:
- NazaraModuleTemplate/* - NazaraModuleTemplate/*
os: os:
- Visual Studio 2015 - Visual Studio 2017
environment: environment:
matrix: matrix:
- TOOLSET: vs2015 - TOOLSET: vs2017
install: install:
- cd build && "./premake5.exe" %TOOLSET% && cd .. - cd build && "./premake5.exe" %TOOLSET% && cd ..