Browse Source

Remove LGPL header from MyNamespaceSupportForCSharp.cs (as that file is copied into projects converted from VB to C#)

pull/12/head
Daniel Grunwald 15 years ago
parent
commit
8804473341
  1. 14
      doc/ChangeLog.template.html
  2. 5
      src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs
  3. 2
      src/Tools/CheckFileHeaders/Main.cs

14
doc/ChangeLog.template.html

@ -6,10 +6,20 @@ @@ -6,10 +6,20 @@
<p>
SharpDevelop $INSERTVERSION$ ($INSERTDATE$)
<ul>
<li>Update NUnit to version 2.5.8</li>
<li>Update to Boo 0.9.4 (pre-release build) for .NET 4</li>
<li>Bug fixes</li>
</ul>
</p>
<p>
SharpDevelop 4.0 Beta 4 [4.0.0.6842] (10/26/2010)
<ul>
<li>Bug fixes</li>
<li>SharpDevelop Reports: Grouping support in table layouts, automatic page break after group + more</li>
<li>Improvements to IronPython code completion</li>
<li>Added back Chinese and Russian translations</li>
<li>Update to Boo 0.9.4 (pre-release build) for .NET 4</li>
<li>Update NUnit to version 2.5.8</li>
<li>Update to IronPython 2.6.2</li>
</ul>
</p>

5
src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs

@ -1,7 +1,4 @@ @@ -1,7 +1,4 @@
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
#if WindowsApplication

2
src/Tools/CheckFileHeaders/Main.cs

@ -67,6 +67,8 @@ namespace CheckFileHeaders @@ -67,6 +67,8 @@ namespace CheckFileHeaders
continue;
if (subdir.EndsWith("Debugger.Core\\Mono.Cecil"))
continue;
if (subdir.EndsWith("CSharpBinding\\Project\\Resources"))
continue;
if (Path.GetFullPath(subdir).EndsWith("src\\Tools"))
continue;
count += Run(subdir);

Loading…
Cancel
Save