From 36011da952ba94bb2987febc8d502d859a3f1ad0 Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Sun, 14 Aug 2011 20:22:55 +0000 Subject: [PATCH] Big speed up change when running install.bat --- Setup2/Cosmos.iss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Setup2/Cosmos.iss b/Setup2/Cosmos.iss index 04e8295e3..eb90ff385 100644 --- a/Setup2/Cosmos.iss +++ b/Setup2/Cosmos.iss @@ -311,5 +311,10 @@ Root: HKCR; SubKey: Cosmos.ProjectFile\shell\open\command; ValueType: string; Va [Run] ; Forces VS to merge the resource metadata that describes menus, toolbars, and command groups from all VSPackages available. -Filename: {code:VSNET2010_PATH}\devenv.exe; Parameters: /setup; Flags: waituntilterminated +#if BuildConfiguration == "Devkit" + ; /setup without nosetupvstemplates takesa LONG time... so we dont run it every time.. for DevKit users, they will need to run it one time first as user kit + Filename: {code:VSNET2010_PATH}\devenv.exe; Parameters: /setup /nosetupvstemplates; Flags: waituntilterminated +#else + Filename: {code:VSNET2010_PATH}\devenv.exe; Parameters: /setup; Flags: waituntilterminated +#endif