[Monodevelop-patches-list] r651 - in trunk/MonoDevelop/build/data/templates/file: . VBNet
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Jan 25 12:32:50 EST 2004
Author: benm
Date: 2004-01-25 12:32:50 -0500 (Sun, 25 Jan 2004)
New Revision: 651
Removed:
trunk/MonoDevelop/build/data/templates/file/EmptyXmlForm.xft
trunk/MonoDevelop/build/data/templates/file/EmptyXmlUserControl.xft
trunk/MonoDevelop/build/data/templates/file/VBNet/VBNETNewClassWizard.xft
trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetForm.xft
trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetUserControl.xft
Log:
more window removification
Deleted: trunk/MonoDevelop/build/data/templates/file/EmptyXmlForm.xft
===================================================================
--- trunk/MonoDevelop/build/data/templates/file/EmptyXmlForm.xft 2004-01-25 17:29:31 UTC (rev 650)
+++ trunk/MonoDevelop/build/data/templates/file/EmptyXmlForm.xft 2004-01-25 17:32:50 UTC (rev 651)
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<Template Originator="Mike Krueger" Language="XmlForm" Created="07/15/2002" LastModified="07/15/2002">
-
- <TemplateConfiguration>
- <Name>Xml Form</Name>
- <Icon>Icons.32x32.XMLFileIcon</Icon>
- <Category>Misc</Category>
- <LanguageName>XmlForm</LanguageName>
- <Description>Create an empty xml form</Description>
- </TemplateConfiguration>
-
- <TemplateFiles>
- <File DefaultExtension=".xfrm" DefaultName="EmptyXmlForm">
- <![CDATA[<Components version="1.0">
- <System.Windows.Forms.Form>
- <Name value="MyForm" />
- </System.Windows.Forms.Form>
-</Components>]]>
- </File>
- </TemplateFiles>
-
- <FileOptions/>
-
-</Template>
Deleted: trunk/MonoDevelop/build/data/templates/file/EmptyXmlUserControl.xft
===================================================================
--- trunk/MonoDevelop/build/data/templates/file/EmptyXmlUserControl.xft 2004-01-25 17:29:31 UTC (rev 650)
+++ trunk/MonoDevelop/build/data/templates/file/EmptyXmlUserControl.xft 2004-01-25 17:32:50 UTC (rev 651)
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<Template Originator="Mike Krueger" Language="XmlForm" Created="07/15/2002" LastModified="07/15/2002">
-
- <TemplateConfiguration>
- <Name>Xml UserControl</Name>
- <Icon>Icons.32x32.XMLFileIcon</Icon>
- <Category>Misc</Category>
- <LanguageName>XmlForm</LanguageName>
- <Description>Create an empty xml user control</Description>
- </TemplateConfiguration>
-
- <TemplateFiles>
- <File DefaultExtension=".xfrm" DefaultName="EmptyXmlUserControl">
- <![CDATA[<Components version="1.0">
- <System.Windows.Forms.UserControl>
- <Name value="MyUserControl" />
- </System.Windows.Forms.UserControl>
-</Components>]]>
- </File>
- </TemplateFiles>
-
- <FileOptions/>
-
-</Template>
Deleted: trunk/MonoDevelop/build/data/templates/file/VBNet/VBNETNewClassWizard.xft
===================================================================
--- trunk/MonoDevelop/build/data/templates/file/VBNet/VBNETNewClassWizard.xft 2004-01-25 17:29:31 UTC (rev 650)
+++ trunk/MonoDevelop/build/data/templates/file/VBNet/VBNETNewClassWizard.xft 2004-01-25 17:32:50 UTC (rev 651)
@@ -1,17 +0,0 @@
-<?xml version="1.0"?>
-<Template Originator="Don Kackman" Language="C#" Created="2/09/2002" LastModified="2/09/2002">
-
- <TemplateConfiguration>
- <Name>${res:Templates.File.VB.NewClassWizard.Name}</Name>
- <Icon>VB.File.NewClass</Icon>
- <Category>VB</Category>
- <LanguageName>VBNET</LanguageName>
- <Description>${res:Templates.File.VB.NewClassWizard.Description}</Description>
- <Wizard path = "/SharpDevelop/Templates/File/NewClassWizard"/>
- </TemplateConfiguration>
-
- <TemplateFiles/>
-
- <FileOptions/>
-
-</Template>
Deleted: trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetForm.xft
===================================================================
--- trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetForm.xft 2004-01-25 17:29:31 UTC (rev 650)
+++ trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetForm.xft 2004-01-25 17:32:50 UTC (rev 651)
@@ -1,49 +0,0 @@
-<?xml version="1.0"?>
-<Template Originator="Shinsaku Nakagawa"
- Language="VBNET" Created="10/20/2002" LastModified="9/21/2003">
-
- <TemplateConfiguration>
- <Name>VB.NET Form</Name>
- <Icon>VB.File.Form</Icon>
- <Category>VB</Category>
- <LanguageName>VBNET</LanguageName>
- <Description>creates a designable VB.NET form</Description>
- </TemplateConfiguration>
-
- <TemplateFiles>
- <File DefaultExtension=".vb" DefaultName="VBNetForm">
-<![CDATA[REM created on ${Date} at ${Time}
-Imports System
-Imports System.Windows.Forms
-
-Namespace MyForm
-
- Public Class CreatedForm
- Inherits System.Windows.Forms.Form
-
- Public Sub New
- MyBase.New()
-
- InitializeComponent()
- End Sub
-
- // THIS METHOD IS MAINTAINED BY THE FORM DESIGNER
- // DO NOT EDIT IT MANUALLY! YOUR CHANGES ARE LIKELY TO BE LOST!
- Sub InitializeComponent
- //
- // CreatedForm
- //
- Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
- Me.ClientSize = New System.Drawing.Size(292, 266)
- Me.Name = "CreatedForm"
- End Sub
-
- End Class
-
-End Namespace
-]]></File>
- </TemplateFiles>
-
- <FileOptions/>
-
-</Template>
Deleted: trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetUserControl.xft
===================================================================
--- trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetUserControl.xft 2004-01-25 17:29:31 UTC (rev 650)
+++ trunk/MonoDevelop/build/data/templates/file/VBNet/WindowsVBNetUserControl.xft 2004-01-25 17:32:50 UTC (rev 651)
@@ -1,40 +0,0 @@
-<?xml version="1.0"?>
-<Template Originator="Shinsaku Nakagawa"
- Language="VBNET" Created="10/20/2002" LastModified="10/20/2002">
-
- <TemplateConfiguration>
- <Name>VB.NET UserControl</Name>
- <Icon>VB.File.Form</Icon>
- <Category>VB</Category>
- <LanguageName>VBNET</LanguageName>
- <Description>creates a designable VB.NET user control</Description>
- </TemplateConfiguration>
-
- <TemplateFiles>
- <File DefaultExtension=".vb" DefaultName="VBNetUserControl">
-<![CDATA[REM created on ${Date} at ${Time}
-Imports System
-Imports System.Windows.Forms
-Module MyUserControl
-
- Public Class CreatedUserControl
- Inherits System.Windows.Forms.UserControl
-
- Public Sub New
- MyBase.New()
- Me.InitializeComponents()
- End Sub
-
- Public Sub InitializeComponents
-
- End Sub
-
- End Class
-
-End Module
-]]></File>
- </TemplateFiles>
-
- <FileOptions/>
-
-</Template>
More information about the Monodevelop-patches-list
mailing list