From 025fd776692bdb4362c39e1a774b14988e4d6833 Mon Sep 17 00:00:00 2001 From: Roberto De Ioris Date: Mon, 4 Sep 2017 09:03:52 +0200 Subject: [PATCH] updated MSBuild --- tools/release_win64.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/release_win64.py b/tools/release_win64.py index 229808696..5131040ea 100644 --- a/tools/release_win64.py +++ b/tools/release_win64.py @@ -21,7 +21,8 @@ def msbuild(project, python_version, variant): base_environ.update({'PYTHONHOME': python_version}) if variant == 'threaded_': base_environ.update({'UEP_ENABLE_THREADS': '1'}) - vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"' + #vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"' + vs = '"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/MSBuild/15.0/Bin/MSBuild.exe"' process = subprocess.Popen('{0} {1} /m /t:Rebuild /p:Configuration="Development Editor" /p:Platform=Win64'.format(vs, project), env=base_environ) while process.poll() is None: time.sleep(0.5)