- Timestamp:
- 2011-06-16 22:23:15 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/23/build_games.py
r1914 r2075 22 22 dirs.remove('Windows Phone') 23 23 24 solutions = glob(join(root, '*.sln'))25 if solutions:26 return_code = call('msbuild /p:Configuration=Release /t:Build ' + solutions[0], shell=True)24 projects = glob(join(root, '*.csproj')) 25 if projects: 26 return_code = call('msbuild /p:Configuration=Release /t:Build \"' + projects[0] + '\"', shell=True) 27 27 if return_code != 0: 28 projects_that_did_not_build.append( solutions[0])28 projects_that_did_not_build.append(projects[0]) 29 29 30 30 print ''
Note: See TracChangeset
for help on using the changeset viewer.