Skip to content

Commit 025fd77

Browse files
author
Roberto De Ioris
committed
updated MSBuild
1 parent 337e4c6 commit 025fd77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/release_win64.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ def msbuild(project, python_version, variant):
2121
base_environ.update({'PYTHONHOME': python_version})
2222
if variant == 'threaded_':
2323
base_environ.update({'UEP_ENABLE_THREADS': '1'})
24-
vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"'
24+
#vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"'
25+
vs = '"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/MSBuild/15.0/Bin/MSBuild.exe"'
2526
process = subprocess.Popen('{0} {1} /m /t:Rebuild /p:Configuration="Development Editor" /p:Platform=Win64'.format(vs, project), env=base_environ)
2627
while process.poll() is None:
2728
time.sleep(0.5)

0 commit comments

Comments
 (0)