Browse Source

Made the templates consistent by removing the empty line after the standard header. Some templates had the empty line but some did not.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@3173 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 17 years ago
parent
commit
4ad6fbf94f
  1. 1
      data/templates/file/CSharp/CSharp.EmptyClass.xft
  2. 1
      data/templates/file/CSharp/CSharp.Forms.Form.xft
  3. 1
      data/templates/file/CSharp/CSharp.Forms.UserControl.xft
  4. 1
      data/templates/file/CSharp/CSharp.Interface.xft
  5. 1
      data/templates/file/CSharp/CSharp.Patterns.Singleton.xft
  6. 1
      data/templates/file/CSharp/CSharp.Struct.xft
  7. 1
      data/templates/file/CSharp/CSharp.Web.WebControl.xft
  8. 1
      data/templates/file/CSharp/CSharp.Web.WebForm.xft
  9. 1
      data/templates/file/CSharp/CSharp.Web.WebService.xft
  10. 1
      data/templates/file/CSharp/ConfigurationElement.cs
  11. 1
      data/templates/file/CSharp/ConfigurationElementCollection.cs
  12. 1
      data/templates/file/CSharp/ConfigurationSection.cs
  13. 1
      data/templates/file/CSharp/RecentFileElement.cs
  14. 1
      data/templates/file/CSharp/RecentFilesCollection.cs
  15. 1
      data/templates/file/SharpDevelop/ExamplePad.xft
  16. 1
      data/templates/file/VBNet/VBNet.EmptyClass.xft
  17. 1
      data/templates/file/VBNet/VBNet.Forms.Form.xft
  18. 1
      data/templates/file/VBNet/VBNet.Interface.xft
  19. 1
      data/templates/file/VBNet/VBNet.Module.xft
  20. 1
      data/templates/file/VBNet/VBNet.MyExtensionClass.xft
  21. 1
      data/templates/file/VBNet/VBNet.UnitTest.xft
  22. 1
      data/templates/project/CSharp/CompactFormsProject.xpt
  23. 3
      data/templates/project/CSharp/Direct3DProject.xpt
  24. 2
      data/templates/project/CSharp/FormsProject.xpt
  25. 3
      data/templates/project/CSharp/Service.xpt
  26. 1
      data/templates/project/CSharp/SharedAddin.xpt
  27. 1
      data/templates/project/CSharp/SharpDevelopCustomTool.xpt
  28. 1
      data/templates/project/CSharp/SharpDevelopMacro.xpt
  29. 1
      data/templates/project/CSharp/WebpageProject.xpt
  30. 1
      data/templates/project/VBNet/Direct3DProject.xpt
  31. 1
      data/templates/project/VBNet/FormsProject.xpt
  32. 1
      data/templates/project/VBNet/Library.xpt
  33. 2
      data/templates/project/VBNet/Service.xpt
  34. 1
      data/templates/project/VBNet/SharedAddin.xpt
  35. 2
      data/templates/project/VBNet/SharpDevelopAddin.xpt
  36. 1
      data/templates/project/VBNet/SharpDevelopMacro.xpt

1
data/templates/file/CSharp/CSharp.EmptyClass.xft

@ -33,7 +33,6 @@ @@ -33,7 +33,6 @@
<Files>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
namespace ${StandardNamespace}

1
data/templates/file/CSharp/CSharp.Forms.Form.xft

@ -70,7 +70,6 @@ namespace ${StandardNamespace} @@ -70,7 +70,6 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Drawing;
using System.Windows.Forms;

1
data/templates/file/CSharp/CSharp.Forms.UserControl.xft

@ -69,7 +69,6 @@ namespace ${StandardNamespace} @@ -69,7 +69,6 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.ComponentModel;
using System.Drawing;

1
data/templates/file/CSharp/CSharp.Interface.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
namespace ${StandardNamespace}

1
data/templates/file/CSharp/CSharp.Patterns.Singleton.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
namespace ${StandardNamespace}

1
data/templates/file/CSharp/CSharp.Struct.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
namespace ${StandardNamespace}

