| Index: createsolution.bat | 
| diff --git a/createsolution.bat b/createsolution.bat | 
| index be626767b939a07a7bcc170ff341762ef5222df5..d650c8e3c2b81d097180c128ba00f73039ebd45c 100644 | 
| --- a/createsolution.bat | 
| +++ b/createsolution.bat | 
| @@ -1,8 +1,11 @@ | 
| @echo off | 
|  | 
| pushd %~dp0 | 
| + | 
| +python ensure_dependencies.py | 
| + | 
| mkdir build\ia32\shell | 
| mkdir build\x64\shell | 
| -python msvs_gyp_wrapper.py --depth=build\ia32 -f msvs -I common.gypi --generator-output=build\ia32 -G msvs_version=2012 -Dtarget_arch=ia32 -Dhost_arch=ia32 libadblockplus.gyp | 
| -python msvs_gyp_wrapper.py --depth=build\x64 -f msvs -I common.gypi --generator-output=build\x64 -G msvs_version=2012 -Dtarget_arch=x64 -Dhost_arch=x64 libadblockplus.gyp | 
| +python msvs_gyp_wrapper.py --depth=build\ia32 -f msvs -G msvs_version=2015 -I libadblockplus.gypi --generator-output=build\ia32 -Dtarget_arch=ia32 -Dhost_arch=ia32 libadblockplus.gyp | 
| +python msvs_gyp_wrapper.py --depth=build\x64 -f msvs -G msvs_version=2015 -I libadblockplus.gypi --generator-output=build\x64 -Dtarget_arch=x64 -Dhost_arch=x64 libadblockplus.gyp | 
| popd | 
|  |