Browse Source

Add missing file headers.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@579 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
3ad811d6da
  1. 9
      src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs
  2. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs
  3. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs
  4. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs
  5. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs
  6. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs
  7. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs
  8. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs
  9. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs
  10. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs
  11. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs
  12. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs
  13. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs
  14. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs
  15. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs
  16. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs
  17. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs
  18. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs
  19. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs
  20. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs
  21. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs
  22. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs
  23. 24
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs
  24. 25
      src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs
  25. 24
      src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs
  26. 8
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs
  27. 8
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs
  28. 2
      src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs
  29. 4
      src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs
  30. 2
      src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs
  31. 10
      src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs
  32. 6
      src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs
  33. 6
      src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs
  34. 12
      src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs
  35. 2
      src/Tools/CheckFileHeaders/Main.cs

9
src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs

@ -1,4 +1,11 @@
using System.Reflection; // <file>
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// <version>$Revision$</version>
// </file>
using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following // Information about this assembly is defined by the following

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections; using System.Collections;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections; using System.Collections;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NR = ICSharpCode.NRefactory.Parser.AST; using NR = ICSharpCode.NRefactory.Parser.AST;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using Boo.Lang.Compiler; using Boo.Lang.Compiler;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Parser;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections; using System.Collections;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NUnit.Framework; using NUnit.Framework;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.IO; using System.IO;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NUnit.Framework; using NUnit.Framework;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NUnit.Framework; using NUnit.Framework;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NUnit.Framework; using NUnit.Framework;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using NUnit.Framework; using NUnit.Framework;

24
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.IO; using System.IO;

25
src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
@ -43,4 +31,3 @@ using System.Runtime.CompilerServices;
// numbers with the '*' character (the default): // numbers with the '*' character (the default):
[assembly: AssemblyVersion("2.0.0.1")] [assembly: AssemblyVersion("2.0.0.1")]

24
src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs

@ -1,21 +1,9 @@
#region license // <file>
// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// All rights reserved. // <license see="prj:///doc/license.txt">GNU General Public License</license>
// // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// NRefactoryToBoo is free software; you can redistribute it and/or modify // <version>$Revision$</version>
// it under the terms of the GNU General Public License as published by // </file>
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NRefactoryToBoo is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NRefactoryToBoo; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

8
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs

@ -1,3 +1,10 @@
// <file>
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision$</version>
// </file>
namespace DebuggerInterop.MetaData namespace DebuggerInterop.MetaData
{ {
using System; using System;
@ -10,4 +17,3 @@ namespace DebuggerInterop.MetaData
public uint ulOffset; public uint ulOffset;
} }
} }

8
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs

@ -1,3 +1,10 @@
// <file>
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision$</version>
// </file>
namespace DebuggerInterop.MetaData namespace DebuggerInterop.MetaData
{ {
using System; using System;
@ -133,4 +140,3 @@ namespace DebuggerInterop.MetaData
void IsGlobal([In] uint pd, out int pbGlobal); void IsGlobal([In] uint pd, out int pbGlobal);
} }
} }

2
src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs

@ -30,7 +30,7 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision // You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default): // numbers with the '*' character (the default):
[assembly: AssemblyVersion("1.1.0.2094")] [assembly: AssemblyVersion("2.0.0.1")]
// The following attributes specify the key for the sign of your assembly. See the // The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing. // .NET Framework documentation for more information about signing.

4
src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs

@ -1,4 +1,4 @@
// <file> // <file>
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright> // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt">GNU General Public License</license> // <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/> // <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
@ -30,7 +30,7 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision // You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default): // numbers with the '*' character (the default):
[assembly: AssemblyVersion("1.1.0.2094")] [assembly: AssemblyVersion("2.0.0.1")]
// The following attributes specify the key for the sign of your assembly. See the // The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing. // .NET Framework documentation for more information about signing.

2
src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs

@ -30,7 +30,7 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision // You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default): // numbers with the '*' character (the default):
[assembly: AssemblyVersion("1.1.0.2094")] [assembly: AssemblyVersion("2.0.0.1")]
// The following attributes specify the key for the sign of your assembly. See the // The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing. // .NET Framework documentation for more information about signing.

10
src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs

@ -1,4 +1,11 @@
using System.Reflection; // <file>
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="none" email=""/>
// <version>$Revision$</version>
// </file>
using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following // Information about this assembly is defined by the following
@ -24,4 +31,3 @@ using System.Runtime.CompilerServices;
// numbers with the '*' character (the default): // numbers with the '*' character (the default):
[assembly: AssemblyVersion("2.0.0.1")] [assembly: AssemblyVersion("2.0.0.1")]

6
src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs

@ -1,8 +1,8 @@
// <file> // <file>
// <copyright see="prj:///doc/copyright.txt"/> // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt"/> // <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="Ivo Kovacka" email="ivok@internet.sk"/> // <owner name="Ivo Kovacka" email="ivok@internet.sk"/>
// <version value="$version"/> // <version>$Revision$</version>
// </file> // </file>
using System; using System;

6
src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs

@ -1,8 +1,8 @@
// <file> // <file>
// <copyright see="prj:///doc/copyright.txt"/> // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
// <license see="prj:///doc/license.txt"/> // <license see="prj:///doc/license.txt">GNU General Public License</license>
// <owner name="Ivo Kovacka" email="ivok@internet.sk"/> // <owner name="Ivo Kovacka" email="ivok@internet.sk"/>
// <version value="$version"/> // <version>$Revision$</version>
// </file> // </file>
using System; using System;

12
src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs

@ -1,9 +1,9 @@
/* // <file>
* Created by SharpDevelop. // <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
* User: Daniel Grunwald // <license see="prj:///doc/license.txt">GNU General Public License</license>
* Date: 03.10.2005 // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
* Time: 11:57 // <version>$Revision$</version>
*/ // </file>
using System; using System;
using System.IO; using System.IO;

2
src/Tools/CheckFileHeaders/Main.cs

@ -193,6 +193,8 @@ namespace CheckFileHeaders
return "d_erchoff@hotmail.com"; return "d_erchoff@hotmail.com";
case "Georg Brandl": case "Georg Brandl":
return "g.brandl@gmx.net"; return "g.brandl@gmx.net";
case "Ivo Kovacka":
return "ivok@internet.sk";
case "none": case "none":
return ""; return "";
default: default:

Loading…
Cancel
Save