1
data/templates/file/CSharp/CSharp.Web.WebControl.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${Path}/${FileNameWithoutExtension}.cs" DependentUpon="${FileName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Web;
using System.Web.SessionState;

1
data/templates/file/CSharp/CSharp.Web.WebForm.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${Path}/${FileName}.cs" DependentUpon="${FileName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections;
using System.ComponentModel;

1
data/templates/file/CSharp/CSharp.Web.WebService.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${Path}/${FileNameWithoutExtension}.cs" DependentUpon="${FileName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Web.Services;

1
data/templates/file/CSharp/ConfigurationElement.cs

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
${StandardHeader.C#}
using System;
using System.Configuration;

1
data/templates/file/CSharp/ConfigurationElementCollection.cs

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
${StandardHeader.C#}
using System;
using System.Configuration;

1
data/templates/file/CSharp/ConfigurationSection.cs

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
${StandardHeader.C#}
using System;
using System.Configuration;

1
data/templates/file/CSharp/RecentFileElement.cs

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
${StandardHeader.C#}
using System;
using System.Configuration;

1
data/templates/file/CSharp/RecentFilesCollection.cs

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
${StandardHeader.C#}
using System;
using System.Configuration;
using System.IO;

1
data/templates/file/SharpDevelop/ExamplePad.xft

@ -21,7 +21,6 @@ @@ -21,7 +21,6 @@
-->
<Files>
<File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Windows.Forms;
using ICSharpCode.Core;

1
data/templates/file/VBNet/VBNet.EmptyClass.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Public Class ${ClassName}
End Class

1
data/templates/file/VBNet/VBNet.Forms.Form.xft

@ -65,7 +65,6 @@ Partial Class ${ClassName} @@ -65,7 +65,6 @@ Partial Class ${ClassName}
End Class
]]></File>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Public Partial Class ${ClassName}
Public Sub New()
' The Me.InitializeComponent call is required for Windows Forms designer support.

1
data/templates/file/VBNet/VBNet.Interface.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Public Interface ${ClassName}
End Interface

1
data/templates/file/VBNet/VBNet.Module.xft

@ -21,7 +21,6 @@ @@ -21,7 +21,6 @@
-->
<Files>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Public Module ${ClassName}
End Module

1
data/templates/file/VBNet/VBNet.MyExtensionClass.xft

@ -22,7 +22,6 @@ @@ -22,7 +22,6 @@
-->
<Files>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Namespace My
<HideModuleName> _
Friend Class My${ClassName}Class

1
data/templates/file/VBNet/VBNet.UnitTest.xft

@ -44,7 +44,6 @@ @@ -44,7 +44,6 @@
<Files>
<File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
Imports NUnit.Framework
Imports NUnit.Framework.SyntaxHelpers

1
data/templates/project/CSharp/CompactFormsProject.xpt

@ -33,7 +33,6 @@ @@ -33,7 +33,6 @@
<Files>
<File name="MainForm.cs" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.Drawing;

3
data/templates/project/CSharp/Direct3DProject.xpt

@ -36,7 +36,8 @@ @@ -36,7 +36,8 @@
</PropertyGroup>
<Files>
<File name="MainClass.cs"><![CDATA[using System;
<File name="MainClass.cs"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;

2
data/templates/project/CSharp/FormsProject.xpt

@ -38,7 +38,6 @@ @@ -38,7 +38,6 @@
<Files>
<File name="Program.cs" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Windows.Forms;
@ -64,7 +63,6 @@ namespace ${StandardNamespace} @@ -64,7 +63,6 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="MainForm.cs" language="C#"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.Drawing;

3
data/templates/project/CSharp/Service.xpt

@ -39,7 +39,6 @@ @@ -39,7 +39,6 @@
<Files>
<File name="${ProjectName}.cs"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.ComponentModel;
@ -92,7 +91,6 @@ namespace ${StandardNamespace} @@ -92,7 +91,6 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="ProjectInstaller.cs"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.ComponentModel;
@ -121,7 +119,6 @@ namespace ${StandardNamespace} @@ -121,7 +119,6 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="Program.cs"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections.Generic;
using System.ServiceProcess;

1
data/templates/project/CSharp/SharedAddin.xpt

@ -38,7 +38,6 @@ @@ -38,7 +38,6 @@
<Files>
<File name="Connect.cs"><![CDATA[${StandardHeader.C#}
namespace ${StandardNamespace}
{
using System;

1
data/templates/project/CSharp/SharpDevelopCustomTool.xpt

@ -67,7 +67,6 @@ @@ -67,7 +67,6 @@
]]></File>
<File name="${ProjectName}Tool.cs">
<![CDATA[${StandardHeader.C#}
using System;
using System.IO;
using System.CodeDom;

1
data/templates/project/CSharp/SharpDevelopMacro.xpt

@ -55,7 +55,6 @@ @@ -55,7 +55,6 @@
]]></File>
<File name="Src/Command.cs">
<![CDATA[${StandardHeader.C#}
using System;
using System.Text;
using ICSharpCode.Core;

1
data/templates/project/CSharp/WebpageProject.xpt

@ -36,7 +36,6 @@ @@ -36,7 +36,6 @@
<Files>
<!--*************************************************************************-->
<File name=".\Default.aspx.cs" DependentUpon="Default.aspx"><![CDATA[${StandardHeader.C#}
using System;
using System.Collections;
using System.ComponentModel;

1
data/templates/project/VBNet/Direct3DProject.xpt

@ -47,7 +47,6 @@ @@ -47,7 +47,6 @@
<Files>
<File name="MainClass.vb"><![CDATA[${StandardHeader.VBNET}
Imports System.ComponentModel
' This is the main class of my Direct3D application

1
data/templates/project/VBNet/FormsProject.xpt

@ -94,7 +94,6 @@ End Class @@ -94,7 +94,6 @@ End Class
]]></File>
<File name="Program.vb">
<![CDATA[${StandardHeader.VBNET}
Imports Microsoft.VisualBasic.ApplicationServices
Namespace My

1
data/templates/project/VBNet/Library.xpt

@ -37,7 +37,6 @@ @@ -37,7 +37,6 @@
<Files>
<File name="NewClass.vb"><![CDATA[${StandardHeader.VBNET}
Public Class NewClass
End Class

2
data/templates/project/VBNet/Service.xpt

@ -41,7 +41,6 @@ @@ -41,7 +41,6 @@
<Files>
<File name="${ProjectName}.vb"><![CDATA[${StandardHeader.VBNET}
Imports System.ServiceProcess
Public Class ${ProjectName}
@ -71,7 +70,6 @@ End Class @@ -71,7 +70,6 @@ End Class
]]></File>
<File name="ProjectInstaller.vb"><![CDATA[${StandardHeader.VBNET}
Imports System.ComponentModel
Imports System.Configuration.Install
Imports System.ServiceProcess

1
data/templates/project/VBNet/SharedAddin.xpt

@ -37,7 +37,6 @@ @@ -37,7 +37,6 @@
<Files>
<File name="Connect.vb"><![CDATA[${StandardHeader.VBNET}
Imports System
Imports System.Runtime.InteropServices
Imports Extensibility

2
data/templates/project/VBNet/SharpDevelopAddin.xpt

@ -82,7 +82,6 @@ @@ -82,7 +82,6 @@
]]></File>
<File name="Src/MyUserControl.vb">
<![CDATA[${StandardHeader.VBNET}
Imports System
Imports System.Windows.Forms
Imports ICSharpCode.SharpDevelop.Gui.XmlForms
@ -102,7 +101,6 @@ End Class @@ -102,7 +101,6 @@ End Class
</File>
<File name="Src/TestPad.vb">
<![CDATA[${StandardHeader.VBNET}
Imports ICSharpCode.Core
Imports ICSharpCode.SharpDevelop.Gui

1
data/templates/project/VBNet/SharpDevelopMacro.xpt

@ -54,7 +54,6 @@ @@ -54,7 +54,6 @@
]]></File>
<File name="Src/Command.vb">
<![CDATA[${StandardHeader.VBNET}
Imports ICSharpCode.Core
Imports ICSharpCode.SharpDevelop
Imports ICSharpCode.SharpDevelop.Gui

Loading…
Cancel
Save