summaryrefslogtreecommitdiff
path: root/indra/tools
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-12-12 09:30:33 -0800
committercallum_linden <none@none>2014-12-12 09:30:33 -0800
commit97eb74adc297507695158afbbbdb509b8c91c1af (patch)
tree1021673cdde0c5f698710895b9d7bc0a27154c7b /indra/tools
parentb66389c02e0fedb8e507668e53dd43339c1e3326 (diff)
Update VSTool that is used to set configuration in MSVC solution file for MSVC 2013 (v12.x)
Diffstat (limited to 'indra/tools')
-rwxr-xr-xindra/tools/vstool/VSTool.exebin24576 -> 24576 bytes
-rwxr-xr-xindra/tools/vstool/main.cs8
2 files changed, 8 insertions, 0 deletions
diff --git a/indra/tools/vstool/VSTool.exe b/indra/tools/vstool/VSTool.exe
index 8be428614e..854290b90a 100755
--- a/indra/tools/vstool/VSTool.exe
+++ b/indra/tools/vstool/VSTool.exe
Binary files differ
diff --git a/indra/tools/vstool/main.cs b/indra/tools/vstool/main.cs
index cc73261e30..ef2e582b90 100755
--- a/indra/tools/vstool/main.cs
+++ b/indra/tools/vstool/main.cs
@@ -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);
}