Skip to content

Commit

Permalink
Update msvs_tools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leahadler committed Aug 9, 2023
1 parent 784703e commit 5cc7898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msvs_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from build_tools import BuildTools

NMAKE_ARGUMENTS = "/S /C /NOLOGO /F"
SUPPORTED = {8.0: 2005, 9.0: 2008, 10.0: 2010, 11.0: 2012, 12.0: 2013, 14.0: 2015, 15.0: 2017, 16.0: 2019}
SOLUTION_FORMATS = {8.0: 9.0, 9.0: 10.0, 10.0: 11.0, 11.0: 11.0, 12.0: 12.0, 14.0: 12.0, 15.0: 12.0, 16.0: 12.0}
SUPPORTED = {8.0: 2005, 9.0: 2008, 10.0: 2010, 11.0: 2012, 12.0: 2013, 14.0: 2015, 15.0: 2017, 16.0: 2019, 17.0: 2022}
SOLUTION_FORMATS = {8.0: 9.0, 9.0: 10.0, 10.0: 11.0, 11.0: 11.0, 12.0: 12.0, 14.0: 12.0, 15.0: 12.0, 16.0: 12.0, 17.0: 12.0}


class MsvsTools(BuildTools):
Expand Down

0 comments on commit 5cc7898

Please sign in to comment.