[commit] r1313 - in trunk/SDK/DotNet/CSharpComponentWizard/Templates: CSharpAddon CSharpInterpreter

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Mon May 16 14:51:23 CDT 2011


Author: ksmyth
Date: Mon May 16 14:51:21 2011
New Revision: 1313

Log:
Dont generate into GME.CSharp, because the GME.CSharp.MyInt namespace makes the MyInt namespace harder to reach

Modified:
   trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpAddon/MyAddon.cs
   trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpInterpreter/MyInterpreter.cs

Modified: trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpAddon/MyAddon.cs
==============================================================================
--- trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpAddon/MyAddon.cs	Mon May 16 14:47:21 2011	(r1312)
+++ trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpAddon/MyAddon.cs	Mon May 16 14:51:21 2011	(r1313)
@@ -1,6 +1,5 @@
 using System;
 using System.Collections.Generic;
-using System.Windows.Forms;
 using System.Text;
 using System.Runtime.InteropServices;
 using System.IO;
@@ -9,7 +8,7 @@
 using GmeLib;
 using MGACoreLib;
 
-namespace GME.CSharp.MyAddon
+namespace MyAddon
 {
     [Guid(ComponentConfig.guid),
     ProgId(ComponentConfig.progID),

Modified: trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpInterpreter/MyInterpreter.cs
==============================================================================
--- trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpInterpreter/MyInterpreter.cs	Mon May 16 14:47:21 2011	(r1312)
+++ trunk/SDK/DotNet/CSharpComponentWizard/Templates/CSharpInterpreter/MyInterpreter.cs	Mon May 16 14:51:21 2011	(r1313)
@@ -3,13 +3,12 @@
 using System.IO;
 using System.Runtime.InteropServices;
 using System.Text;
-using System.Windows.Forms;
 using MGACoreLib;
 using GME.CSharp;
 using GmeLib;
 using MGALib;
 
-namespace GME.CSharp.MyInterpreter
+namespace MyInterpreter
 {
     /// <summary>
     /// This class implements the necessary COM interfaces for a GME interpreter component.


More information about the gme-commit mailing list