Update VSTool that is used to set configuration in MSVC solution file for MSVC 2013 (v12.x)

master
callum_linden 2014-12-12 09:30:33 -08:00
parent b66389c02e
commit 97eb74adc2
2 changed files with 8 additions and 0 deletions

Binary file not shown.

View File

@ -555,6 +555,10 @@ namespace VSTool
version = "VC100";
break;
case "12.00":
version = "VC120";
break;
default:
throw new ApplicationException("Unknown .sln version: " + format);
}
@ -595,6 +599,10 @@ namespace VSTool
progid = "VisualStudio.DTE.10.0";
break;
case "VC120":
progid = "VisualStudio.DTE.12.0";
break;
default:
throw new ApplicationException("Can't handle VS version: " + version);
}