From ba59bc927f98536f3546fbd8af399ef15acf4c5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Fri, 7 Sep 2018 13:48:27 +0200 Subject: [PATCH] AppVeyor: Switch from VS2015 to VS2017 --- ChangeLog.md | 1 + appveyor.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index ae9f1cda3..23d2af364 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -18,6 +18,7 @@ Miscellaneous: - Replaced typedefs keywords with modern using keywords - 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) +- ⚠ Appveyor nightlies are now compiled with VS2017 Nazara Engine: - VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned. diff --git a/appveyor.yml b/appveyor.yml index 8c53f2bd8..dcdf221ad 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,11 +17,11 @@ skip_commits: - NazaraModuleTemplate/* os: - - Visual Studio 2015 + - Visual Studio 2017 environment: matrix: - - TOOLSET: vs2015 + - TOOLSET: vs2017 install: - cd build && "./premake5.exe" %TOOLSET% && cd ..