From 8804473341de5ec43357b75078c8d68ab2c9a2ee Mon Sep 17 00:00:00 2001
From: Daniel Grunwald
Date: Wed, 27 Oct 2010 17:40:01 +0200
Subject: [PATCH] Remove LGPL header from MyNamespaceSupportForCSharp.cs (as
that file is copied into projects converted from VB to C#)
---
doc/ChangeLog.template.html | 14 ++++++++++++--
.../Resources/MyNamespaceSupportForCSharp.cs | 5 +----
src/Tools/CheckFileHeaders/Main.cs | 2 ++
3 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/doc/ChangeLog.template.html b/doc/ChangeLog.template.html
index ce78178d1f..8321a86ef9 100644
--- a/doc/ChangeLog.template.html
+++ b/doc/ChangeLog.template.html
@@ -6,10 +6,20 @@
SharpDevelop $INSERTVERSION$ ($INSERTDATE$)
- - Update NUnit to version 2.5.8
- - Update to Boo 0.9.4 (pre-release build) for .NET 4
+ - Bug fixes
+
+
+
+
+ SharpDevelop 4.0 Beta 4 [4.0.0.6842] (10/26/2010)
+
+ - Bug fixes
+ - SharpDevelop Reports: Grouping support in table layouts, automatic page break after group + more
- Improvements to IronPython code completion
- Added back Chinese and Russian translations
+ - Update to Boo 0.9.4 (pre-release build) for .NET 4
+ - Update NUnit to version 2.5.8
+ - Update to IronPython 2.6.2
diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs
index 161a23af38..4724007db8 100644
--- a/src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs
+++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Resources/MyNamespaceSupportForCSharp.cs
@@ -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
diff --git a/src/Tools/CheckFileHeaders/Main.cs b/src/Tools/CheckFileHeaders/Main.cs
index cefe2d2e78..3c9958f1d6 100644
--- a/src/Tools/CheckFileHeaders/Main.cs
+++ b/src/Tools/CheckFileHeaders/Main.cs
@@ -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);