Update VSTool that is used to set configuration in MSVC solution file for MSVC 2013 (v12.x)
parent
b66389c02e
commit
97eb74adc2
Binary file not shown.
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue