[commit] r2362 - trunk/SDK/BON/Wizard/Scripts/1033
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Wed Sep 25 10:38:35 CDT 2013
Author: tihamer
Date: Wed Sep 25 10:38:35 2013
New Revision: 2362
Log:
Modified:
trunk/SDK/BON/Wizard/Scripts/1033/default.js
Modified: trunk/SDK/BON/Wizard/Scripts/1033/default.js
==============================================================================
--- trunk/SDK/BON/Wizard/Scripts/1033/default.js Tue Sep 24 15:49:40 2013 (r2361)
+++ trunk/SDK/BON/Wizard/Scripts/1033/default.js Wed Sep 25 10:38:35 2013 (r2362)
@@ -4,7 +4,10 @@
{
if (dte.Version == '10.0') {
OnFinish100(selProj, selObj);
- }
+ }
+ else if (dte.Version == '11.0') {
+ OnFinish100(selProj, selObj);
+ }
else {
OnFinish90(selProj, selObj);
}
@@ -400,13 +403,19 @@
strTpl = strTextStream.ReadLine();
if (strTpl != '')
{
+
+
+
var strFile = '$(GME_ROOT)\\SDK\\BON\\Common\\' + strTpl;
vcfile = proj.Object.AddFile(strFile);
- if (dte.Version != '10.0') {
+ if (dte.Version != '10.0' ) {
+
// This is needed to remove the '.' from the beginning of the relative path (added by default)
- vcfile.RelativePath = '$(GME_ROOT)\\SDK\\BON\\Common\\' + strTpl;
+ vcfile = '$(GME_ROOT)\\SDK\\BON\\Common\\' + strTpl;
+
}
+
}
}
strTextStream.Close();
More information about the gme-commit
mailing list