diff --git a/samples/SharpPad/AssemblyInfo.cs b/samples/SharpPad/AssemblyInfo.cs index 906720da13..59ff1e3bfc 100644 --- a/samples/SharpPad/AssemblyInfo.cs +++ b/samples/SharpPad/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Configuration/AssemblyInfo.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Configuration/AssemblyInfo.cs index d9515c1291..1e9105aa9b 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooAmbience.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooAmbience.cs index 2064a64ae6..577b49dcc2 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooAmbience.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooAmbience.cs @@ -8,7 +8,7 @@ using System; using System.Collections.Generic; using System.Text; -using ICSharpCode.Core; + using ICSharpCode.SharpDevelop.Dom; namespace Grunwald.BooBinding diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooCodeGenerator.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooCodeGenerator.cs index 1b836c1191..8ed2e1afb3 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooCodeGenerator.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooCodeGenerator.cs @@ -16,7 +16,6 @@ using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.Refactoring; -using ICSharpCode.SharpDevelop.Refactoring; using NRefactoryToBooConverter; namespace Grunwald.BooBinding diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooProject.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooProject.cs index 277f45dc69..6339d472f8 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooProject.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BooProject.cs @@ -9,7 +9,6 @@ using System; using System.ComponentModel; using System.IO; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BuildOptions.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BuildOptions.cs index 802fe08455..395d8696d3 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BuildOptions.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/BuildOptions.cs @@ -6,18 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using StringPair = System.Collections.Generic.KeyValuePair; - namespace Grunwald.BooBinding { public sealed class BuildOptions : AbstractBuildOptions diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/BooParser.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/BooParser.cs index e3fa42acba..506957da4d 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/BooParser.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/BooParser.cs @@ -9,14 +9,14 @@ using System; using System.Collections.Generic; using System.IO; using System.Text; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Dom; + using Boo.Lang.Compiler; using Boo.Lang.Compiler.IO; using Boo.Lang.Compiler.Pipelines; using Boo.Lang.Compiler.Steps; using Boo.Lang.Parser; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; namespace Grunwald.BooBinding.CodeCompletion { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/CompletionBinding.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/CompletionBinding.cs index dda759faba..9c3090a23d 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/CompletionBinding.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/CompletionBinding.cs @@ -6,15 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Globalization; - -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Dom; namespace Grunwald.BooBinding.CodeCompletion { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ConvertVisitor.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ConvertVisitor.cs index 1145e61bbd..a7d1083555 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ConvertVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ConvertVisitor.cs @@ -7,12 +7,10 @@ using System; using System.Collections.Generic; +using Boo.Lang.Compiler.Steps; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using Boo.Lang.Compiler; using AST = Boo.Lang.Compiler.Ast; -using Boo.Lang.Compiler.IO; -using Boo.Lang.Compiler.Steps; namespace Grunwald.BooBinding.CodeCompletion { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ElementReturnType.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ElementReturnType.cs index aaecd45737..0013b7e4f7 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ElementReturnType.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ElementReturnType.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; namespace Grunwald.BooBinding.CodeCompletion diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ExpressionFinder.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ExpressionFinder.cs index 5d78e2d160..04a517eea2 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ExpressionFinder.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ExpressionFinder.cs @@ -8,7 +8,7 @@ using System; using System.Collections.Generic; using System.Text; -using ICSharpCode.Core; + using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/InferredReturnType.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/InferredReturnType.cs index 6b4d669bb4..7b9d91e6b8 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/InferredReturnType.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/InferredReturnType.cs @@ -6,10 +6,9 @@ // using System; -using ICSharpCode.Core; +using Boo.Lang.Compiler.Ast; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; -using Boo.Lang.Compiler.Ast; namespace Grunwald.BooBinding.CodeCompletion { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ResolveVisitor.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ResolveVisitor.cs index 2832677086..46a9ca990f 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ResolveVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/ResolveVisitor.cs @@ -9,6 +9,7 @@ using System; using System.Collections; using System.Collections.Generic; using System.Text; + using Boo.Lang.Compiler.Ast; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/VariableLookupVisitor.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/VariableLookupVisitor.cs index 94bcac2b69..4b2719a725 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/VariableLookupVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/CodeCompletion/VariableLookupVisitor.cs @@ -7,9 +7,9 @@ using System; using System.Collections.Generic; +using Boo.Lang.Compiler.Ast; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using Boo.Lang.Compiler.Ast; namespace Grunwald.BooBinding.CodeCompletion { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/ConvertBuffer.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/ConvertBuffer.cs index 30f92812df..825410373f 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/ConvertBuffer.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/ConvertBuffer.cs @@ -8,17 +8,13 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text; using Boo.Lang.Compiler; using Boo.Lang.Compiler.Ast; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; -using System.Text; - -using ICSharpCode.NRefactory.PrettyPrinter; -using ICSharpCode.NRefactory.Parser; using NRefactoryToBooConverter; namespace Grunwald.BooBinding diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/BooDesignerGenerator.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/BooDesignerGenerator.cs index 53262d0187..de0bb22fce 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/BooDesignerGenerator.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/BooDesignerGenerator.cs @@ -6,14 +6,14 @@ // using System; -using System.ComponentModel; +using System.CodeDom; using System.Collections.Generic; -using System.Text; +using System.ComponentModel; using System.Reflection; -using System.CodeDom; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; +using System.Text; + using ICSharpCode.FormsDesigner; +using ICSharpCode.SharpDevelop.Dom; namespace Grunwald.BooBinding.Designer { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/CodeDomVisitor.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/CodeDomVisitor.cs index 264b409f4f..aae9fcdbe5 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/CodeDomVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/CodeDomVisitor.cs @@ -6,16 +6,11 @@ // using System; -using System.Collections; using System.CodeDom; -using System.Text; -using Boo.Lang.Compiler; using Boo.Lang.Compiler.Ast; -using Boo.Lang.Compiler.Ast.Visitors; -using Boo.Lang.Parser; +using Grunwald.BooBinding.CodeCompletion; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using Grunwald.BooBinding.CodeCompletion; namespace Grunwald.BooBinding.Designer { diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/FormsDesignerBinding.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/FormsDesignerBinding.cs index 55159a8410..f7fce761d0 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/FormsDesignerBinding.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/Designer/FormsDesignerBinding.cs @@ -7,8 +7,6 @@ using System; using System.IO; - -using ICSharpCode.Core; using ICSharpCode.FormsDesigner; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/FormattingStrategy.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/FormattingStrategy.cs index 19ba49b67f..2eddd2be83 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/FormattingStrategy.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/FormattingStrategy.cs @@ -7,9 +7,9 @@ using System; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Actions; - +using ICSharpCode.TextEditor.Document; + namespace Grunwald.BooBinding { public class BooFormattingStrategy : DefaultFormattingStrategy diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs index 775ec9f9eb..bd0cc4bb9b 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Configuration/AssemblyInfo.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Configuration/AssemblyInfo.cs index 1b0df9dc2b..2a2cf85490 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/CSharpLanguageBinding.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/CSharpLanguageBinding.cs index ba245de1a5..95cfd45148 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/CSharpLanguageBinding.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/CSharpLanguageBinding.cs @@ -7,7 +7,6 @@ using System; using System.Xml; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/FormattingStrategy/DocumentAccessor.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/FormattingStrategy/DocumentAccessor.cs index 0e2fd8ef13..1b3cbc2aeb 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/FormattingStrategy/DocumentAccessor.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/FormattingStrategy/DocumentAccessor.cs @@ -9,9 +9,8 @@ using System; using System.Collections.Generic; using System.IO; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop; +using ICSharpCode.TextEditor.Document; namespace CSharpBinding.FormattingStrategy { diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/OptionPanels/BuildOptions.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/OptionPanels/BuildOptions.cs index 262250a8ba..623ef98abf 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/OptionPanels/BuildOptions.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/OptionPanels/BuildOptions.cs @@ -6,17 +6,9 @@ // using System; -using System.Collections.Generic; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.SharpDevelop.Gui.OptionPanels; - -using StringPair = System.Collections.Generic.KeyValuePair; +using ICSharpCode.SharpDevelop.Project; +using StringPair = System.Collections.Generic.KeyValuePair; namespace CSharpBinding.OptionPanels { diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/CSharpProject.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/CSharpProject.cs index 1ae212a6ff..568802c5e6 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/CSharpProject.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/CSharpProject.cs @@ -9,7 +9,6 @@ using System; using System.ComponentModel; using System.IO; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.CSharp; using ICSharpCode.SharpDevelop.Internal.Templates; diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/VBToCSharpConverter.cs b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/VBToCSharpConverter.cs index b10ad7ce08..e2b32ec8b2 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/VBToCSharpConverter.cs +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/Src/Project/VBToCSharpConverter.cs @@ -11,8 +11,8 @@ using System.IO; using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Visitors; using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.NRefactory.Visitors; using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Project.Converter; diff --git a/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/AssemblyInfo.cs b/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/AssemblyInfo.cs index 577e11bc56..cfdcc751b2 100644 --- a/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/ILAsmLanguageBinding.cs b/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/ILAsmLanguageBinding.cs index 5dde142c6d..628f184efb 100644 --- a/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/ILAsmLanguageBinding.cs +++ b/src/AddIns/BackendBindings/ILAsmBinding/Project/Src/ILAsmLanguageBinding.cs @@ -7,7 +7,6 @@ using System; using System.Xml; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Configuration/AssemblyInfo.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Configuration/AssemblyInfo.cs index 45fdd1f2e8..40b20bcbf4 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/MyNamespaceBuilder.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/MyNamespaceBuilder.cs index 4243be2a32..5151a29cc6 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/MyNamespaceBuilder.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/MyNamespaceBuilder.cs @@ -7,8 +7,6 @@ using System; using System.Collections.Generic; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/BuildOptions.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/BuildOptions.cs index 348ebd31ef..0fc8c7ca3e 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/BuildOptions.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/BuildOptions.cs @@ -6,17 +6,9 @@ // using System; -using System.Collections.Generic; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.SharpDevelop.Gui.OptionPanels; - -using StringPair = System.Collections.Generic.KeyValuePair; +using ICSharpCode.SharpDevelop.Project; +using StringPair = System.Collections.Generic.KeyValuePair; namespace VBNetBinding.OptionPanels { diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/TextEditorOptions.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/TextEditorOptions.cs index bb67d2c380..e8fc6abe93 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/TextEditorOptions.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/OptionPanels/TextEditorOptions.cs @@ -6,17 +6,9 @@ // using System; -using System.IO; -using System.Drawing; using System.Windows.Forms; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace VBNetBinding.OptionPanels { diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/Project/VBNetProject.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/Project/VBNetProject.cs index 8f336f9c57..e99e5ed925 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/Project/VBNetProject.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/Project/VBNetProject.cs @@ -9,7 +9,6 @@ using System; using System.ComponentModel; using System.IO; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.VBNet; diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VBNetLanguageBinding.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VBNetLanguageBinding.cs index 4708b5a174..a3fb6da5d0 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VBNetLanguageBinding.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VBNetLanguageBinding.cs @@ -7,7 +7,6 @@ using System; using System.Xml; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VbcEncodingFixingLogger.cs b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VbcEncodingFixingLogger.cs index 57367248a9..1021a95fbd 100644 --- a/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VbcEncodingFixingLogger.cs +++ b/src/AddIns/BackendBindings/VBNetBinding/Project/Src/VbcEncodingFixingLogger.cs @@ -6,11 +6,6 @@ // using System; -using System.IO; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using Microsoft.Build.Framework; -using ICSharpCode.SharpDevelop.Dom; namespace VBNetBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Configuration/AssemblyInfo.cs b/src/AddIns/BackendBindings/WixBinding/Project/Configuration/AssemblyInfo.cs index 1deeea28f8..66c6cd523e 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddDirectoryCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddDirectoryCommand.cs index 5d47b576c9..94488731ca 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddDirectoryCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddDirectoryCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddElementCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddElementCommand.cs index 9676194bd1..dbd64e09b3 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddElementCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddElementCommand.cs @@ -5,8 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Windows.Forms; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddFilesToComponentCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddFilesToComponentCommand.cs index a7d6834d86..06dbadcba2 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddFilesToComponentCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddFilesToComponentCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddWixLibraryToProject.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddWixLibraryToProject.cs index 5336431836..37fe9bc095 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddWixLibraryToProject.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/AddWixLibraryToProject.cs @@ -7,10 +7,9 @@ using System; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/HideDiffCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/HideDiffCommand.cs index 952a1dcb28..c4986b3764 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/HideDiffCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/HideDiffCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/OpenDialogCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/OpenDialogCommand.cs index c3d663d6f4..0b45fc784d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/OpenDialogCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/OpenDialogCommand.cs @@ -5,10 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; -using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/RemoveElementCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/RemoveElementCommand.cs index 07b2b61654..cac5de603c 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/RemoveElementCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/RemoveElementCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ShowDiffCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ShowDiffCommand.cs index c8aaa15ae8..8d3db88f82 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ShowDiffCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ShowDiffCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewDialogXmlCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewDialogXmlCommand.cs index 5c0864e2a1..5cb00cb648 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewDialogXmlCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewDialogXmlCommand.cs @@ -5,16 +5,14 @@ // $Revision$ // -using ICSharpCode.NRefactory; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.SharpDevelop.Gui; using System; using System.IO; -using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.NRefactory; +using ICSharpCode.SharpDevelop; + namespace ICSharpCode.WixBinding { public class ViewDialogXmlCommand : AbstractMenuCommand diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupDialogsCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupDialogsCommand.cs index 91a570d0b8..2b426d368f 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupDialogsCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupDialogsCommand.cs @@ -5,11 +5,10 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; -using System; -using System.Windows.Forms; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupFilesCommand.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupFilesCommand.cs index 55a11c042d..c434951d52 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupFilesCommand.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Commands/ViewSetupFilesCommand.cs @@ -5,12 +5,10 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop; -using System; -using System.Windows.Forms; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddChildElementsMenuBuilder.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddChildElementsMenuBuilder.cs index 2f13b22e1b..c0f06d1e4c 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddChildElementsMenuBuilder.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddChildElementsMenuBuilder.cs @@ -5,13 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { public class AddChildElementsMenuBuilder : ISubmenuBuilder diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddCompilerExtensionsDialog.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddCompilerExtensionsDialog.cs index f7021c9e6a..350d1b33f5 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddCompilerExtensionsDialog.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/AddCompilerExtensionsDialog.cs @@ -5,12 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs index ef140fd390..d8da275879 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs @@ -9,9 +9,6 @@ using System; using System.IO; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs index bd7f37ee34..8fadea4e87 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs @@ -5,17 +5,11 @@ // $Revision$ // -using StringPair = System.Collections.Generic.KeyValuePair; - using System; -using System.Collections.Generic; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; using ICSharpCode.SharpDevelop.Project; +using StringPair = System.Collections.Generic.KeyValuePair; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LibraryParametersPanel.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LibraryParametersPanel.cs index 98213ef139..34d57c174f 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LibraryParametersPanel.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LibraryParametersPanel.cs @@ -7,12 +7,7 @@ using System; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LinkerParametersPanel.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LinkerParametersPanel.cs index 964e58a85e..6cad597ff9 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LinkerParametersPanel.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/LinkerParametersPanel.cs @@ -7,12 +7,7 @@ using System; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/NameValueListEditor.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/NameValueListEditor.cs index e0a9aa9366..a8fa7bf4ee 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/NameValueListEditor.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/NameValueListEditor.cs @@ -5,13 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.ComponentModel; -using System.Drawing; -using System.Text; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PreprocessorVariablesPanel.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PreprocessorVariablesPanel.cs index d2658c9aea..a4e85ce89d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PreprocessorVariablesPanel.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PreprocessorVariablesPanel.cs @@ -6,15 +6,7 @@ // using System; -using System.Drawing; -using System.IO; -using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/RadioButtonGroupBox.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/RadioButtonGroupBox.cs index c69b77a75f..1cb31bc91d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/RadioButtonGroupBox.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/RadioButtonGroupBox.cs @@ -6,8 +6,6 @@ // using System; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.WixBinding diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SemicolonSeparatedNameValueListBinding.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SemicolonSeparatedNameValueListBinding.cs index 8f78444d7d..02e800f155 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SemicolonSeparatedNameValueListBinding.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SemicolonSeparatedNameValueListBinding.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogControlsSideTab.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogControlsSideTab.cs index ec0004ac19..09464989ac 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogControlsSideTab.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogControlsSideTab.cs @@ -5,16 +5,16 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.FormsDesigner; -using ICSharpCode.FormsDesigner.Gui; -using ICSharpCode.FormsDesigner.Services; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Drawing.Design; using System.IO; using System.Reflection; +using ICSharpCode.Core; +using ICSharpCode.FormsDesigner; +using ICSharpCode.FormsDesigner.Gui; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.WixBinding { public sealed class SetupDialogControlsSideTab : SideTabDesigner diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogErrorListViewItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogErrorListViewItem.cs index c7ad529024..cca68df174 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogErrorListViewItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogErrorListViewItem.cs @@ -8,7 +8,6 @@ using System; using System.Drawing; using System.IO; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.WixBinding diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListPad.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListPad.cs index 809cef0fd3..f11e0c1fee 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListPad.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListPad.cs @@ -9,6 +9,7 @@ using System; using System.IO; using System.Windows.Forms; using System.Xml; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListView.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListView.cs index 98a33abe36..186bc10784 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListView.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SetupDialogListView.cs @@ -5,15 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Collections; -using System.Collections.Generic; using System.Collections.ObjectModel; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/UnknownWixTreeNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/UnknownWixTreeNode.cs index b0c8e2d666..7a7e7ff2b4 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/UnknownWixTreeNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/UnknownWixTreeNode.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionBinding.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionBinding.cs index dae6829efb..e1f047bc33 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionBinding.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionBinding.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; using System.Collections.ObjectModel; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionPicker.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionPicker.cs index 4788616160..f53d8f1b2c 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionPicker.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixCompilerExtensionPicker.cs @@ -5,13 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixComponentTreeNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixComponentTreeNode.cs index f7f0a1de63..b03c412e1d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixComponentTreeNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixComponentTreeNode.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerGenerator.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerGenerator.cs index 94856b0ea7..9c8cbd9ded 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerGenerator.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerGenerator.cs @@ -5,12 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.FormsDesigner; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; -using Microsoft.CSharp; using System; using System.CodeDom; using System.CodeDom.Compiler; @@ -18,9 +12,14 @@ using System.Collections; using System.ComponentModel; using System.IO; using System.Reflection; -using System.Text; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.FormsDesigner; +using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor.Document; +using Microsoft.CSharp; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoader.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoader.cs index 6e5776400f..a926cdf244 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoader.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoader.cs @@ -5,16 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.FormsDesigner; -using ICSharpCode.FormsDesigner.Services; using System; using System.ComponentModel; -using System.ComponentModel.Design; using System.ComponentModel.Design.Serialization; using System.Security.Permissions; using System.Windows.Forms; -using System.Xml; + +using ICSharpCode.Core; +using ICSharpCode.FormsDesigner; +using ICSharpCode.FormsDesigner.Services; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoaderProvider.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoaderProvider.cs index 7cd681d735..af7afd4fb2 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoaderProvider.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDialogDesignerLoaderProvider.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.FormsDesigner; using System; using System.ComponentModel.Design.Serialization; +using ICSharpCode.FormsDesigner; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs index d8f31b74ca..c297e1d224 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDirectoryTreeNode.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDocumentEditor.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDocumentEditor.cs index 3e6635461d..561d109893 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDocumentEditor.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixDocumentEditor.cs @@ -5,11 +5,11 @@ // $Revision$ // +using System; +using System.Drawing; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using System; -using System.Drawing; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesControl.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesControl.cs index ed45e052f6..2ee8794c22 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesControl.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesControl.cs @@ -5,17 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; -using System.Collections.ObjectModel; using System.Collections.Specialized; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.WixBinding { public class WixPackageFilesControl : System.Windows.Forms.UserControl, IWixPackageFilesView diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesDiffControl.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesDiffControl.cs index 698cfb8c30..1ea808554f 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesDiffControl.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesDiffControl.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs index 86327b453b..05c02606da 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixPackageFilesTreeView.cs @@ -5,13 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Specialized; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.WixBinding { public class WixPackageFilesTreeView : ExtTreeView, IOwnerState diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs index 5806a4a334..6a2898c35c 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNode.cs @@ -5,11 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Collections.Specialized; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs index 65ca26490f..8bde5d153a 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/WixTreeNodeBuilder.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/IFileLoader.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/IFileLoader.cs index d029ea02b8..9e99d96d56 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/IFileLoader.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/IFileLoader.cs @@ -7,7 +7,6 @@ using System; using System.Drawing; -using System.Windows.Forms; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixDocumentWriter.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixDocumentWriter.cs index 07a5280900..0ac6b28559 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixDocumentWriter.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixDocumentWriter.cs @@ -6,7 +6,6 @@ // using System; -using System.Xml; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixPackageFilesView.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixPackageFilesView.cs index c7802db417..c5b98ecc5a 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixPackageFilesView.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/IWixPackageFilesView.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections.ObjectModel; using System.Collections.Specialized; using System.Xml; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionName.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionName.cs index 09734d1026..acf5989bb4 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionName.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionName.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionProjectItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionProjectItem.cs index 43107fcb8e..3bd280b6c8 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionProjectItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixCompilerExtensionProjectItem.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixExtensionProjectItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixExtensionProjectItem.cs index d5c4f57d2f..7fb55502d7 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixExtensionProjectItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixExtensionProjectItem.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryExtensionProjectItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryExtensionProjectItem.cs index 3b0529d18a..5df2b76456 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryExtensionProjectItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryExtensionProjectItem.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryFolderNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryFolderNode.cs index 76d942360b..777f851acb 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryFolderNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryFolderNode.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; -using System; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryNode.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryNode.cs index a33948dd8b..0a7768a983 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryNode.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryNode.cs @@ -5,10 +5,10 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using System; using System.IO; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryProjectItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryProjectItem.cs index 67aa884041..b232e0d342 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryProjectItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLibraryProjectItem.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLinkerExtensionProjectItem.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLinkerExtensionProjectItem.cs index a571681d78..7915f5c59d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLinkerExtensionProjectItem.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixLinkerExtensionProjectItem.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProject.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProject.cs index d92ca4f0c8..8b0208af7d 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProject.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProject.cs @@ -10,10 +10,9 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; -using ICSharpCode.SharpDevelop.Project; + using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProjectNodeBuilder.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProjectNodeBuilder.cs index 22230355c3..1f73b9e7f5 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProjectNodeBuilder.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/Project/WixProjectNodeBuilder.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/DropDownEditorListBox.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/DropDownEditorListBox.cs index 4eea7adb52..877152cf33 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/DropDownEditorListBox.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/DropDownEditorListBox.cs @@ -5,10 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditor.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditor.cs index c901e41065..a462b99fd5 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditor.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditor.cs @@ -7,7 +7,6 @@ using System; using System.ComponentModel; -using System.Drawing.Design; using System.Windows.Forms; using System.Windows.Forms.Design; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditorListBox.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditorListBox.cs index d636d4a8c9..297dfe1781 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditorListBox.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/GuidEditorListBox.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/WixXmlAttributePropertyDescriptor.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/WixXmlAttributePropertyDescriptor.cs index 3f49a9a74b..5371923d13 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/WixXmlAttributePropertyDescriptor.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/PropertyGrid/WixXmlAttributePropertyDescriptor.cs @@ -10,7 +10,6 @@ using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Drawing.Design; -using System.Windows.Forms.Design; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBinaries.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBinaries.cs index dd7e34381e..709e197270 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBinaries.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBinaries.cs @@ -5,14 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBindingService.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBindingService.cs index 721b052c5f..f6842af941 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBindingService.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixBindingService.cs @@ -5,14 +5,11 @@ // $Revision$ // +using System; +using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; -using System; -using System.IO; -using System.Windows.Forms; -using System.Xml; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDialog.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDialog.cs index f8bba546bb..3ba903a11c 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDialog.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDialog.cs @@ -5,17 +5,18 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.XmlEditor; using System; -using System.ComponentModel; using System.Collections; using System.Collections.Generic; +using System.ComponentModel; using System.Drawing; using System.Text.RegularExpressions; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.XmlEditor; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs index 18f1fe41f4..978dc2e6e3 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElement.cs @@ -5,13 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.XmlEditor; using System; -using System.Collections.Generic; using System.IO; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.XmlEditor; + namespace ICSharpCode.WixBinding { public class WixDirectoryElement : WixDirectoryElementBase diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElementBase.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElementBase.cs index 0aee4cd58d..f0d559161a 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElementBase.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryElementBase.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.XmlEditor; using System; using System.Collections.Generic; using System.Xml; +using ICSharpCode.XmlEditor; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryRefElement.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryRefElement.cs index 50ca0d1973..a06d09c4b7 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryRefElement.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDirectoryRefElement.cs @@ -6,7 +6,6 @@ // using System; -using System.Xml; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocument.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocument.cs index 33d5134e73..f3257d5ef2 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocument.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocument.cs @@ -5,21 +5,20 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NRefactory; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.XmlEditor; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Drawing; using System.IO; using System.Text; -using System.Text.RegularExpressions; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.NRefactory; +using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor.Document; +using ICSharpCode.XmlEditor; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocumentLineSegment.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocumentLineSegment.cs index e961fc2a25..1355194b0a 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocumentLineSegment.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixDocumentLineSegment.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.TextEditor.Document; using System; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixFileElement.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixFileElement.cs index 87a27f7080..164f6e40c7 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixFileElement.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixFileElement.cs @@ -5,12 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.IO; using System.Text; using System.Xml; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixLanguageBinding.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixLanguageBinding.cs index 4856be0a33..80a0606dd4 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixLanguageBinding.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixLanguageBinding.cs @@ -7,7 +7,6 @@ using System; using System.Xml; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesDiff.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesDiff.cs index 3c547096cb..2ba1f4a4fb 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesDiff.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesDiff.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; using System.IO; +using ICSharpCode.Core; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesEditor.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesEditor.cs index bb936b0238..43195d02b2 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesEditor.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixPackageFilesEditor.cs @@ -5,14 +5,12 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Collections.Specialized; using System.IO; using System.Xml; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixSchemaCompletionData.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixSchemaCompletionData.cs index b521006049..98e4235ec7 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixSchemaCompletionData.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixSchemaCompletionData.cs @@ -5,8 +5,6 @@ // $Revision$ // -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.XmlEditor; using System; using System.Collections.Generic; using System.IO; @@ -14,6 +12,9 @@ using System.Reflection; using System.Xml; using System.Xml.Schema; +using ICSharpCode.TextEditor.Gui.CompletionWindow; +using ICSharpCode.XmlEditor; + namespace ICSharpCode.WixBinding { /// diff --git a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixXmlAttribute.cs b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixXmlAttribute.cs index 2a3c05cb76..36d9d7ec41 100644 --- a/src/AddIns/BackendBindings/WixBinding/Project/Src/WixXmlAttribute.cs +++ b/src/AddIns/BackendBindings/WixBinding/Project/Src/WixXmlAttribute.cs @@ -5,12 +5,7 @@ // $Revision$ // -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.XmlEditor; using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Xml; namespace ICSharpCode.WixBinding { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Configuration/AssemblyInfo.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Configuration/AssemblyInfo.cs index 9522cd05c6..2089583ae4 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/FormsCommands.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/FormsCommands.cs index 11496eefad..1241c826e8 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/FormsCommands.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/FormsCommands.cs @@ -6,24 +6,14 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; using System.Collections; -using System.ComponentModel; +using System.ComponentModel.Design; using System.Windows.Forms; using System.Windows.Forms.Design; -using System.Diagnostics; -using System.Text; -using System.ComponentModel.Design; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor; namespace ICSharpCode.FormsDesigner.Commands { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/SideBarCommands.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/SideBarCommands.cs index 36ba70ba05..b0df00ba09 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/SideBarCommands.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Commands/SideBarCommands.cs @@ -6,33 +6,8 @@ // using System; -using System.IO; -using System.Collections; -using System.Drawing; -using System.Drawing.Design; -using System.Reflection; -using System.Windows.Forms; -using System.Windows.Forms.Design; -using System.Drawing.Printing; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.ComponentModel.Design.Serialization; -using System.Xml; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Internal.Undo; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; - -using ICSharpCode.FormsDesigner.Services; -using ICSharpCode.FormsDesigner.Gui; using ICSharpCode.Core; - -using System.CodeDom; -using System.CodeDom.Compiler; - -using Microsoft.CSharp; -using Microsoft.VisualBasic; +using ICSharpCode.FormsDesigner.Gui; namespace ICSharpCode.FormsDesigner { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/CSharpDesignerGenerator.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/CSharpDesignerGenerator.cs index 68a6d429b9..b763f54de5 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/CSharpDesignerGenerator.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/CSharpDesignerGenerator.cs @@ -10,6 +10,7 @@ using System.ComponentModel; using System.Drawing; using System.Reflection; using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/IDesignerGenerator.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/IDesignerGenerator.cs index 2259d4326c..82147aeeb4 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/IDesignerGenerator.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/IDesignerGenerator.cs @@ -6,13 +6,11 @@ // using System; +using System.CodeDom; +using System.CodeDom.Compiler; using System.Collections; using System.ComponentModel; using System.Reflection; -using System.CodeDom; -using System.CodeDom.Compiler; - -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/VBNetDesignerGenerator.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/VBNetDesignerGenerator.cs index 7c68e0c9d7..a1e04c2ea3 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/VBNetDesignerGenerator.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/VBNetDesignerGenerator.cs @@ -7,8 +7,9 @@ using System; using System.ComponentModel; -using System.Text; using System.Reflection; +using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/XmlDesignerGenerator.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/XmlDesignerGenerator.cs index fb78460bb7..08dd1381ba 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/XmlDesignerGenerator.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerGenerator/XmlDesignerGenerator.cs @@ -6,18 +6,16 @@ // using System; -using System.IO; -using System.Xml; +using System.CodeDom; +using System.CodeDom.Compiler; using System.Collections; +using System.ComponentModel; +using System.ComponentModel.Design; using System.Drawing; +using System.IO; using System.Reflection; using System.Windows.Forms; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.CodeDom; -using System.CodeDom.Compiler; -using System.Text; -using System.Text.RegularExpressions; +using System.Xml; namespace ICSharpCode.FormsDesigner { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerLoader/DesignerLoaderProvider.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerLoader/DesignerLoaderProvider.cs index 5b705a776f..18cdc9e73c 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerLoader/DesignerLoaderProvider.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/DesignerLoader/DesignerLoaderProvider.cs @@ -7,8 +7,8 @@ using System; using System.ComponentModel.Design.Serialization; -using ICSharpCode.TextEditor; using ICSharpCode.NRefactory; +using ICSharpCode.TextEditor; namespace ICSharpCode.FormsDesigner { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/FormKeyHandler.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/FormKeyHandler.cs index b8ab687f5e..4a25659db6 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/FormKeyHandler.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/FormKeyHandler.cs @@ -6,33 +6,15 @@ // using System; -using System.IO; using System.Collections; -using System.Drawing; -using System.Drawing.Design; +using System.ComponentModel; +using System.ComponentModel.Design; using System.Reflection; using System.Windows.Forms; using System.Windows.Forms.Design; -using System.Drawing.Printing; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.ComponentModel.Design.Serialization; -using System.Xml; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Internal.Undo; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; - using ICSharpCode.Core; -using ICSharpCode.FormsDesigner.Services; - -using System.CodeDom; -using System.CodeDom.Compiler; - -using Microsoft.CSharp; -using Microsoft.VisualBasic; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs index 12bd812a38..01dcd6880b 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs @@ -7,16 +7,14 @@ // created on 07.08.2003 at 13:46 using System; -using System.IO; +using System.Collections; +using System.ComponentModel; using System.Drawing; using System.Drawing.Design; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.Collections; -using System.Text; +using System.IO; using System.Reflection; using System.Windows.Forms; -using MSjogren.GacTool.FusionNative; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/ComponentLibraryLoader.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/ComponentLibraryLoader.cs index 7437ff1f5a..ef5889ef79 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/ComponentLibraryLoader.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/ComponentLibraryLoader.cs @@ -6,10 +6,10 @@ // using System; -using System.IO; +using System.Collections; using System.Drawing; +using System.IO; using System.Reflection; -using System.Collections; using System.Xml; namespace ICSharpCode.FormsDesigner.Gui diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GeneralOptions.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GeneralOptions.cs index 353805ad29..cfaac38aad 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GeneralOptions.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GeneralOptions.cs @@ -6,14 +6,8 @@ // using System; -using System.IO; -using System.Collections; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner.Gui.OptionPanels diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptions.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptions.cs index 1ef15202ee..3de69d3d16 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptions.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptions.cs @@ -6,14 +6,8 @@ // using System; -using System.IO; -using System.Collections; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner.Gui.OptionPanels diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/RenameCategoryDialog.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/RenameCategoryDialog.cs index 429d7d91f5..8d4fe312c1 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/RenameCategoryDialog.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/RenameCategoryDialog.cs @@ -8,8 +8,8 @@ // created on 08.08.2003 at 13:02 using System; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.FormsDesigner.Gui diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/SideTabDesigner.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/SideTabDesigner.cs index 1f027343ab..c65fbe6601 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/SideTabDesigner.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/SideTabDesigner.cs @@ -6,17 +6,9 @@ // using System; -using System.IO; -using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Drawing; using System.Drawing.Design; -using System.ComponentModel; -using System.ComponentModel.Design; +using System.Reflection; -using ICSharpCode.Core; -using ICSharpCode.FormsDesigner.Services; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner.Gui diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/SecondaryDisplayBinding.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/SecondaryDisplayBinding.cs index 40ae5c3e30..dd4608ca3b 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/SecondaryDisplayBinding.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/SecondaryDisplayBinding.cs @@ -7,7 +7,6 @@ using System; using System.IO; -using ICSharpCode.Core; using ICSharpCode.NRefactory; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DefaultServiceContainer.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DefaultServiceContainer.cs index b93e970f6c..ae0cdb9675 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DefaultServiceContainer.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DefaultServiceContainer.cs @@ -6,13 +6,8 @@ // using System; -using System.Reflection; using System.Collections; -using System.Drawing; -using System.ComponentModel; using System.ComponentModel.Design; -using System.Windows.Forms.Design; -using ICSharpCode.Core; namespace ICSharpCode.FormsDesigner.Services { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerEventService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerEventService.cs index f4c767b392..ae93edf5b6 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerEventService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerEventService.cs @@ -6,16 +6,9 @@ // using System; -using System.Drawing; using System.Collections; -using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Windows.Forms.Design; - -using ICSharpCode.Core; namespace ICSharpCode.FormsDesigner.Services { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerOptionService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerOptionService.cs index 0b76dfee30..f57256a529 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerOptionService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerOptionService.cs @@ -6,10 +6,9 @@ // using System; -using System.Collections; using System.Drawing; -using System.ComponentModel.Design; using System.Windows.Forms.Design; + using ICSharpCode.Core; using ICSharpCode.FormsDesigner.Gui.OptionPanels; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerResourceService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerResourceService.cs index 1adade6d22..01cbe0e224 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerResourceService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/DesignerResourceService.cs @@ -6,21 +6,17 @@ // using System; -using System.Drawing; -using System.IO; -using System.Collections; using System.Collections.Generic; +using System.ComponentModel.Design; using System.Globalization; +using System.IO; using System.Resources; using System.Text; -using System.Collections.Specialized; -using System.Drawing.Design; -using System.ComponentModel.Design; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Project.Commands; namespace ICSharpCode.FormsDesigner.Services { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/EventBindingService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/EventBindingService.cs index 9e0c31762e..08e46669bf 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/EventBindingService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/EventBindingService.cs @@ -6,13 +6,9 @@ // using System; -using System.Reflection; using System.Collections; using System.ComponentModel; -using System.ComponentModel.Design; -using System.Globalization; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.FormsDesigner.Services diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/MenuCommandService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/MenuCommandService.cs index a3dab58a61..d44a9e7ef7 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/MenuCommandService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/MenuCommandService.cs @@ -6,14 +6,8 @@ // using System; -using System.Diagnostics; -using System.Drawing; -using System.Collections; -using System.Collections.Specialized; -using System.ComponentModel; using System.ComponentModel.Design; -using System.Reflection; -using System.Runtime.CompilerServices; +using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/PropertyValueUIService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/PropertyValueUIService.cs index cc5daed511..2ee199f73f 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/PropertyValueUIService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/PropertyValueUIService.cs @@ -12,9 +12,9 @@ // using System; +using System.Collections; using System.ComponentModel; using System.Drawing.Design; -using System.Collections; namespace ICSharpCode.FormsDesigner.Services { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/ToolboxService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/ToolboxService.cs index ff00378323..f43c3d1fa6 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/ToolboxService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/ToolboxService.cs @@ -6,11 +6,11 @@ // using System; -using System.ComponentModel; using System.Collections; using System.Collections.Specialized; -using System.Drawing.Design; using System.ComponentModel.Design; +using System.Drawing.Design; + using ICSharpCode.Core; namespace ICSharpCode.FormsDesigner.Services diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDescriptorFilterService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDescriptorFilterService.cs index cf71c36f8c..f4b8867160 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDescriptorFilterService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDescriptorFilterService.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDiscoveryService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDiscoveryService.cs index 846b2cd3d5..d10d821fe5 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDiscoveryService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/TypeDiscoveryService.cs @@ -5,17 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Refactoring; using System; using System.Collections; using System.Collections.Generic; -using System.ComponentModel; using System.ComponentModel.Design; using System.Reflection; -using System.Windows.Forms; + +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.FormsDesigner.Services { diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/UIService.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/UIService.cs index 7fc7198118..0c5d810f30 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/UIService.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Services/UIService.cs @@ -6,11 +6,11 @@ // using System; -using System.Drawing; using System.Collections; -using System.Collections.Specialized; +using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/UndoRedo/UndoEngine.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/UndoRedo/UndoEngine.cs index 376ad489d7..9166c1a344 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/UndoRedo/UndoEngine.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/UndoRedo/UndoEngine.cs @@ -5,12 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; using System.ComponentModel.Design; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.FormsDesigner.UndoRedo { public class FormsDesignerUndoEngine : UndoEngine, IUndoHandler diff --git a/src/AddIns/DisplayBindings/IconEditor/IconEditor/AssemblyInfo.cs b/src/AddIns/DisplayBindings/IconEditor/IconEditor/AssemblyInfo.cs index 16fadc00f4..a279725eb7 100644 --- a/src/AddIns/DisplayBindings/IconEditor/IconEditor/AssemblyInfo.cs +++ b/src/AddIns/DisplayBindings/IconEditor/IconEditor/AssemblyInfo.cs @@ -6,8 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Configuration/AssemblyInfo.cs b/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Configuration/AssemblyInfo.cs index 852a318cb3..75a689733d 100644 --- a/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Configuration/AssemblyInfo.cs +++ b/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Configuration/AssemblyInfo.cs @@ -1,6 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Src/IconDisplayBinding.cs b/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Src/IconDisplayBinding.cs index 994be47fc2..c49ecaa30b 100644 --- a/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Src/IconDisplayBinding.cs +++ b/src/AddIns/DisplayBindings/IconEditor/IconEditorAddIn/Src/IconDisplayBinding.cs @@ -6,9 +6,8 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.IconEditorAddIn { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Configuration/AssemblyInfo.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Configuration/AssemblyInfo.cs index 5cd04ee604..6ed5cc1dbe 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddNewFileCommand.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddNewFileCommand.cs index 9dd6bef156..c823b34777 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddNewFileCommand.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddNewFileCommand.cs @@ -6,14 +6,13 @@ // using System; -using System.IO; using System.Drawing; -using System.Windows.Forms; +using System.IO; using System.Runtime.Serialization.Formatters.Binary; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddStringEntryCommand.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddStringEntryCommand.cs index 5db55ec800..15a234c388 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddStringEntryCommand.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/AddStringEntryCommand.cs @@ -7,10 +7,8 @@ using System; using System.Windows.Forms; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/ClipboardCommands.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/ClipboardCommands.cs index 32ff38a2c2..7674742ff8 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/ClipboardCommands.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/ClipboardCommands.cs @@ -6,11 +6,8 @@ // using System; -using System.Windows.Forms; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/CopyResourceNameCommand.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/CopyResourceNameCommand.cs index 38f4308b1a..e770075836 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/CopyResourceNameCommand.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/CopyResourceNameCommand.cs @@ -6,11 +6,8 @@ // using System; -using System.Windows.Forms; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/RenameEntryCommand.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/RenameEntryCommand.cs index 59d987ca1f..c8296e6c7d 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/RenameEntryCommand.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/RenameEntryCommand.cs @@ -6,13 +6,9 @@ // using System; -using System.Windows.Forms; -using System.IO; -using System.Drawing; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; + namespace ResourceEditor { class RenameEntryCommand : AbstractMenuCommand diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/SaveEntryAsCommand.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/SaveEntryAsCommand.cs index 79eaf6868d..50cbc9790e 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/SaveEntryAsCommand.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/Commands/SaveEntryAsCommand.cs @@ -6,13 +6,12 @@ // using System; -using System.Windows.Forms; -using System.IO; using System.Drawing; +using System.IO; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/AbstractImageView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/AbstractImageView.cs index 8a1921517c..d1f94b690a 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/AbstractImageView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/AbstractImageView.cs @@ -7,12 +7,8 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; - namespace ResourceEditor { /// diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BinaryView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BinaryView.cs index 3549c8697b..87dd535ba4 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BinaryView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BinaryView.cs @@ -7,12 +7,10 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; using System.Text; using System.Text.RegularExpressions; +using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ResourceEditor diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BitmapView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BitmapView.cs index 2b03e2c7e6..c93f2ea515 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BitmapView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BitmapView.cs @@ -7,10 +7,8 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ResourceEditor diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BooleanView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BooleanView.cs index a383ec9139..5e2161442d 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BooleanView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/BooleanView.cs @@ -6,11 +6,8 @@ // using System; -using System.Windows.Forms; using System.Drawing; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; +using System.Windows.Forms; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/CursorView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/CursorView.cs index ec343a9e43..dfc9f02782 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/CursorView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/CursorView.cs @@ -7,12 +7,8 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; - namespace ResourceEditor { /// diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IResourceView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IResourceView.cs index 2fc9d33b3a..c5b68d0905 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IResourceView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IResourceView.cs @@ -6,9 +6,6 @@ // using System; -using System.IO; -using System.Drawing; -using System.Windows.Forms; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IconView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IconView.cs index b8373c49f4..bf02fc7b0d 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IconView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/IconView.cs @@ -7,11 +7,6 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceEditor.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceEditor.cs index 7a5a57f4f0..2f3c6d467d 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceEditor.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceEditor.cs @@ -6,10 +6,9 @@ // using System; -using System.Windows.Forms; using System.Drawing; +using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ResourceEditor diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceItem.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceItem.cs index 1ce163bd9f..e8592e83db 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceItem.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceItem.cs @@ -7,7 +7,6 @@ using System; using System.Drawing; -using System.Resources; using System.Windows.Forms; namespace ResourceEditor diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceList.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceList.cs index 526df584ad..d21106a594 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceList.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/ResourceList.cs @@ -6,21 +6,16 @@ // using System; -using System.IO; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Drawing.Drawing2D; using System.Collections; using System.Collections.Generic; +using System.Diagnostics; +using System.Drawing.Printing; +using System.IO; using System.Resources; -using System.Runtime.Serialization.Formatters.Binary; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Internal.Undo; -using System.Drawing.Printing; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/TextView.cs b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/TextView.cs index 955d4a8014..bef2f37cf7 100644 --- a/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/TextView.cs +++ b/src/AddIns/DisplayBindings/ResourceEditor/Project/Src/ResourceEdit/TextView.cs @@ -7,10 +7,6 @@ using System; using System.Windows.Forms; -using System.Drawing; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; namespace ResourceEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs index 575cbc7062..fc2973472d 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeCommand.cs index 99dda33896..621455d48b 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeDialog.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeDialog.cs index 2f9731132a..b794b2828c 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeDialog.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddAttributeDialog.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui.XmlForms; using System; using System.Collections.Generic; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui.XmlForms; + namespace ICSharpCode.XmlEditor { public class AddAttributeDialog : BaseSharpDevelopForm diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddChildElementCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddChildElementCommand.cs index 2a9449a525..4497cf4b8a 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddChildElementCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddChildElementCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddElementDialog.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddElementDialog.cs index a3cdfce855..82c26427a1 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddElementDialog.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AddElementDialog.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui.XmlForms; using System; using System.Collections.Generic; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui.XmlForms; + namespace ICSharpCode.XmlEditor { public class AddElementDialog : BaseSharpDevelopForm diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AssignStylesheetCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AssignStylesheetCommand.cs index d902f0e463..3d0db5c9a1 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AssignStylesheetCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/AssignStylesheetCommand.cs @@ -5,12 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; - using System; using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs index b168b9da37..013a77c1b9 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs @@ -5,10 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; -using System; -using System.Windows.Forms; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs index b9aa5fd060..c960494dde 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs @@ -8,9 +8,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Diagnostics; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs index 458d876ba1..dd0ee6a939 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs @@ -5,15 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; using System; using System.IO; -using System.Text; -using System.Windows.Forms; -using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/FormatXmlCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/FormatXmlCommand.cs index d1748d92b4..15ef624d77 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/FormatXmlCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/FormatXmlCommand.cs @@ -6,9 +6,6 @@ // using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using System.IO; -using System.Xml; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionCommand.cs index 954456949c..a68365aaf7 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionCommand.cs @@ -5,10 +5,7 @@ // $Revision$ // using System; -using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionEditAction.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionEditAction.cs index 6d1b20ca96..696c149cff 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionEditAction.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/GoToSchemaDefinitionEditAction.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; -using System; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementAfterCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementAfterCommand.cs index a77e021b49..97a60634be 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementAfterCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementAfterCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementBeforeCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementBeforeCommand.cs index 2796a8d746..44a2b11ee7 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementBeforeCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/InsertElementBeforeCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/OpenStylesheetCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/OpenStylesheetCommand.cs index 5b8954b128..93a357fc95 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/OpenStylesheetCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/OpenStylesheetCommand.cs @@ -5,11 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using System; -using System.Windows.Forms; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs index 926927cd3d..a72281060d 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs @@ -5,12 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Dom; using System; -using System.Collections; +using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveAttributeCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveAttributeCommand.cs index a660ae30dd..a1c4b2e82d 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveAttributeCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveAttributeCommand.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveXPathHighlightingCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveXPathHighlightingCommand.cs index db12832bed..13d152a60a 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveXPathHighlightingCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RemoveXPathHighlightingCommand.cs @@ -5,10 +5,7 @@ // $Revision$ // using System; -using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RunXslTransformCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RunXslTransformCommand.cs index 4eaf3ff946..cb1e63891a 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RunXslTransformCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/RunXslTransformCommand.cs @@ -5,12 +5,11 @@ // $Revision$ // +using System; +using System.IO; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; -using System; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs index c4ef86c02b..f5ce96e638 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs @@ -5,10 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using System; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/StylesheetAssignedCondition.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/StylesheetAssignedCondition.cs index 11a7b56c38..16b425b811 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/StylesheetAssignedCondition.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/StylesheetAssignedCondition.cs @@ -5,10 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; -using System; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs index 275c4c33b7..241ebefb0a 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs @@ -5,11 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XPathNodeTextMarker.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XPathNodeTextMarker.cs index e8c9a88e09..dfa6ae47f3 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XPathNodeTextMarker.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XPathNodeTextMarker.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.TextEditor.Document; using System; using System.Drawing; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributePropertyDescriptor.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributePropertyDescriptor.cs index b57f5183f0..ef41387778 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributePropertyDescriptor.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributePropertyDescriptor.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Xml; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributeTypeDescriptor.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributeTypeDescriptor.cs index ee670be0f0..07e93ceac6 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributeTypeDescriptor.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlAttributeTypeDescriptor.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.Collections.Generic; using System.ComponentModel; using System.Xml; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs index 14f6dfb1b3..56c7c71b72 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; -using System; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs index e111bd9412..5d2a8ff394 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.TextEditor.Gui.CompletionWindow; using System; using System.Collections; +using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs index 50fd4d2651..cd18c07023 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs @@ -5,13 +5,11 @@ // $Revision$ // -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using System; -using System.Collections; using System.Windows.Forms; -using System.Xml; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs index 609408d30d..9968e95127 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs index 74f8a26557..5cd09205be 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs @@ -5,12 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Diagnostics; -using System.IO; -using System.Reflection; -using System.Xml; +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs index f1a679b60e..c499787a8d 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs @@ -5,8 +5,9 @@ // $Revision$ // +using System; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Bookmarks; using ICSharpCode.SharpDevelop.DefaultEditor; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; @@ -14,10 +15,6 @@ using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; using ICSharpCode.TextEditor.Document; -using System; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs index 73fe07be22..e78528b447 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementTreeNode.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementTreeNode.cs index c677595a29..d91d977c00 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementTreeNode.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementTreeNode.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEncoder.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEncoder.cs index 90e72854a2..4198c50d22 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEncoder.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEncoder.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using System.Text; using System.Xml; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs index 03eb1065b0..213eb387db 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.TextEditor.Document; using System; using System.Collections; using System.Collections.Generic; @@ -13,6 +12,8 @@ using System.IO; using System.Text; using System.Xml; +using ICSharpCode.TextEditor.Document; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs index 8d2e263c41..c347ba2a2e 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.IO; using System.Net; using System.Text; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs index 7e772a61a9..b9bb4b334b 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs @@ -5,9 +5,7 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Xml; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs index 3d101e19ce..c52336bf09 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs @@ -5,9 +5,7 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Xml; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs index a7db15c693..84d470a8b3 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs @@ -5,14 +5,14 @@ // $Revision$ // -using ICSharpCode.TextEditor.Gui.CompletionWindow; using System; -using System.Collections; using System.IO; using System.Text; using System.Xml; using System.Xml.Schema; +using ICSharpCode.TextEditor.Gui.CompletionWindow; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs index 84998f54e7..d719fbfce8 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs @@ -5,10 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Gui.CompletionWindow; using System; using System.Collections.Generic; +using ICSharpCode.Core; +using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs index 7752c9aa61..e782d4cbfa 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs @@ -5,11 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.IO; using System.Runtime.InteropServices; -using System.Xml; + +using ICSharpCode.Core; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs index d7ccf710df..04ae35b8ba 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs @@ -5,18 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Collections; using System.Collections.Specialized; -using System.ComponentModel; using System.Drawing; using System.IO; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTextTreeNode.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTextTreeNode.cs index 39ed5e3d41..277c52d41b 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTextTreeNode.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTextTreeNode.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Xml; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeEditor.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeEditor.cs index 94455d0b58..3d1ca46075 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeEditor.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeEditor.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.TextEditor.Gui.CompletionWindow; using System; using System.Collections.Generic; using System.Xml; +using ICSharpCode.TextEditor.Gui.CompletionWindow; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeView.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeView.cs index 0c47435e55..759cb62be4 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeView.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeView.cs @@ -5,12 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewContainerControl.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewContainerControl.cs index 809b62f931..c33957c313 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewContainerControl.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewContainerControl.cs @@ -5,13 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using System.Xml; +using ICSharpCode.Core; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewControl.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewControl.cs index 6d843f76d9..07a3603482 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewControl.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlTreeViewControl.cs @@ -5,14 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.ComponentModel; using System.Windows.Forms; -using System.Windows.Forms.Design; using System.Xml; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.XmlEditor { /// diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs index d5177f9f25..ad39a6d416 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs @@ -8,8 +8,6 @@ using System; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Data; -using System.Drawing; using System.Drawing.Printing; using System.IO; using System.Text; diff --git a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XslOutputView.cs b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XslOutputView.cs index 0919741b35..70b084a10a 100644 --- a/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XslOutputView.cs +++ b/src/AddIns/DisplayBindings/XmlEditor/Project/Src/XslOutputView.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using System; namespace ICSharpCode.XmlEditor { diff --git a/src/AddIns/Misc/AddInManager/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/AddInManager/Project/Configuration/AssemblyInfo.cs index 4e5ac4cee6..6dc33f2fce 100644 --- a/src/AddIns/Misc/AddInManager/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/AddInManager/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs b/src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs index d6f7306341..acc544c2c1 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs @@ -9,6 +9,7 @@ using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.AddInManager diff --git a/src/AddIns/Misc/AddInManager/Project/Src/AddInControl.cs b/src/AddIns/Misc/AddInManager/Project/Src/AddInControl.cs index 856178c25c..05a2a90353 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/AddInControl.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/AddInControl.cs @@ -6,10 +6,10 @@ // using System; -using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.AddInManager diff --git a/src/AddIns/Misc/AddInManager/Project/Src/AddInInstallBinding.cs b/src/AddIns/Misc/AddInManager/Project/Src/AddInInstallBinding.cs index ca41d308af..36e3f6ff92 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/AddInInstallBinding.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/AddInInstallBinding.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop; namespace ICSharpCode.AddInManager diff --git a/src/AddIns/Misc/AddInManager/Project/Src/Commands.cs b/src/AddIns/Misc/AddInManager/Project/Src/Commands.cs index be80367af5..464dfacb76 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/Commands.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/Commands.cs @@ -7,11 +7,11 @@ using System; using System.Collections.Generic; -using System.Drawing; -using System.Windows.Forms; using ICSharpCode.Core; -#if !STANDALONE using ICSharpCode.SharpDevelop; + +#if !STANDALONE + #endif namespace ICSharpCode.AddInManager diff --git a/src/AddIns/Misc/AddInManager/Project/Src/InstallableAddIn.cs b/src/AddIns/Misc/AddInManager/Project/Src/InstallableAddIn.cs index d9489e331a..58b67c5630 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/InstallableAddIn.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/InstallableAddIn.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.IO; + using ICSharpCode.Core; using ICSharpCode.SharpZipLib.Zip; diff --git a/src/AddIns/Misc/AddInManager/Project/Src/ManagerForm.cs b/src/AddIns/Misc/AddInManager/Project/Src/ManagerForm.cs index b8757e12cc..7ce7c753cd 100644 --- a/src/AddIns/Misc/AddInManager/Project/Src/ManagerForm.cs +++ b/src/AddIns/Misc/AddInManager/Project/Src/ManagerForm.cs @@ -11,6 +11,7 @@ using System.Drawing; using System.IO; using System.Text; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.AddInManager diff --git a/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutCommand.cs b/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutCommand.cs index 698b1a7254..951b431316 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutCommand.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutCommand.cs @@ -6,8 +6,8 @@ // using System; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace AddInScout { diff --git a/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutViewContent.cs b/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutViewContent.cs index b7cb6e1de0..944d862693 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutViewContent.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/AddInScoutViewContent.cs @@ -6,15 +6,10 @@ // using System; -using System.IO; -using System.Collections; using System.Windows.Forms; -using System.Drawing; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; - namespace AddInScout { public class AddInScoutViewContent : AbstractViewContent diff --git a/src/AddIns/Misc/AddinScout/Project/Src/AssemblyInfo.cs b/src/AddIns/Misc/AddinScout/Project/Src/AssemblyInfo.cs index 595fe2b49c..1a62602e88 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/AssemblyInfo.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddInDetailsPanel.cs b/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddInDetailsPanel.cs index 53e732cfe9..8321809202 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddInDetailsPanel.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddInDetailsPanel.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddinTreeView.cs b/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddinTreeView.cs index a60fc3797e..053c7d86d7 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddinTreeView.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/Gui/AddinTreeView.cs @@ -6,8 +6,8 @@ // using System; -using ICSharpCode.Core; using System.Windows.Forms; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop; namespace AddInScout diff --git a/src/AddIns/Misc/AddinScout/Project/Src/Gui/CodonListPanel.cs b/src/AddIns/Misc/AddinScout/Project/Src/Gui/CodonListPanel.cs index 6c52065c9e..6c33e3bdcc 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/Gui/CodonListPanel.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/Gui/CodonListPanel.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/AddinScout/Project/Src/Gui/TreeTreeView.cs b/src/AddIns/Misc/AddinScout/Project/Src/Gui/TreeTreeView.cs index 372c6d3760..7cd0baae5f 100644 --- a/src/AddIns/Misc/AddinScout/Project/Src/Gui/TreeTreeView.cs +++ b/src/AddIns/Misc/AddinScout/Project/Src/Gui/TreeTreeView.cs @@ -6,8 +6,8 @@ // using System; -using ICSharpCode.Core; using System.Windows.Forms; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop; namespace AddInScout diff --git a/src/AddIns/Misc/CodeAnalysis/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/CodeAnalysis/Configuration/AssemblyInfo.cs index d29eaefb2f..2673d177e0 100644 --- a/src/AddIns/Misc/CodeAnalysis/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/CodeAnalysis/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisIdeOptionsPanel.cs b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisIdeOptionsPanel.cs index 10b291790d..9da9ea817c 100644 --- a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisIdeOptionsPanel.cs +++ b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisIdeOptionsPanel.cs @@ -6,10 +6,9 @@ // using System; -using System.ComponentModel; -using System.Drawing; using System.IO; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs index ddde5613d6..536336e31d 100644 --- a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs +++ b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; using System.Text; using System.Text.RegularExpressions; @@ -15,7 +14,6 @@ using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.CodeAnalysis diff --git a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptionsPanel.cs b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptionsPanel.cs index 4c1ea2942a..b8ff17f933 100644 --- a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptionsPanel.cs +++ b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptionsPanel.cs @@ -6,11 +6,7 @@ // using System; -using System.Drawing; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.OptionPanels; using ICSharpCode.SharpDevelop.Project; diff --git a/src/AddIns/Misc/CodeAnalysis/Src/FxCopWrapper.cs b/src/AddIns/Misc/CodeAnalysis/Src/FxCopWrapper.cs index 27b0f66288..afe7edf30c 100644 --- a/src/AddIns/Misc/CodeAnalysis/Src/FxCopWrapper.cs +++ b/src/AddIns/Misc/CodeAnalysis/Src/FxCopWrapper.cs @@ -10,8 +10,9 @@ using System.Collections; using System.Collections.Generic; using System.IO; using System.Reflection; -using Microsoft.Win32; + using ICSharpCode.Core; +using Microsoft.Win32; namespace ICSharpCode.CodeAnalysis { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/CodeCoverage/Project/Configuration/AssemblyInfo.cs index c880dacfd9..379c40cece 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageHighlighter.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageHighlighter.cs index 1e90bafcb8..50428cd9f7 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageHighlighter.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageHighlighter.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.TextEditor.Document; using System; using System.Collections.Generic; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageImageList.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageImageList.cs index 74b5b5f35f..2006f995b3 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageImageList.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageImageList.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.CodeCoverage { public enum CodeCoverageImageListIndex diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethod.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethod.cs index dd03672451..ba04e5f943 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethod.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethod.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethodsTreeNode.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethodsTreeNode.cs index d67e43bbbd..abaa855b27 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethodsTreeNode.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageMethodsTreeNode.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageModuleTreeNode.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageModuleTreeNode.cs index e40625a2f9..2fe776a9aa 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageModuleTreeNode.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageModuleTreeNode.cs @@ -5,11 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Collections.Generic; -using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageNamespaceTreeNode.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageNamespaceTreeNode.cs index 3c7c7ee18a..6917532301 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageNamespaceTreeNode.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageNamespaceTreeNode.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptions.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptions.cs index 39122fac31..7703015774 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptions.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptions.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Drawing; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptionsPanel.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptionsPanel.cs index 1c0fa689e3..fec0e42956 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptionsPanel.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageOptionsPanel.cs @@ -5,15 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; using System; -using System.Collections; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.CodeCoverage { public class CodeCoverageOptionsPanel : AbstractOptionPanel diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoveragePad.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoveragePad.cs index d26946cd45..7caf3159e5 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoveragePad.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoveragePad.cs @@ -5,12 +5,10 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor; using System; -using System.Collections.Generic; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageProjectOptionsPanel.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageProjectOptionsPanel.cs index 06b70eef41..549bc983bc 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageProjectOptionsPanel.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageProjectOptionsPanel.cs @@ -5,14 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; using System; using System.IO; using System.Windows.Forms; -using System.Xml; + +using ICSharpCode.SharpDevelop.Gui.OptionPanels; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageRunnerNotFoundForm.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageRunnerNotFoundForm.cs index 9cf79b7d47..8d0b19009f 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageRunnerNotFoundForm.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageRunnerNotFoundForm.cs @@ -5,13 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using System; using System.Diagnostics; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui.XmlForms; + namespace ICSharpCode.CodeCoverage { public class CodeCoverageRunnerNotFoundForm : XmlForm diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageService.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageService.cs index b33f57e04f..9dd18ad94f 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageService.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageService.cs @@ -5,13 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; +using System; +using System.Collections.Generic; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.TextEditor; -using System; -using System.Collections.Generic; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTextMarker.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTextMarker.cs index d2a1a18b41..9d7b0b8f52 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTextMarker.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTextMarker.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.TextEditor.Document; using System; using System.Drawing; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeNode.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeNode.cs index d010f2bddd..dc69d41668 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeNode.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeNode.cs @@ -5,11 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; using System.Drawing; -using System.Collections.Generic; -using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeView.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeView.cs index 637c3aa40b..388b6465d6 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeView.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/CodeCoverageTreeView.cs @@ -5,12 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.CodeCoverage { public class CodeCoverageTreeView : ExtTreeView diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/ColorPickerComboBox.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/ColorPickerComboBox.cs index d879ba05a5..b4428fb0c1 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/ColorPickerComboBox.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/ColorPickerComboBox.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/GrayScaleBitmap.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/GrayScaleBitmap.cs index c0a980dafa..09ee72b420 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/GrayScaleBitmap.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/GrayScaleBitmap.cs @@ -8,8 +8,6 @@ using System; using System.Drawing; using System.Drawing.Imaging; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverRunner.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverRunner.cs index e9506cd03d..7d1d05cf59 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverRunner.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverRunner.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Util; using System; -using System.Diagnostics; using System.Text; +using ICSharpCode.SharpDevelop.Util; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverSettings.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverSettings.cs index 4c823acb04..959a792d8b 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverSettings.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/NCoverSettings.cs @@ -5,12 +5,13 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; using System.IO; using System.Text; using System.Xml; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.CodeCoverage { /// diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs index f8e66d2e8d..cb43c58d7c 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs @@ -5,6 +5,8 @@ // $Revision$ // +using System; +using System.IO; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; @@ -12,8 +14,6 @@ using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Util; using ICSharpCode.UnitTesting; -using System; -using System.IO; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowDisplayOptionsDropDown.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowDisplayOptionsDropDown.cs index afdbaefd26..68ffdbb930 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowDisplayOptionsDropDown.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowDisplayOptionsDropDown.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowSourceCodeCommand.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowSourceCodeCommand.cs index 7999f83953..0752440ec9 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowSourceCodeCommand.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowSourceCodeCommand.cs @@ -5,9 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowVisitCountCommand.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowVisitCountCommand.cs index d9ea8f5166..2a289f2cda 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/ShowVisitCountCommand.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/ShowVisitCountCommand.cs @@ -5,9 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/ToggleCodeCoverageCommand.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/ToggleCodeCoverageCommand.cs index e3c21b2587..30bd3de44e 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/ToggleCodeCoverageCommand.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/ToggleCodeCoverageCommand.cs @@ -5,9 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; +using ICSharpCode.Core; namespace ICSharpCode.CodeCoverage { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Configuration/AssemblyInfo.cs index 4c679ae1e3..8ca2d561bf 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/CloseAssemblyCommand.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/CloseAssemblyCommand.cs index 1285371749..a9307435e9 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/CloseAssemblyCommand.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/CloseAssemblyCommand.cs @@ -5,10 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; -using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ComponentInspectorView.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ComponentInspectorView.cs index e8823b21c7..09af913be0 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ComponentInspectorView.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ComponentInspectorView.cs @@ -5,10 +5,10 @@ // $Revision$ // -using NoGoop.ObjBrowser; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; +using NoGoop.ObjBrowser; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/FindCommand.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/FindCommand.cs index 31cb9e9e44..6511f6dac5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/FindCommand.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/FindCommand.cs @@ -5,12 +5,9 @@ // $Revision$ // -using NoGoop.ObjBrowser.Dialogs; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop; using System; -using System.Windows.Forms; +using ICSharpCode.Core; +using NoGoop.ObjBrowser.Dialogs; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/GeneralOptionsPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/GeneralOptionsPanel.cs index 6471bc216d..57fb2d0cfa 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/GeneralOptionsPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/GeneralOptionsPanel.cs @@ -5,14 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using NoGoop.ObjBrowser; using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; +using NoGoop.ObjBrowser; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ObjectTreeOptionsPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ObjectTreeOptionsPanel.cs index b1026f1ebf..0541b4c858 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ObjectTreeOptionsPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ObjectTreeOptionsPanel.cs @@ -5,14 +5,10 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using NoGoop.ObjBrowser; using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; +using NoGoop.ObjBrowser; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs index e671bcfd37..f62d285843 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ShowComponentInspectorCommand.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ShowComponentInspectorCommand.cs index 54f9f1f540..247c223fd1 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ShowComponentInspectorCommand.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/ShowComponentInspectorCommand.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; using System; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.ComponentInspector.AddIn { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/TypeHandlerOptionsPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/TypeHandlerOptionsPanel.cs index 98fdbbd19d..7c91874ccb 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/TypeHandlerOptionsPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/TypeHandlerOptionsPanel.cs @@ -5,15 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using NoGoop.ObjBrowser; using System; using System.Collections; using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; +using NoGoop.ObjBrowser; + namespace ICSharpCode.ComponentInspector.AddIn { public class TypeHandlerOptionsPanel : AbstractOptionPanel diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Configuration/AssemblyInfo.cs index 6a5f9e68c2..ce92a629cb 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/ErrorDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/ErrorDialog.cs index 1444ae504b..6eef90161b 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/ErrorDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/ErrorDialog.cs @@ -5,22 +5,16 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.ComponentModel; -using System.Diagnostics; using System.Drawing; -using System.Net; using System.Reflection; using System.Runtime.InteropServices; using System.Text; -using System.Web.Mail; using System.Windows.Forms; -using NoGoop.Controls; -using NoGoop.ObjBrowser; + +using ICSharpCode.Core; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Controls { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/NumericTextBox.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/NumericTextBox.cs index 31ff646200..f9f676aa53 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/NumericTextBox.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/NumericTextBox.cs @@ -6,13 +6,7 @@ // using System; -using System.Collections; -using System.Reflection; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.Controls { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListNode.cs index 308b7ebf0d..633c734c43 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListNode.cs @@ -7,14 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Runtime.InteropServices; using System.Windows.Forms; -using NoGoop.Win32; -using NoGoop.Util; - namespace NoGoop.Controls { internal class TreeListNode : TreeNode, IComparable diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListPanel.cs index 38c1fae6e6..0813addb0f 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListPanel.cs @@ -5,18 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; + +using ICSharpCode.Core; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.Controls { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListView.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListView.cs index c8c8fe7d89..eba222bb84 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListView.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Controls/TreeListView.cs @@ -7,15 +7,10 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; + using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.Controls { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Debugger.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Debugger.cs index 5f2415550a..26db909663 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Debugger.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Debugger.cs @@ -6,14 +6,8 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Runtime.InteropServices; using System.Windows.Forms; -using Microsoft.Win32; using CORDBLib_1_0; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Debug diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumHolder.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumHolder.cs index a803238c8f..aab6827097 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumHolder.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumHolder.cs @@ -6,17 +6,9 @@ // using System; -using System.Diagnostics; -using System.Reflection; using System.Collections; -using System.Runtime.InteropServices; -using Microsoft.Win32; - using CORDBLib_1_0; -using NoGoop.Win32; -using NoGoop.Util; - namespace NoGoop.Debug { public class EnumHolder : IEnumerator diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumMarshaler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumMarshaler.cs index 176fa1b89f..83e4983841 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumMarshaler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/EnumMarshaler.cs @@ -6,17 +6,9 @@ // using System; -using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using System.Windows.Forms; -using Microsoft.Win32; - using CORDBLib_1_0; -using NoGoop.Win32; -using NoGoop.Util; - namespace NoGoop.Debug { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Profile.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Profile.cs index 5248ad3b81..5ac329a9be 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Profile.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Debug/Profile.cs @@ -6,13 +6,10 @@ // using System; -using System.Diagnostics; using System.Runtime.InteropServices; -using Microsoft.Win32; - using CORDBLib_1_0; -using NoGoop.Win32; using NoGoop.Util; +using NoGoop.Win32; namespace NoGoop.Debug { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs index c03231581d..b3b6cea84b 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs @@ -5,16 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; using System.Windows.Forms; -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; + +using ICSharpCode.Core; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/DetailPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/DetailPanel.cs index 7f87d24dbb..3b73dc3770 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/DetailPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/DetailPanel.cs @@ -6,11 +6,9 @@ // using System; -using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows.Forms; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.ActiveX diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/ObjectTreePanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/ObjectTreePanel.cs index 7c55ff2f7c..7fc5bd6da5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/ObjectTreePanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActiveX/ObjectTreePanel.cs @@ -6,11 +6,9 @@ // using System; -using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows.Forms; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.ActiveX diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/AssemblySupport.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/AssemblySupport.cs index 0a5f9eb9d1..64357d0cd6 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/AssemblySupport.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/AssemblySupport.cs @@ -5,28 +5,22 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; -using System.ComponentModel; using System.Diagnostics; using System.Drawing; -using System.IO; using System.Reflection; using System.Reflection.Emit; -using System.Runtime.Remoting; using System.Text; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; -using NoGoop.Controls; + +using ICSharpCode.Core; using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; using NoGoop.ObjBrowser.LinkHelpers; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.ObjBrowser.Panels; +using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserFinder.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserFinder.cs index 31dc3c7676..e500ac7999 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserFinder.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserFinder.cs @@ -7,15 +7,11 @@ using System; using System.Collections; -using System.Diagnostics; using System.Text; using System.Windows.Forms; -using NoGoop.Controls; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Obj; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserTree.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserTree.cs index 3373f05528..203c3dcbf7 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserTree.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/BrowserTree.cs @@ -6,24 +6,14 @@ // using System; -using System.Collections; -using System.ComponentModel; -using System.Diagnostics; using System.Drawing; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; + using NoGoop.Controls; using NoGoop.ObjBrowser.GuiDesigner; using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CastInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CastInfo.cs index 2a4cec383a..9c6417082d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CastInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CastInfo.cs @@ -9,12 +9,8 @@ using System; using System.Collections; using System.Reflection; using System.Reflection.Emit; -using System.Drawing; -using System.Windows.Forms; -using Microsoft.Win32; -using NoGoop.Controls; + using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComSupport.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComSupport.cs index 6c3d4f11ab..f641df616a 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComSupport.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComSupport.cs @@ -5,24 +5,17 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; -using System.ComponentModel; -using System.Diagnostics; using System.Drawing; using System.Reflection; -using System.Threading; using System.Windows.Forms; -using System.Windows.Forms.Design; -using Microsoft.Win32; -using NoGoop.Controls; + +using ICSharpCode.Core; using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CompNumber.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CompNumber.cs index 494d4be927..2fadf36009 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CompNumber.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/CompNumber.cs @@ -7,12 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Threading; -using NoGoop.Obj; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComponentInspectorProperties.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComponentInspectorProperties.cs index d1218f367b..78bc91f3c3 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComponentInspectorProperties.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ComponentInspectorProperties.cs @@ -5,12 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections.Generic; using System.IO; using System.Windows.Forms; +using ICSharpCode.Core; + namespace NoGoop.ObjBrowser { public class ComponentInspectorProperties diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ControlTree.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ControlTree.cs index 8ed03ff6f4..faf75ffadd 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ControlTree.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ControlTree.cs @@ -7,16 +7,10 @@ using System; using System.Collections; -using System.Diagnostics; using System.Reflection; -using System.Text; using System.Windows.Forms; -using Microsoft.Win32; - using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AboutDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AboutDialog.cs index 022306090e..751a756e57 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AboutDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AboutDialog.cs @@ -5,15 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; using System.Windows.Forms; -using NoGoop.Win32; +using ICSharpCode.Core; using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AttachDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AttachDialog.cs index 9bafa6633c..99eb95e161 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AttachDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/AttachDialog.cs @@ -5,19 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Drawing; using System.Windows.Forms; - -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Controls; using NoGoop.Debug; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CastDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CastDialog.cs index 37f261b330..62936ff282 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CastDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CastDialog.cs @@ -5,16 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.Reflection; -using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; using NoGoop.Controls; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ConstructorDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ConstructorDialog.cs index 588629cbcb..c3149be885 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ConstructorDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ConstructorDialog.cs @@ -5,15 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.Reflection; -using System.Drawing; using System.Windows.Forms; -using NoGoop.Win32; -using NoGoop.Util; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CustomizeDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CustomizeDialog.cs index da44b9d419..9b015d51f4 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CustomizeDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/CustomizeDialog.cs @@ -6,13 +6,8 @@ // using System; -using System.Collections; using System.Windows.Forms; - -using NoGoop.Controls; using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.Types; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/Dialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/Dialog.cs index 1bb213b00e..e78e021a5e 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/Dialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/Dialog.cs @@ -6,14 +6,8 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Drawing; using System.Windows.Forms; - using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/FindDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/FindDialog.cs index 46dbe67c83..1d8d8d3d28 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/FindDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/FindDialog.cs @@ -5,18 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Reflection; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; using NoGoop.Controls; using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/GettingStartedDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/GettingStartedDialog.cs index b669c2991e..0dbe1346a0 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/GettingStartedDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/GettingStartedDialog.cs @@ -5,15 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Reflection; using System.Drawing; using System.Windows.Forms; +using ICSharpCode.Core; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ProgressDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ProgressDialog.cs index 2e101b1766..e92154618a 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ProgressDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/ProgressDialog.cs @@ -6,16 +6,11 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Reflection; using System.Drawing; using System.Threading; using System.Windows.Forms; -using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.Dialogs { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/SplashDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/SplashDialog.cs index 4b035c33e8..1ed114f164 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/SplashDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/SplashDialog.cs @@ -6,15 +6,9 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; using System.Windows.Forms; -using NoGoop.Win32; -using NoGoop.Util; - namespace NoGoop.ObjBrowser.Dialogs { internal class SplashDialog : Form diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/TracingDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/TracingDialog.cs index c17794984f..480e3033dc 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/TracingDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/TracingDialog.cs @@ -5,19 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.Diagnostics; -using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Controls; -using NoGoop.Debug; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/WaitingForAppDialog.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/WaitingForAppDialog.cs index 06c70249f1..d1a7bc2fc7 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/WaitingForAppDialog.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Dialogs/WaitingForAppDialog.cs @@ -5,14 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Reflection; -using System.Drawing; using System.Windows.Forms; - -using NoGoop.Win32; +using ICSharpCode.Core; using NoGoop.Util; namespace NoGoop.ObjBrowser.Dialogs diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/DragDropSupport.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/DragDropSupport.cs index 42a741be67..a80b1dbfe4 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/DragDropSupport.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/DragDropSupport.cs @@ -7,20 +7,11 @@ using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; using NoGoop.ObjBrowser.GuiDesigner; +using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/EventLogList.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/EventLogList.cs index 2ed457dffe..681c135f4d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/EventLogList.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/EventLogList.cs @@ -5,25 +5,18 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; using System.Diagnostics; -using System.Drawing; -using System.IO; using System.Reflection; using System.Reflection.Emit; using System.Text; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Controls; +using ICSharpCode.Core; using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GacList.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GacList.cs index 3365d48f19..84c20d02cd 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GacList.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GacList.cs @@ -5,20 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; using System.IO; using System.Windows.Forms; -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Controls; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/BrowserDesignerTransaction.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/BrowserDesignerTransaction.cs index 68f3b67fa8..f011e1e232 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/BrowserDesignerTransaction.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/BrowserDesignerTransaction.cs @@ -6,18 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.ComponentModel; using System.ComponentModel.Design; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; -using System.Windows.Forms.Design; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.GuiDesigner { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerContainer.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerContainer.cs index cf4e094231..9ee270f4a4 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerContainer.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerContainer.cs @@ -7,17 +7,7 @@ using System; using System.Collections; -using System.Diagnostics; using System.ComponentModel; -using System.ComponentModel.Design; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; -using System.Windows.Forms.Design; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.GuiDesigner { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerHost.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerHost.cs index 280790244f..e6ed75441c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerHost.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerHost.cs @@ -7,21 +7,16 @@ using System; using System.Collections; -using System.Diagnostics; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Design; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; using System.Windows.Forms.Design; using NoGoop.Controls; using NoGoop.Obj; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.GuiDesigner { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerSite.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerSite.cs index 94a04bbf13..e29a627c43 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerSite.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/DesignerSite.cs @@ -7,18 +7,12 @@ using System; using System.Collections; -using System.Diagnostics; using System.ComponentModel; using System.ComponentModel.Design; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; using System.Windows.Forms.Design; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.GuiDesigner { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ImagePanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ImagePanel.cs index 315f48a7a8..7b7d1c162c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ImagePanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ImagePanel.cs @@ -5,21 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.ComponentModel; using System.ComponentModel.Design; -using System.Diagnostics; using System.Drawing; using System.Windows.Forms; -using System.Windows.Forms.Design; +using ICSharpCode.Core; using NoGoop.Controls; using NoGoop.Obj; using NoGoop.ObjBrowser.GuiDesigner; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ToolBoxService.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ToolBoxService.cs index 5da42cb533..18281f64c8 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ToolBoxService.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/GuiDesigner/ToolBoxService.cs @@ -9,13 +9,8 @@ using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; -using System.Diagnostics; -using System.Drawing; using System.Drawing.Design; using System.Windows.Forms; -using System.Windows.Forms.Design; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.GuiDesigner { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IBrowserNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IBrowserNode.cs index 81297940a1..71f6b06452 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IBrowserNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IBrowserNode.cs @@ -7,15 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ICastableTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ICastableTreeNode.cs index 333e795b6a..5c33a0e1a1 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ICastableTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ICastableTreeNode.cs @@ -6,14 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IConvertableTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IConvertableTreeNode.cs index 485a265884..7c1b61581c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IConvertableTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IConvertableTreeNode.cs @@ -6,17 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDesignSurfaceNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDesignSurfaceNode.cs index 1ba29c1110..b0d61ebf23 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDesignSurfaceNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDesignSurfaceNode.cs @@ -6,17 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDragDropSourceTarget.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDragDropSourceTarget.cs index e582541d34..e50139331d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDragDropSourceTarget.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDragDropSourceTarget.cs @@ -6,16 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDrapDropItem.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDrapDropItem.cs index cbe3608c4f..e39e8d917d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDrapDropItem.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IDrapDropItem.cs @@ -6,16 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingMenuNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingMenuNode.cs index fd18442476..8db325169a 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingMenuNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingMenuNode.cs @@ -6,17 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingNode.cs index bb504dc0f6..b004442240 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IEventLoggingNode.cs @@ -6,17 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IFavoriteTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IFavoriteTreeNode.cs index f24d556ad1..b2ee5e2cca 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IFavoriteTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IFavoriteTreeNode.cs @@ -6,17 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IInvokableTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IInvokableTreeNode.cs index b41592d145..e3001ee541 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IInvokableTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IInvokableTreeNode.cs @@ -6,17 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IMenuTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IMenuTreeNode.cs index f5e53323f6..520365b3e2 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IMenuTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IMenuTreeNode.cs @@ -6,16 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; -using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchMaterializer.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchMaterializer.cs index ef3400a7f2..966f82aeb5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchMaterializer.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchMaterializer.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchNode.cs index e7a5924fd1..033d603bc0 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearchNode.cs @@ -7,10 +7,6 @@ using System; using System.Collections; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearcher.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearcher.cs index a09e61f280..26ecaf4ac9 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearcher.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ISearcher.cs @@ -7,7 +7,6 @@ using System; using System.Collections; -using System.Windows.Forms; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ITypeTreeHandler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ITypeTreeHandler.cs index b192b422ca..44ec4b875b 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ITypeTreeHandler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ITypeTreeHandler.cs @@ -7,17 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IntermediateNodeType.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IntermediateNodeType.cs index 656196e625..d7d76c2362 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IntermediateNodeType.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/IntermediateNodeType.cs @@ -7,20 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using Microsoft.Win32; - -using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ComLinkHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ComLinkHelper.cs index 4f4b1b86ea..7e891327f5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ComLinkHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ComLinkHelper.cs @@ -6,15 +6,9 @@ // using System; -using System.Collections; using System.Reflection; -using System.Windows.Forms; -using NoGoop.Controls; using NoGoop.Obj; -using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.LinkHelpers { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/HelpLinkHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/HelpLinkHelper.cs index 54fa971602..4e6730db28 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/HelpLinkHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/HelpLinkHelper.cs @@ -7,18 +7,16 @@ using System; using System.Collections; -using System.IO; using System.Drawing; using System.Globalization; -using System.Runtime.InteropServices; -using System.Net; +using System.IO; using System.Reflection; +using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; + using NoGoop.Controls; using NoGoop.Obj; -using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; using NoGoop.Win32; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjLinkHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjLinkHelper.cs index fa95867bd4..a345868de8 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjLinkHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjLinkHelper.cs @@ -6,15 +6,8 @@ // using System; -using System.Collections; -using System.Windows.Forms; - -using NoGoop.Controls; using NoGoop.Obj; -using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.LinkHelpers { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjMemberLinkHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjMemberLinkHelper.cs index da0e9dea5e..3c75bd87c1 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjMemberLinkHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/ObjMemberLinkHelper.cs @@ -6,15 +6,7 @@ // using System; -using System.Collections; -using System.Windows.Forms; - -using NoGoop.Controls; -using NoGoop.Obj; -using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.LinkHelpers { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/TypeLinkHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/TypeLinkHelper.cs index 6f56a7050a..c7c4ab7ce4 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/TypeLinkHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/LinkHelpers/TypeLinkHelper.cs @@ -6,15 +6,8 @@ // using System; -using System.Collections; using System.Reflection; -using System.Windows.Forms; - -using NoGoop.Controls; -using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.LinkHelpers { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowser.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowser.cs index d019ccb859..f7bd843a5c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowser.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowser.cs @@ -5,32 +5,18 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; -using System.ComponentModel; -using System.Diagnostics; using System.Drawing; using System.IO; -using System.Net; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Runtime.Remoting; -using System.Security; -using System.Security.Policy; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; -using NoGoop.Controls; -using NoGoop.Debug; +using ICSharpCode.Core; using NoGoop.Obj; -using NoGoop.ObjBrowser.Dialogs; using NoGoop.ObjBrowser.GuiDesigner; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.ObjBrowser.Panels; +using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowserForm.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowserForm.cs index fc7164b141..5691409aa9 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowserForm.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectBrowserForm.cs @@ -6,31 +6,15 @@ // using System; -using System.Collections; -using System.ComponentModel; using System.Diagnostics; using System.Drawing; -using System.IO; -using System.Net; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Runtime.Remoting; -using System.Security; -using System.Security.Policy; -using System.Threading; using System.Windows.Forms; using ICSharpCode.Core; -using Microsoft.Win32; using NoGoop.Controls; -using NoGoop.Debug; -using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; -using NoGoop.ObjBrowser.GuiDesigner; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectCreator.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectCreator.cs index 180353e2e9..8e63a2bcc8 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectCreator.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ObjectCreator.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.IO; @@ -18,11 +16,8 @@ using System.Windows.Forms; using NoGoop.Controls; using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; -using NoGoop.ObjBrowser.GuiDesigner; using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/OutputList.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/OutputList.cs index cb70916ff0..97c9075f52 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/OutputList.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/OutputList.cs @@ -5,19 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.IO; using System.Windows.Forms; - -using Microsoft.Win32; - -using NoGoop.Util; -using NoGoop.Win32; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PanelLabel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PanelLabel.cs index 22e95dd467..bc490348ea 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PanelLabel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PanelLabel.cs @@ -6,15 +6,10 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Drawing; using System.Windows.Forms; -using System.Windows.Forms.Design; using NoGoop.Controls; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ButtonPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ButtonPanel.cs index d0e46a74d7..5964ab99df 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ButtonPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ButtonPanel.cs @@ -5,13 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; -using NoGoop.Win32; +using ICSharpCode.Core; using NoGoop.Util; namespace NoGoop.ObjBrowser.Panels diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustActiveXPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustActiveXPanel.cs index 36c189829e..db6f2f1f23 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustActiveXPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustActiveXPanel.cs @@ -5,19 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; - using System; -using System.Collections; using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Controls; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustDirPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustDirPanel.cs index 0fab997a5b..23cce5e323 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustDirPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustDirPanel.cs @@ -5,20 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; - using System; -using System.Collections; using System.Drawing; using System.IO; using System.Windows.Forms; -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Controls; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustObjectPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustObjectPanel.cs index bdfb1679fd..daa7852cbd 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustObjectPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustObjectPanel.cs @@ -5,19 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; - using System; -using System.Collections; using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Controls; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustShowPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustShowPanel.cs index 6db9adb3a6..9e05576712 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustShowPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustShowPanel.cs @@ -5,18 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Controls; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustTypeHandlerPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustTypeHandlerPanel.cs index 80c1ba610b..36cfb2108f 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustTypeHandlerPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/CustTypeHandlerPanel.cs @@ -5,19 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; using System.Drawing; using System.Windows.Forms; -using Microsoft.Win32; - -using NoGoop.Controls; -using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; -using NoGoop.Util; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/DetailPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/DetailPanel.cs index d89f841cee..3418115be3 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/DetailPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/DetailPanel.cs @@ -7,15 +7,12 @@ using System; using System.Collections; -using System.Diagnostics; using System.Drawing; using System.Windows.Forms; using NoGoop.Controls; using NoGoop.ObjBrowser.LinkHelpers; -using NoGoop.ObjBrowser.TreeNodes; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamControlInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamControlInfo.cs index 6e6178a008..6d187da9da 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamControlInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamControlInfo.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; using System.Diagnostics; @@ -13,13 +12,10 @@ using System.Drawing; using System.Reflection; using System.Runtime.Remoting; using System.Text; -using System.Threading; using System.Windows.Forms; -using NoGoop.Controls; -using NoGoop.Obj; +using ICSharpCode.Core; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Panels diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamPanel.cs index ad54241468..e0ae2b04fa 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/ParamPanel.cs @@ -7,17 +7,13 @@ using System; using System.Collections; -using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; using System.Windows.Forms; using NoGoop.Controls; -using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Panels diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/StatusPanel.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/StatusPanel.cs index ba4fdd39d4..2fafaa12fa 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/StatusPanel.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Panels/StatusPanel.cs @@ -6,15 +6,10 @@ // using System; -using System.Collections; -using System.ComponentModel; -using System.Diagnostics; using System.Drawing; using System.Windows.Forms; -using NoGoop.Controls; -using NoGoop.Obj; + using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.Panels { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PresentationMap.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PresentationMap.cs index a8950aec3d..8068e40355 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PresentationMap.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PresentationMap.cs @@ -7,17 +7,14 @@ using System; using System.Collections; -using System.Diagnostics; using System.Drawing; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; + using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedAssemblyCollection.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedAssemblyCollection.cs index a26fded709..56aa17a3b6 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedAssemblyCollection.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedAssemblyCollection.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedTypeLibraryCollection.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedTypeLibraryCollection.cs index fdc513e306..aaf9a47321 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedTypeLibraryCollection.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/PreviouslyOpenedTypeLibraryCollection.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/SavedCastInfoCollection.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/SavedCastInfoCollection.cs index 267dbef732..e6f98bbfc7 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/SavedCastInfoCollection.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/SavedCastInfoCollection.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; +using ICSharpCode.Core; namespace NoGoop.ObjBrowser { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/AssemblyTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/AssemblyTreeNode.cs index 751ef34275..6b7ac9d887 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/AssemblyTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/AssemblyTreeNode.cs @@ -7,19 +7,10 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/BrowserTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/BrowserTreeNode.cs index 1137e9a84a..4b6daa33b1 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/BrowserTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/BrowserTreeNode.cs @@ -9,13 +9,11 @@ using System; using System.Collections; using System.Diagnostics; using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; using System.Windows.Forms; + using NoGoop.Controls; using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComAppIdRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComAppIdRootTreeNode.cs index 3cab983eba..397193cab7 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComAppIdRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComAppIdRootTreeNode.cs @@ -6,20 +6,10 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatRootTreeNode.cs index 3d42f404d5..a925f4efe0 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatRootTreeNode.cs @@ -5,22 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - +using ICSharpCode.Core; using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatTreeNode.cs index 8f5f954817..7c576cc1fa 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComCatTreeNode.cs @@ -8,17 +8,11 @@ using System; using System.Collections; using System.Diagnostics; -using System.Drawing; -using System.Reflection; using System.Runtime.InteropServices; -using System.Text; -using System.Threading; -using System.Windows.Forms; using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; +using NoGoop.Win32; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComClassRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComClassRootTreeNode.cs index 195283165e..97e30c2456 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComClassRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComClassRootTreeNode.cs @@ -5,22 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - +using ICSharpCode.Core; using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComInterfaceRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComInterfaceRootTreeNode.cs index ab2929743c..bb904f7e79 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComInterfaceRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComInterfaceRootTreeNode.cs @@ -5,19 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Windows.Forms; - +using ICSharpCode.Core; using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComMemberTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComMemberTreeNode.cs index ebadfaaa7a..acbcc9c66d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComMemberTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComMemberTreeNode.cs @@ -7,19 +7,9 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComProgIdRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComProgIdRootTreeNode.cs index 5186061c0a..a8e53113a3 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComProgIdRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComProgIdRootTreeNode.cs @@ -6,20 +6,9 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComRootTreeNode.cs index b92af6122f..53da3e0f02 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComRootTreeNode.cs @@ -5,18 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; using System.Diagnostics; -using System.Windows.Forms; +using ICSharpCode.Core; using Microsoft.Win32; - using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComSearchMaterializer.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComSearchMaterializer.cs index b75ae8b08b..a5cee1c0ba 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComSearchMaterializer.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComSearchMaterializer.cs @@ -7,9 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; -using NoGoop.Obj; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibRootTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibRootTreeNode.cs index 1017bc7bea..73963da05e 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibRootTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibRootTreeNode.cs @@ -5,23 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using Microsoft.Win32; - +using ICSharpCode.Core; using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.Dialogs; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibTreeNode.cs index f0a91c2e1d..2d7190bd75 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeLibTreeNode.cs @@ -7,18 +7,11 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; + using NoGoop.Controls; using NoGoop.Obj; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeTreeNode.cs index f7203d0275..8a0253651a 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ComTypeTreeNode.cs @@ -7,19 +7,10 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; -using Microsoft.Win32; - using NoGoop.Obj; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/IntermediateTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/IntermediateTreeNode.cs index c6efb1af83..b0bd86c4b3 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/IntermediateTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/IntermediateTreeNode.cs @@ -7,17 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Windows.Forms; - -using Microsoft.Win32; - -using NoGoop.Obj; -using NoGoop.ObjBrowser; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/MemberTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/MemberTreeNode.cs index c3ce9c0af6..7e24286ab1 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/MemberTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/MemberTreeNode.cs @@ -7,16 +7,10 @@ using System; using System.Collections; -using System.ComponentModel; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Threading; using System.Windows.Forms; -using NoGoop.Util; using NoGoop.Obj; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ModuleTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ModuleTreeNode.cs index 4c4a4b0c2a..c20f2fd1f4 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ModuleTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ModuleTreeNode.cs @@ -7,15 +7,7 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/NamespaceTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/NamespaceTreeNode.cs index 7cecc50cc8..0f5df98ec2 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/NamespaceTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/NamespaceTreeNode.cs @@ -7,16 +7,10 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; using NoGoop.Obj; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTreeNode.cs index d7b65bb3b1..57fe2f4758 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTreeNode.cs @@ -7,22 +7,17 @@ using System; using System.Collections; -using System.ComponentModel; using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; using System.Text; -using System.Threading; using System.Windows.Forms; -using NoGoop.Obj; + using NoGoop.Controls; +using NoGoop.Obj; using NoGoop.ObjBrowser.Dialogs; +using NoGoop.ObjBrowser.GuiDesigner; using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.Types; -using NoGoop.ObjBrowser.GuiDesigner; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTypeTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTypeTreeNode.cs index f316b5a459..e916942146 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTypeTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/ObjectTypeTreeNode.cs @@ -13,10 +13,6 @@ using System.Windows.Forms; using NoGoop.Controls; using NoGoop.Obj; -using NoGoop.ObjBrowser.Dialogs; -using NoGoop.ObjBrowser.LinkHelpers; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.TreeNodes diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/TypeTreeNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/TypeTreeNode.cs index e4688347db..ec42117fc9 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/TypeTreeNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TreeNodes/TypeTreeNode.cs @@ -7,19 +7,13 @@ using System; using System.Collections; -using System.ComponentModel; -using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; using NoGoop.Obj; using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.ObjBrowser.TreeNodes { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TypeHandlerManager.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TypeHandlerManager.cs index 47bcd823c4..6ffcad9690 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TypeHandlerManager.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/TypeHandlerManager.cs @@ -9,12 +9,9 @@ using System; using System.Collections; using System.ComponentModel; using System.Reflection; -using System.Threading; -using System.Windows.Forms; -using NoGoop.Obj; + using NoGoop.ObjBrowser.TreeNodes; using NoGoop.ObjBrowser.Types; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/BaseTypeHandler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/BaseTypeHandler.cs index 2975fd7cbb..3e36dec06d 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/BaseTypeHandler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/BaseTypeHandler.cs @@ -7,14 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Windows.Forms; - using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Types { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/EventHandlerListTypeHandler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/EventHandlerListTypeHandler.cs index 81c37bfdeb..7f0a5510cb 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/EventHandlerListTypeHandler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/EventHandlerListTypeHandler.cs @@ -7,13 +7,11 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; using System.ComponentModel; +using System.Reflection; using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Types diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IEnumeratorTypeHandler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IEnumeratorTypeHandler.cs index 46a46b7eb1..4fc127aada 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IEnumeratorTypeHandler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IEnumeratorTypeHandler.cs @@ -7,13 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Windows.Forms; - using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.ObjBrowser.Types diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IListTypeHandler.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IListTypeHandler.cs index 59809a68f0..d044993bf2 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IListTypeHandler.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/Types/IListTypeHandler.cs @@ -7,14 +7,7 @@ using System; using System.Collections; -using System.Diagnostics; -using System.Reflection; -using System.Windows.Forms; - -using NoGoop.Obj; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Win32; -using NoGoop.Util; namespace NoGoop.ObjBrowser.Types { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/BasicInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/BasicInfo.cs index 1020d8bd4f..3ab40734a6 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/BasicInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/BasicInfo.cs @@ -9,17 +9,14 @@ using System; using System.CodeDom; using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using System.Text; -using System.Threading; + using Microsoft.Win32; using NoGoop.ObjBrowser; +using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ClassCache.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ClassCache.cs index 3c3d5384b3..bea10facfe 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ClassCache.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ClassCache.cs @@ -7,12 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; using System.Reflection; -using System.Runtime.InteropServices; -using Microsoft.Win32; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComAppInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComAppInfo.cs index 72fade422a..be4dc88681 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComAppInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComAppInfo.cs @@ -6,14 +6,8 @@ // using System; -using System.Diagnostics; -using System.Runtime.InteropServices; using Microsoft.Win32; -using NoGoop.ObjBrowser; -using NoGoop.Win32; -using NoGoop.Util; - namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComClassInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComClassInfo.cs index 148533e45f..6b5d009a34 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComClassInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComClassInfo.cs @@ -9,15 +9,13 @@ using System; using System.CodeDom; using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; +using Microsoft.Win32; using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; +using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComInterfaceInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComInterfaceInfo.cs index 6629103dbe..9b7858572f 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComInterfaceInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComInterfaceInfo.cs @@ -12,10 +12,10 @@ using System.Diagnostics; using System.Reflection; using System.Runtime.InteropServices; using System.Windows.Forms; + using Microsoft.Win32; using NoGoop.Controls; using NoGoop.ObjBrowser; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComMemberInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComMemberInfo.cs index a895f0a2de..2bd8981ada 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComMemberInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComMemberInfo.cs @@ -9,12 +9,10 @@ using System; using System.CodeDom; using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; + using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComObjectInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComObjectInfo.cs index 7b1126dba2..812106379c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComObjectInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComObjectInfo.cs @@ -8,17 +8,14 @@ using System; using System.Collections; using System.Diagnostics; -using System.Drawing; using System.Reflection; using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; + using Microsoft.Win32; using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.Dialogs; using NoGoop.ObjBrowser.LinkHelpers; +using NoGoop.ObjBrowser.Panels; using NoGoop.Util; using NoGoop.Win32; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComStructInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComStructInfo.cs index 054490f5a7..487b722426 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComStructInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComStructInfo.cs @@ -7,15 +7,9 @@ using System; using System.CodeDom; -using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; -using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComTypeDefInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComTypeDefInfo.cs index 1d482efac3..f113e5850e 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComTypeDefInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComTypeDefInfo.cs @@ -6,15 +6,11 @@ // using System; -using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComVariableInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComVariableInfo.cs index 7490a4d55b..0b43928e77 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComVariableInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ComVariableInfo.cs @@ -7,16 +7,13 @@ using System; using System.CodeDom; -using System.Collections; using System.Diagnostics; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; using NoGoop.ObjBrowser; using NoGoop.ObjBrowser.Panels; -using NoGoop.Win32; using NoGoop.Util; +using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ICodeDom.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ICodeDom.cs index 6989119567..102ecc25c5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ICodeDom.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ICodeDom.cs @@ -6,7 +6,6 @@ // using System; -using System.CodeDom; using System.Collections; namespace NoGoop.Obj diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectInfo.cs index 4c4f0c0daa..1b0ce5c833 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectInfo.cs @@ -6,15 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Util; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectNode.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectNode.cs index f606405be8..92778cec4b 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectNode.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/IObjectNode.cs @@ -6,15 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; - -using NoGoop.Util; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/NamePropCache.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/NamePropCache.cs index a9552c31ae..c2c5e45c60 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/NamePropCache.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/NamePropCache.cs @@ -7,7 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; using System.Reflection; using NoGoop.Util; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfo.cs index ecccf18c3f..fbb8e20c36 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfo.cs @@ -9,19 +9,15 @@ using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; -using System.Drawing; using System.Reflection; -using System.Runtime.InteropServices; using System.Text; -using System.Threading; using System.Windows.Forms; using NoGoop.Controls; using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.Panels; using NoGoop.ObjBrowser.LinkHelpers; +using NoGoop.ObjBrowser.Panels; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfoFactory.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfoFactory.cs index e551d539f1..a0e74fbc83 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfoFactory.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/ObjectInfoFactory.cs @@ -6,14 +6,10 @@ // using System; -using System.Collections; using System.Diagnostics; using System.Reflection; -using System.Threading; -using System.Runtime.InteropServices; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/StructAccessor.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/StructAccessor.cs index 54b1162c8c..1d34e08f24 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/StructAccessor.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/StructAccessor.cs @@ -12,10 +12,8 @@ using System.Reflection; using System.Reflection.Emit; using System.Text; - using NoGoop.ObjBrowser; using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibKey.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibKey.cs index 7277904251..4b9e986097 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibKey.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibKey.cs @@ -6,14 +6,6 @@ // using System; -using System.Collections; -using System.Runtime.InteropServices; -using System.Threading; -using Microsoft.Win32; -using NoGoop.ObjBrowser; -using NoGoop.Controls; -using NoGoop.Util; -using NoGoop.Win32; namespace NoGoop.Obj { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibUtil.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibUtil.cs index 458203d6a8..9d4101321a 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibUtil.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibUtil.cs @@ -6,12 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Text; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; using NoGoop.Util; using NoGoop.Win32; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibrary.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibrary.cs index 5095f91665..c2fad980b5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibrary.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Objects/TypeLibrary.cs @@ -10,22 +10,19 @@ using System.CodeDom; using System.CodeDom.Compiler; using System.Collections; using System.Diagnostics; -using System.Drawing; using System.IO; using System.Reflection; using System.Reflection.Emit; using System.Runtime.InteropServices; -using System.Runtime.Serialization; -using System.Threading; using System.Windows.Forms; using System.Windows.Forms.Design; + using Microsoft.Win32; +using NoGoop.Controls; using NoGoop.ObjBrowser; -using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Dialogs; +using NoGoop.ObjBrowser.LinkHelpers; using NoGoop.ObjBrowser.Panels; -using NoGoop.ObjBrowser.TreeNodes; -using NoGoop.Controls; using NoGoop.Util; using NoGoop.Win32; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Constants.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Constants.cs index d8885b5440..04f840b1ee 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Constants.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Constants.cs @@ -6,8 +6,6 @@ // using System; -using System.Diagnostics; -using System.IO; namespace NoGoop.Util { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/LocalPrefs.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/LocalPrefs.cs index d7412febd2..5ada69de2c 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/LocalPrefs.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/LocalPrefs.cs @@ -7,8 +7,8 @@ using System; using System.Collections; -using System.Diagnostics; using System.Configuration; +using System.Diagnostics; namespace NoGoop.Util { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/ReflectionHelper.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/ReflectionHelper.cs index 5a6a6bb726..54fb3857c2 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/ReflectionHelper.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/ReflectionHelper.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Reflection; -using System.Text; namespace NoGoop.Util { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/TraceUtil.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/TraceUtil.cs index 7a46ced62b..fbaf311686 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/TraceUtil.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/TraceUtil.cs @@ -7,7 +7,6 @@ using System; using System.Diagnostics; -using System.IO; namespace NoGoop.Util { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Utils.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Utils.cs index ec1e1fd588..b55b7781b5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Utils.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Util/Utils.cs @@ -11,6 +11,7 @@ using System.Diagnostics; using System.Drawing; using System.Reflection; using System.Windows.Forms; + using NoGoop.Win32; namespace NoGoop.Util diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/ActiveX.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/ActiveX.cs index dee89b63eb..862be5b9d3 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/ActiveX.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/ActiveX.cs @@ -6,13 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Text; -using System.Reflection; using System.Runtime.InteropServices; -using Microsoft.Win32; -using NoGoop.Util; namespace NoGoop.Win32 { diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Win32Utils.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Win32Utils.cs index 9951a993cd..b47c0dc6c5 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Win32Utils.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Win32Utils.cs @@ -8,8 +8,6 @@ using System; using System.Collections; using System.Text; -using System.Reflection; -using System.Runtime.InteropServices; using Microsoft.Win32; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Windows.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Windows.cs index fd8c636251..0ee659b0f6 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Windows.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/Win32/Windows.cs @@ -7,9 +7,9 @@ using System; using System.Collections; -using System.Text; -using System.Reflection; using System.Runtime.InteropServices; +using System.Text; + using Microsoft.Win32; using NoGoop.Util; diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector/Configuration/AssemblyInfo.cs index 5aa0a4961f..10f2d3bf68 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector/Src/ComponentInspectorApplication.cs b/src/AddIns/Misc/ComponentInspector/ComponentInspector/Src/ComponentInspectorApplication.cs index eeb71cba8c..45e9b62a28 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector/Src/ComponentInspectorApplication.cs +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector/Src/ComponentInspectorApplication.cs @@ -5,19 +5,19 @@ // $Revision$ // -using ICSharpCode.Core; -using NoGoop.Controls; -using NoGoop.ObjBrowser.Dialogs; -using NoGoop.Util; - using System; using System.Configuration; using System.IO; +using System.Resources; using System.Security; using System.Security.Policy; -using System.Resources; using System.Windows.Forms; +using ICSharpCode.Core; +using NoGoop.Controls; +using NoGoop.ObjBrowser.Dialogs; +using NoGoop.Util; + namespace NoGoop.ObjBrowser { public class ComponentInspectorApplication diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Configuration/AssemblyInfo.cs index 020c909986..81ca640489 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // // General Information about an assembly is controlled through the following diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs index 1db3c3ca52..36bd998326 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs @@ -6,18 +6,10 @@ // using System; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; +using Debugger; using ICSharpCode.SharpDevelop.Bookmarks; using ICSharpCode.SharpDevelop.Services; -using Debugger; - namespace ICSharpCode.SharpDevelop.Gui.Pads { public class BreakPointsPad : BookmarkPad diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.Menu.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.Menu.cs index 62f4b40282..f41fcc2031 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.Menu.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.Menu.cs @@ -6,17 +6,10 @@ // using System; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; using System.ComponentModel; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; +using System.Windows.Forms; -using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs index 9b14520c6f..a0d5ef499a 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs @@ -6,17 +6,11 @@ // using System; -using System.Windows.Forms; using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.ComponentModel; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; +using System.Windows.Forms; using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/DebuggerPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/DebuggerPad.cs index c0cba64175..5a57cbfce1 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/DebuggerPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/DebuggerPad.cs @@ -6,10 +6,8 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; - using Debugger; +using ICSharpCode.SharpDevelop.Services; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs index 1d58fd5e66..d8aebf6278 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs @@ -6,17 +6,12 @@ // using System; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; using System.Collections.Generic; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; +using System.Drawing; +using System.Windows.Forms; using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs index 34024039f7..a2829ed264 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs @@ -7,15 +7,8 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; - using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs index b84ce6a1a3..c23446584d 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs @@ -7,16 +7,8 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; - using Debugger; -using System.Collections.Generic; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.Menu.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.Menu.cs index 220bb4125c..2cb9946940 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.Menu.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.Menu.cs @@ -6,17 +6,11 @@ // using System; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; using System.ComponentModel; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; +using System.Windows.Forms; using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs index c9dd381fe7..77d0d32d94 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs @@ -7,16 +7,8 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.ComponentModel; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Services; - using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.Pads { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DebuggerIcons.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DebuggerIcons.cs index 8b4ee0ba72..bd6a133fd5 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DebuggerIcons.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DebuggerIcons.cs @@ -9,7 +9,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs index eda0263f85..4d40e18464 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs @@ -6,13 +6,12 @@ // using System; -using System.Collections.Generic; using System.Drawing; using System.Runtime.InteropServices; using System.Windows.Forms; + using Debugger; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.TreeGrid; namespace ICSharpCode.SharpDevelop.Services diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs index ce684f36db..c98305425f 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs @@ -6,9 +6,8 @@ // using System; -using System.Windows.Forms; -using ICSharpCode.Core; using Debugger; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Services { diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs index 40b5d24fd6..b5a031f814 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Reflection; using System.IO; +using System.Reflection; using System.Runtime.Remoting; using System.Security.Policy; diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/SetCurrentStatementCommand.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/SetCurrentStatementCommand.cs index 94ede30bdc..9dc6d0f839 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/SetCurrentStatementCommand.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/SetCurrentStatementCommand.cs @@ -7,8 +7,6 @@ using System; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.TextEditor; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace ICSharpCode.SharpDevelop.Services diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs index df0817533d..bfe5c16ba8 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs @@ -6,27 +6,13 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Drawing; -using System.IO; +using System.Diagnostics; using System.Windows.Forms; using Debugger; - using ICSharpCode.Core; -using System.CodeDom.Compiler; - -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.TreeGrid; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Services; -using System.Runtime.Remoting; -using System.Reflection; -using System.Security.Policy; -using System.Diagnostics; using BM = ICSharpCode.SharpDevelop.Bookmarks; namespace ICSharpCode.SharpDevelop.Services diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Configuration/AssemblyInfo.cs index 0c860ea60e..0653253cde 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // // General Information about an assembly is controlled through the following diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs index ce48c268f9..e1d5c7a8f8 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs index 1debd0910b..2b2ecf992b 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs @@ -6,9 +6,7 @@ // using System; -using System.Runtime.InteropServices; using System.Collections.Generic; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs index 410dea742c..a5f0595c72 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs @@ -13,9 +13,7 @@ // \1\2\n\1{\n\1\tEnterCallback(PausedReason.Other, "\3");\n\1\t\n\1\tExitCallback_Continue();\n\1} using System; -using System.Collections.Generic; using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs index 80ab25417f..1f340d995c 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs @@ -6,11 +6,7 @@ // using System; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Threading; using System.Windows.Forms; - using Debugger.Wrappers.CorDebug; // Regular expresion: diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs index a56c5fb910..714e01ec78 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs @@ -13,9 +13,7 @@ // \1\2\n\1{\n\1\tGetProcessCallbackInterface(\4).\3(\4, \5, \6, \7, \8, \9);\n\1} using System; -using System.Collections.Generic; using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs index 48f4de80e8..beea0c0765 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; -using CustomSinks; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs index 46d0f70fe3..95882aa024 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.InteropServices; using System.Text; using System.Threading; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PauseSession.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PauseSession.cs index 128220b693..6e4348e19f 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PauseSession.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PauseSession.cs @@ -7,8 +7,6 @@ using System; -using Debugger.Wrappers.CorDebug; - namespace Debugger { /// diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs index 0799738fe2..b21bd739a3 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs @@ -6,14 +6,8 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Text; using System.Threading; -using Debugger.Wrappers.CorDebug; - namespace Debugger { public partial class Process diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Util.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Util.cs index 19bc9342e9..3e3d9e12f3 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Util.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Util.cs @@ -6,13 +6,7 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading; - -using Debugger.Wrappers.CorDebug; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs index a1b935d07e..5a7061235e 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs @@ -6,9 +6,6 @@ // using System; -using System.IO; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; using Debugger.Wrappers.CorSym; using Debugger.Wrappers.MetaData; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSink.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSink.cs index d498fb7ebf..437d31d93c 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSink.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSink.cs @@ -6,13 +6,11 @@ // using System; -using System.Collections.Generic; -using System.Text; +using System.IO; using System.Runtime.Remoting.Channels; -using System.Windows.Forms; using System.Runtime.Remoting.Messaging; -using System.IO; using System.Threading; +using System.Windows.Forms; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSinkProvider.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSinkProvider.cs index bf4db47611..fcfb72dd07 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSinkProvider.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAClientChannelSinkProvider.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Runtime.Remoting.Channels; using System.Collections; +using System.Runtime.Remoting.Channels; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSink.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSink.cs index ae96f24962..f4747068e6 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSink.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSink.cs @@ -6,12 +6,10 @@ // using System; -using System.Collections.Generic; -using System.Text; +using System.IO; using System.Runtime.Remoting.Channels; -using System.Windows.Forms; using System.Runtime.Remoting.Messaging; -using System.IO; +using System.Windows.Forms; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSinkProvider.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSinkProvider.cs index 519a46e370..edb9aeabd7 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSinkProvider.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/InvokeOnSTASink/InvokeOnSTAServerChannelSinkProvider.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Runtime.Remoting.Channels; using System.Collections; +using System.Runtime.Remoting.Channels; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/AsyncMessageResponseSink.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/AsyncMessageResponseSink.cs index 582d34eaed..f0963ceafc 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/AsyncMessageResponseSink.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/AsyncMessageResponseSink.cs @@ -7,9 +7,7 @@ using System; using System.Collections.Generic; -using System.Text; using System.Runtime.Remoting.Messaging; -using System.Collections; using System.Threading; namespace CustomSinks diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/EventForwarder.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/EventForwarder.cs index 93694b0b5e..7e6eeb39ff 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/EventForwarder.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/EventForwarder.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Windows.Forms; using System.Reflection; +using System.Windows.Forms; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/MyProxy.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/MyProxy.cs index 4eb435b279..ed9ba120a1 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/MyProxy.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/MyProxy.cs @@ -6,12 +6,10 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Runtime.Remoting.Proxies; -using System.Runtime.Remoting.Messaging; -using System.Runtime.Remoting.Activation; using System.Runtime.Remoting; +using System.Runtime.Remoting.Activation; +using System.Runtime.Remoting.Messaging; +using System.Runtime.Remoting.Proxies; using System.Runtime.Remoting.Services; namespace CustomSinks diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSink.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSink.cs index 313fe58866..1e26c29202 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSink.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSink.cs @@ -6,14 +6,9 @@ // using System; -using System.Collections.Generic; -using System.Text; +using System.IO; using System.Runtime.Remoting.Channels; -using System.Windows.Forms; using System.Runtime.Remoting.Messaging; -using System.IO; -using System.Threading; -using System.Reflection; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSinkProvider.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSinkProvider.cs index c320ce4965..c60b339951 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSinkProvider.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/RemotingSinks/PrivateEventHandlersSink/PrivateEventHandlersClientChannelSinkProvider.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Runtime.Remoting.Channels; using System.Collections; +using System.Runtime.Remoting.Channels; namespace CustomSinks { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs index a673cdfa65..68b74a5dfa 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs @@ -6,10 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Threading; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs index bc4a8dff2a..3db5329f65 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs @@ -6,8 +6,6 @@ // using System; -using System.Runtime.InteropServices; -using System.Threading; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/FrameID.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/FrameID.cs index cb5b5c5bfb..b42701002c 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/FrameID.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/FrameID.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Threading; - -using Debugger.Wrappers.CorDebug; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs index 453bcee4ba..55531caf04 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.Runtime.InteropServices; -using System.Threading; using Debugger.Wrappers.CorDebug; using Debugger.Wrappers.CorSym; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs index 4758d3cbd7..5c6d33a430 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs @@ -7,8 +7,8 @@ using System; using System.Collections.Generic; -using System.Text; using System.Threading; + using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs index f25bc14834..6883abaa2e 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs @@ -6,10 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Threading; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayValue.cs index 43705bbec1..6bcc5cbe01 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayValue.cs @@ -7,9 +7,6 @@ using System; using System.Collections.Generic; -using System.Collections.Specialized; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; //TODO: Support for lower bound diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CallFunctionEval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CallFunctionEval.cs index a685e80bbe..b67a33bf3a 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CallFunctionEval.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CallFunctionEval.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs index 4581cdb62f..0331752bc2 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; -using System.Collections.Generic; using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewObjectEval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewObjectEval.cs index 3bdb98bf4a..65b2efcfe1 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewObjectEval.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewObjectEval.cs @@ -6,10 +6,6 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewStringEval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewStringEval.cs index e2dd3a088a..b2ba583f9c 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewStringEval.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/NewStringEval.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.InteropServices; - -using Debugger.Wrappers.CorDebug; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullValue.cs index 0058c1572c..76e0bba9bd 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullValue.cs @@ -6,9 +6,6 @@ // using System; -using System.Runtime.InteropServices; - -using Debugger.Wrappers.CorDebug; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs index 74e1befc9e..b976d900dc 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs @@ -6,13 +6,8 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Collections.Specialized; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; -using Debugger.Wrappers.MetaData; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValueClass.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValueClass.cs index d79e0e170a..4369d9a566 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValueClass.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValueClass.cs @@ -6,11 +6,7 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Collections.Specialized; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; using Debugger.Wrappers.MetaData; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PrimitiveValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PrimitiveValue.cs index c910d0f113..71ab8b9dcf 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PrimitiveValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PrimitiveValue.cs @@ -7,8 +7,6 @@ using System; using System.ComponentModel; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableValue.cs index 4e173a62f9..e9ed4c2fbb 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableValue.cs @@ -6,9 +6,6 @@ // using System; -using System.Runtime.InteropServices; - -using Debugger.Wrappers.CorDebug; namespace Debugger { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Value.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Value.cs index cd0faf5beb..d2cb077cf4 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Value.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Value.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; - using Debugger.Wrappers.CorDebug; namespace Debugger diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs index 5da9d6e005..8c2a0af431 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs @@ -9,8 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using Debugger.Wrappers.CorDebug; - namespace Debugger { [Serializable] diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugChain.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugChain.cs index 0e868b69d9..a1fd1a2a08 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugChain.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugChain.cs @@ -8,9 +8,7 @@ namespace Debugger.Wrappers.CorDebug { using System; - using System.Collections.Generic; - - + public partial class ICorDebugChain { uint index; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugFrame.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugFrame.cs index 6742eb9662..fbaf50c801 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugFrame.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorDebug/ICorDebugFrame.cs @@ -8,9 +8,7 @@ namespace Debugger.Wrappers.CorDebug { using System; - using System.Collections.Generic; - - + public partial class ICorDebugFrame { uint index; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorSym/ISymUnmanagedVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorSym/ISymUnmanagedVariable.cs index 05e2bf4af8..17295b94d1 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorSym/ISymUnmanagedVariable.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/CorSym/ISymUnmanagedVariable.cs @@ -8,8 +8,7 @@ namespace Debugger.Wrappers.CorSym { using System; - using System.Runtime.InteropServices; - + public partial class ISymUnmanagedVariable { public string Name { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/FieldProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/FieldProps.cs index b09f904c84..63b99c37d5 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/FieldProps.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/FieldProps.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MetaData.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MetaData.cs index bd4e3b8e29..4f566327d2 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MetaData.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MetaData.cs @@ -7,12 +7,9 @@ using System; using System.Collections.Generic; -using System.Text; -using System.Runtime.InteropServices; - +using Debugger.Interop.MetaData; using Debugger.Wrappers.CorDebug; using Debugger.Wrappers.CorSym; -using Debugger.Interop.MetaData; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MethodProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MethodProps.cs index 6c8f649748..d8c9b00813 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MethodProps.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/MethodProps.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/ParamProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/ParamProps.cs index 9fa7b3360f..de66efa199 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/ParamProps.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/ParamProps.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeDefProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeDefProps.cs index 6f07a77650..7b8479b4e5 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeDefProps.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeDefProps.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeRefProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeRefProps.cs index 7f349a3c2d..8c43051b13 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeRefProps.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/MetaData/TypeRefProps.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace Debugger.Wrappers.MetaData { diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/NativeMethods.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/NativeMethods.cs index 8e6748bd0f..0875dc2ecc 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/NativeMethods.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/NativeMethods.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Runtime.InteropServices; using System.Text; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/Util.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/Util.cs index e54da450ac..6f1c673e0e 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/Util.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Wrappers/Util.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections.Generic; using System.Runtime.InteropServices; namespace Debugger.Wrappers diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Configuration/AssemblyInfo.cs index 76201aedcf..af4681f6ed 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // // Les informations générales relatives à un assembly dépendent de diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsComctl32.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsComctl32.cs index 5c2245c0af..afdb6a9908 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsComctl32.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsComctl32.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.APIs { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsEnums.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsEnums.cs index 0118fe1b30..9feddbf6c0 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsEnums.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsEnums.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.APIs { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsMenu.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsMenu.cs index b86f0591ff..b1d1ea80ec 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsMenu.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsMenu.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.APIs { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsShell.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsShell.cs index c4bba7d92c..f5219d98a1 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsShell.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsShell.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; using System.IO; namespace System.Runtime.InteropServices.APIs diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs index 995314c818..96c55fa011 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.APIs { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsWndProc.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsWndProc.cs index 8ef0c881e8..901d580130 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsWndProc.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsWndProc.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.APIs { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/COMInterfaces.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/COMInterfaces.cs index 40eff12470..79d14809dd 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/COMInterfaces.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/COMInterfaces.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; using System.Text; namespace System.Runtime.InteropServices.APIs diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/Forms/TreeListViewItemsEditor.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/Forms/TreeListViewItemsEditor.cs index a843b01f73..1a0c714d05 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/Forms/TreeListViewItemsEditor.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/Forms/TreeListViewItemsEditor.cs @@ -1,9 +1,6 @@ using System; -using System.Drawing; -using System.Drawing.Design; -using System.Collections; using System.ComponentModel; -using System.Windows.Forms; +using System.Drawing.Design; using System.Windows.Forms.Design; namespace System.Windows.Forms @@ -281,4 +278,4 @@ namespace System.Windows.Forms return(value); } } -} \ No newline at end of file +} diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListView.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListView.cs index bc40e29b5c..f0b8a360bc 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListView.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListView.cs @@ -1,12 +1,10 @@ using System; using System.Collections; using System.ComponentModel; +using System.Diagnostics; using System.Drawing; -using System.Data; -using System.Windows.Forms; using System.Runtime.InteropServices; using System.Runtime.InteropServices.APIs; -using System.Diagnostics; namespace System.Windows.Forms { diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewItem.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewItem.cs index 7eeb744d20..52435067ff 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewItem.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewItem.cs @@ -1,9 +1,8 @@ using System; -using System.Drawing; -using System.Runtime.InteropServices; using System.ComponentModel; -using System.Runtime.InteropServices.APIs; using System.Diagnostics; +using System.Drawing; +using System.Runtime.InteropServices.APIs; namespace System.Windows.Forms { @@ -997,4 +996,4 @@ namespace System.Windows.Forms } #endregion } -} \ No newline at end of file +} diff --git a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewSubItemEdit.cs b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewSubItemEdit.cs index 83c3ffe295..bacac0cf1c 100644 --- a/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewSubItemEdit.cs +++ b/src/AddIns/Misc/Debugger/TreeListView/Project/Src/TreeListView/TreeListViewSubItemEdit.cs @@ -1,11 +1,7 @@ using System; -using System.Collections; -using System.ComponentModel; using System.Drawing; -using System.Data; -using System.Windows.Forms; -using System.Runtime.InteropServices.APIs; using System.Runtime.InteropServices; +using System.Runtime.InteropServices.APIs; namespace System.Windows.Forms { diff --git a/src/AddIns/Misc/FiletypeRegisterer/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/FiletypeRegisterer/Project/Configuration/AssemblyInfo.cs index c1fd304c54..02c421e591 100644 --- a/src/AddIns/Misc/FiletypeRegisterer/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/FiletypeRegisterer/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/FiletypeRegisterer/Project/Src/FiletypeAssociationDoozer.cs b/src/AddIns/Misc/FiletypeRegisterer/Project/Src/FiletypeAssociationDoozer.cs index 3a15969ef0..7f42f5cabc 100644 --- a/src/AddIns/Misc/FiletypeRegisterer/Project/Src/FiletypeAssociationDoozer.cs +++ b/src/AddIns/Misc/FiletypeRegisterer/Project/Src/FiletypeAssociationDoozer.cs @@ -8,6 +8,7 @@ using System; using System.Collections; using System.Collections.Generic; + using ICSharpCode.Core; namespace ICSharpCode.FiletypeRegisterer diff --git a/src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesCommand.cs b/src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesCommand.cs index 9e2712f418..350ca8991f 100644 --- a/src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesCommand.cs +++ b/src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesCommand.cs @@ -8,15 +8,11 @@ using System; using System.Collections.Generic; using System.IO; -using System.Text; using System.Reflection; - -using Microsoft.Win32; +using System.Text; using ICSharpCode.Core; - -using ICSharpCode.SharpDevelop.Gui; - +using Microsoft.Win32; namespace ICSharpCode.FiletypeRegisterer { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/HighlightingEditor/Project/Configuration/AssemblyInfo.cs index afdeb99d03..a1007570f3 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorButton.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorButton.cs index 4593d2b05f..b3b317d216 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorButton.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorButton.cs @@ -6,8 +6,8 @@ // using System; -using System.Windows.Forms; using System.Drawing; +using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorDialog.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorDialog.cs index f55f4db6e0..9d0a247ccf 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorDialog.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/ColorDialog.cs @@ -6,8 +6,8 @@ // using System; -using System.Windows.Forms; using System.Drawing; +using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingColorDialog.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingColorDialog.cs index 4887a21b78..b9985a9f53 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingColorDialog.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingColorDialog.cs @@ -6,13 +6,11 @@ // using System; -using System.Windows.Forms; using System.Reflection; +using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui.XmlForms; - -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes; +using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingDialog.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingDialog.cs index a12cacb77a..9535eecc26 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingDialog.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingDialog.cs @@ -6,14 +6,12 @@ // using System; -using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; +using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui.XmlForms; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes; +using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingPanel.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingPanel.cs index c317736035..968cce18a5 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingPanel.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditHighlightingPanel.cs @@ -6,20 +6,16 @@ // using System; -using System.Drawing; -using System.Windows.Forms; using System.Collections.Generic; using System.IO; +using System.Text; +using System.Windows.Forms; using System.Xml; using System.Xml.Schema; -using System.Text; using ICSharpCode.Core; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; - using ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditorHighlightColor.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditorHighlightColor.cs index 6c13ac9c6a..27ffcbfbb6 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/EditorHighlightColor.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/EditorHighlightColor.cs @@ -6,14 +6,10 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; using System.Collections; +using System.Drawing; using System.Globalization; -using System.IO; using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/AbstractNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/AbstractNode.cs index a6e0e8c443..3511df7419 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/AbstractNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/AbstractNode.cs @@ -7,12 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; - using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { abstract class AbstractNode : TreeNode diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/DigitsNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/DigitsNode.cs index fa406a3d80..63579736a9 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/DigitsNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/DigitsNode.cs @@ -7,9 +7,8 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/EnvironmentNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/EnvironmentNode.cs index a5edb77e0f..8c8b1023d2 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/EnvironmentNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/EnvironmentNode.cs @@ -6,16 +6,14 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Windows.Forms; using System.Drawing; +using System.Windows.Forms; using System.Xml; -using ICSharpCode.TextEditor.Document; using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListNode.cs index 7c6f93cf48..421a7ddc12 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListNode.cs @@ -8,12 +8,10 @@ using System; using System.Collections.Specialized; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using System.Text; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListsNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListsNode.cs index 6fe0fbe4d3..888c0410a1 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListsNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/KeywordListsNode.cs @@ -7,11 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkerNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkerNode.cs index 4b8f09a818..31f5d9e648 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkerNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkerNode.cs @@ -7,11 +7,11 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { class MarkerNode : AbstractNode diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkersNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkersNode.cs index 9a9a19306f..7a91232bd8 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkersNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/MarkersNode.cs @@ -7,11 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/NodeOptionPanel.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/NodeOptionPanel.cs index 13991737c5..e7c3dddd35 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/NodeOptionPanel.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/NodeOptionPanel.cs @@ -6,13 +6,11 @@ // using System; -using System.Collections.Specialized; -using System.Windows.Forms; using System.Drawing; -using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui.XmlForms; +using System.Windows.Forms; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/PropertiesNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/PropertiesNode.cs index 0cd1559b3f..fd7d28e109 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/PropertiesNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/PropertiesNode.cs @@ -8,11 +8,10 @@ using System; using System.Collections; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetNode.cs index b81729b349..e4032015a5 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetNode.cs @@ -7,8 +7,8 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetsNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetsNode.cs index 8530c34a30..af22a80a70 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetsNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/RuleSetsNode.cs @@ -7,10 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SchemeNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SchemeNode.cs index 4755c30986..f5512ae39f 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SchemeNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SchemeNode.cs @@ -7,10 +7,7 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.Collections; using System.Xml; -using System.Xml.Schema; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpanNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpanNode.cs index 0bfb0373a0..12e21ec1cb 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpanNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpanNode.cs @@ -7,11 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpansNode.cs b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpansNode.cs index c167ae1a5b..ccbf27556a 100644 --- a/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpansNode.cs +++ b/src/AddIns/Misc/HighlightingEditor/Project/Src/Nodes/SpansNode.cs @@ -7,11 +7,10 @@ using System; using System.Windows.Forms; -using System.Drawing; using System.Xml; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.AddIns.HighlightingEditor.Nodes { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/HtmlHelp2/Project/Configuration/AssemblyInfo.cs index ffc4e1f1c5..e1ddd50525 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; using System.Security.Permissions; // Information about this assembly is defined by the following diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/DynamicHelpPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/DynamicHelpPad.cs index 6dec1bf545..2205dee6a6 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/DynamicHelpPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/DynamicHelpPad.cs @@ -12,20 +12,20 @@ namespace HtmlHelp2 using System.Collections.Specialized; using System.Drawing; using System.Globalization; + using System.Reflection; using System.Security.Permissions; using System.Windows.Forms; - using System.Reflection; + + using HtmlHelp2.Environment; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; - using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Dom; + using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.TextEditor; - using HtmlHelp2.Environment; using MSHelpServices; - public class ShowDynamicHelpMenuCommand : AbstractMenuCommand { public override void Run() diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/FavoritesPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/FavoritesPad.cs index 8266da6834..31f81a933b 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/FavoritesPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/FavoritesPad.cs @@ -9,15 +9,13 @@ namespace HtmlHelp2 { using System; using System.Drawing; - using System.Reflection; using System.Windows.Forms; using System.Xml; - using System.Collections; + + using HtmlHelp2.Environment; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - using HtmlHelp2.Environment; - public class ShowFavoritesMenuCommand : AbstractMenuCommand { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexPad.cs index da372655d9..e8278362da 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexPad.cs @@ -11,14 +11,14 @@ namespace HtmlHelp2 using System.Drawing; using System.Security.Permissions; using System.Windows.Forms; + + using AxMSHelpControls; + using HtmlHelp2.Environment; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - using AxMSHelpControls; using MSHelpControls; using MSHelpServices; - using HtmlHelp2.Environment; - public class ShowIndexMenuCommand : AbstractMenuCommand { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexResultsPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexResultsPad.cs index 18dbb1d9b3..9e4ed57701 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexResultsPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/IndexResultsPad.cs @@ -11,12 +11,11 @@ namespace HtmlHelp2 using System.Collections; using System.Globalization; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using MSHelpServices; - using HtmlHelp2.Environment; - public class ShowIndexResultsMenuCommand : AbstractMenuCommand { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchPad.cs index 978c579c8e..d3396d078e 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchPad.cs @@ -11,14 +11,14 @@ namespace HtmlHelp2 using System.Drawing; using System.Globalization; using System.Windows.Forms; + + using HtmlHelp2.Environment; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; - using HtmlHelp2.Environment; using MSHelpServices; - public class ShowSearchMenuCommand : AbstractMenuCommand { public override void Run() diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchResultsPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchResultsPad.cs index 1f66480d80..dd6e710aca 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchResultsPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/SearchResultsPad.cs @@ -11,12 +11,11 @@ namespace HtmlHelp2 using System.Collections; using System.Globalization; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using MSHelpServices; - using HtmlHelp2.Environment; - public class HtmlHelp2SearchResultsView : UserControl { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/TocPad.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/TocPad.cs index b1559f354c..259aaf7759 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/TocPad.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BaseControls/TocPad.cs @@ -11,17 +11,16 @@ namespace HtmlHelp2 using System.Drawing; using System.Security.Permissions; using System.Windows.Forms; + + using AxMSHelpControls; + using HtmlHelp2.Environment; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - using AxMSHelpControls; using MSHelpControls; - using MSHelpServices; - using HtmlHelp2.Environment; using PrintOptions = MSHelpServices.HxHierarchy_PrintNode_Options; using TSC = MSHelpControls.HxTreeStyleConstant; - public class ShowTocMenuCommand : AbstractMenuCommand { public override void Run() diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/HelpBrowserCommands.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/HelpBrowserCommands.cs index 9a3543833d..ba241d1a15 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/HelpBrowserCommands.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/HelpBrowserCommands.cs @@ -6,14 +6,12 @@ // using System; -using System.Drawing; using System.Security.Permissions; using System.Windows.Forms; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.BrowserDisplayBinding; +using ICSharpCode.SharpDevelop.Gui; namespace HtmlHelp2 { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/ShowHelpBrowser.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/ShowHelpBrowser.cs index da214d239c..ea978da8d7 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/ShowHelpBrowser.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserControl/ShowHelpBrowser.cs @@ -11,8 +11,8 @@ namespace HtmlHelp2 using System; using System.Security.Permissions; - using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.BrowserDisplayBinding; + using ICSharpCode.SharpDevelop.Gui; using MSHelpServices; public static class ShowHelpBrowser diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserScheme.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserScheme.cs index e61b7c5dc4..1d7acb8dcf 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserScheme.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/BrowserScheme.cs @@ -7,14 +7,12 @@ using System; using System.Collections.Generic; -using System.Globalization; -using System.Security.Permissions; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.BrowserDisplayBinding; + using HtmlHelp2.Environment; using HtmlHelp2.JScriptGlobals; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.BrowserDisplayBinding; namespace HtmlHelp2 { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/MsHelpProvider.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/MsHelpProvider.cs index 43cce5fcc5..9755c665f9 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/MsHelpProvider.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/MsHelpProvider.cs @@ -11,7 +11,6 @@ namespace HtmlHelp2 using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - using ICSharpCode.SharpDevelop.Dom; public class MSHelpProvider : HelpProvider { diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/Help2RegistryWalker.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/Help2RegistryWalker.cs index b8ac116d3a..33276f1195 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/Help2RegistryWalker.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/Help2RegistryWalker.cs @@ -10,7 +10,7 @@ namespace HtmlHelp2.Environment using System; using System.Runtime.InteropServices; using System.Windows.Forms; - using ICSharpCode.Core; + using MSHelpServices; public sealed class Help2RegistryWalker diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Options.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Options.cs index c223bca177..14f3040d2f 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Options.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Options.cs @@ -8,14 +8,9 @@ namespace HtmlHelp2.Environment { using System; - using System.Drawing; - using System.Diagnostics; - using System.Collections; - using System.IO; - using System.Reflection; using System.Windows.Forms; using System.Xml.Serialization; - using ICSharpCode.Core; + using ICSharpCode.SharpDevelop.Gui; public class HtmlHelp2OptionsPanel : AbstractOptionPanel diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Service.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Service.cs index e741ed9e4e..cbdcbe3b0c 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Service.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/HtmlHelp2Service.cs @@ -11,8 +11,8 @@ namespace HtmlHelp2.Environment using System.Globalization; using System.IO; using System.Windows.Forms; - using System.Xml; using System.Xml.Serialization; + using ICSharpCode.Core; using MSHelpServices; diff --git a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/SharpDevLanguageClass.cs b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/SharpDevLanguageClass.cs index 89ae822f5c..8b579f6e80 100644 --- a/src/AddIns/Misc/HtmlHelp2/Project/src/Service/SharpDevLanguageClass.cs +++ b/src/AddIns/Misc/HtmlHelp2/Project/src/Service/SharpDevLanguageClass.cs @@ -9,7 +9,6 @@ namespace HtmlHelp2.Environment { using System; using System.Collections.Generic; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Project; using MSHelpServices; diff --git a/src/AddIns/Misc/MonoAddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/MonoAddIn/Project/Configuration/AssemblyInfo.cs index ceff2d6466..02960481ae 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/AddMonoReferenceCommand.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/AddMonoReferenceCommand.cs index 2d42839d2a..024afb634d 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/AddMonoReferenceCommand.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/AddMonoReferenceCommand.cs @@ -5,13 +5,10 @@ // $Revision$ // -using ICSharpCode.Build.Tasks; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using System; -using System.IO; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.MonoAddIn { diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/IsMonoInstalledCondition.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/IsMonoInstalledCondition.cs index a9043e9438..3794f1fd9c 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/IsMonoInstalledCondition.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/IsMonoInstalledCondition.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Build.Tasks; using ICSharpCode.Core; -using System; namespace ICSharpCode.MonoAddIn { diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs index 5bdefdb703..8831467121 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs @@ -5,12 +5,13 @@ // $Revision$ // -using ICSharpCode.Build.Tasks; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Collections.Generic; using System.Windows.Forms; +using ICSharpCode.Build.Tasks; +using ICSharpCode.SharpDevelop.Gui; + namespace ICSharpCode.MonoAddIn { public class MonoGacReferencePanel : GacReferencePanel diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoProjectContentRegistry.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoProjectContentRegistry.cs index c9f2efdc21..570ef833f9 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoProjectContentRegistry.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoProjectContentRegistry.cs @@ -7,9 +7,9 @@ using System; using System.IO; +using ICSharpCode.Build.Tasks; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.Build.Tasks; namespace ICSharpCode.MonoAddIn { diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/SelectMonoReferenceDialog.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/SelectMonoReferenceDialog.cs index 61f99c0dfc..172b5868a2 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/SelectMonoReferenceDialog.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/SelectMonoReferenceDialog.cs @@ -5,18 +5,17 @@ // $Revision$ // -using ICSharpCode.Build.Tasks; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using System; +using System.Collections; using System.Collections.Generic; -using System.Drawing; using System.IO; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; +using ICSharpCode.Build.Tasks; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.MonoAddIn { public class SelectMonoReferenceDialog : System.Windows.Forms.Form, ISelectReferenceDialog diff --git a/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs index 918ba13d66..c427d2eb0a 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/AddInOptions.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/AddInOptions.cs index 706b460c92..c5e437d129 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/AddInOptions.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/AddInOptions.cs @@ -5,12 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Diagnostics; -using System.IO; -using System.Reflection; +using ICSharpCode.Core; namespace ICSharpCode.NAntAddIn { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/AbstractRunNAntCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/AbstractRunNAntCommand.cs index 8df7ed52da..050c0d6e1d 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/AbstractRunNAntCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/AbstractRunNAntCommand.cs @@ -5,17 +5,16 @@ // $Revision$ // +using System; +using System.ComponentModel; +using System.IO; + using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using ICSharpCode.NAntAddIn.Gui; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Util; -using System; -using System.ComponentModel; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToErrorCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToErrorCommand.cs index 80730fdf66..bb4ec7fcdb 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToErrorCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToErrorCommand.cs @@ -5,13 +5,11 @@ // $Revision$ // +using System; +using System.IO; using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using ICSharpCode.NAntAddIn.Gui; using ICSharpCode.SharpDevelop; -using System; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToTargetDefinitionCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToTargetDefinitionCommand.cs index a4d66b092c..a3a33e3b64 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToTargetDefinitionCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/GoToTargetDefinitionCommand.cs @@ -5,13 +5,11 @@ // $Revision$ // +using System; +using System.IO; using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using ICSharpCode.NAntAddIn.Gui; using ICSharpCode.SharpDevelop; -using System; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/OpenNAntBuildFileCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/OpenNAntBuildFileCommand.cs index 603f29b08e..570a10c095 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/OpenNAntBuildFileCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/OpenNAntBuildFileCommand.cs @@ -5,13 +5,11 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.NAntAddIn; -using ICSharpCode.NAntAddIn.Gui; using System; using System.IO; -using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.NAntAddIn.Gui; +using ICSharpCode.SharpDevelop; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RefreshNantPadCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RefreshNantPadCommand.cs index c1d22987f1..a426b94a2e 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RefreshNantPadCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RefreshNantPadCommand.cs @@ -5,11 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; -using ICSharpCode.NAntAddIn.Gui; using System; -using System.IO; +using ICSharpCode.NAntAddIn.Gui; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCleanTargetCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCleanTargetCommand.cs index 0558e032cd..81bc61bfed 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCleanTargetCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCleanTargetCommand.cs @@ -5,11 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using System; -using System.Collections; using System.IO; +using ICSharpCode.Core; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCommand.cs index e091fba338..45040a26e1 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunNAntCommand.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using System; using System.IO; +using ICSharpCode.Core; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunSelectedNAntTargetCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunSelectedNAntTargetCommand.cs index ff9ada416e..669842e3f1 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunSelectedNAntTargetCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/RunSelectedNAntTargetCommand.cs @@ -5,11 +5,9 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.NAntAddIn.Gui; -using System; -using System.IO; -using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/StopNAntCommand.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/StopNAntCommand.cs index f13252544b..9ef56b12e1 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/StopNAntCommand.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Commands/StopNAntCommand.cs @@ -5,10 +5,7 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; using System; -using System.IO; namespace ICSharpCode.NAntAddIn.Commands { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntAddInOptionPanel.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntAddInOptionPanel.cs index 23c881be76..220c0e0ad4 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntAddInOptionPanel.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntAddInOptionPanel.cs @@ -6,16 +6,9 @@ // using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; namespace ICSharpCode.NAntAddIn.Gui { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileErrorTreeNode.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileErrorTreeNode.cs index 85ef20a907..c7e237eb0e 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileErrorTreeNode.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileErrorTreeNode.cs @@ -5,9 +5,7 @@ // $Revision$ // -using ICSharpCode.NAntAddIn; using System; -using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Gui diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileTreeNode.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileTreeNode.cs index 24279de2be..f3c275b40f 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileTreeNode.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildFileTreeNode.cs @@ -5,9 +5,7 @@ // $Revision$ // -using ICSharpCode.NAntAddIn; using System; -using System.Drawing; using System.IO; using System.Text; using System.Windows.Forms; diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildTargetTreeNode.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildTargetTreeNode.cs index 975aee3818..9aefb7ff10 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildTargetTreeNode.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntBuildTargetTreeNode.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.NAntAddIn; using System; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadContent.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadContent.cs index 4d0c4996b4..bbc62ef4d5 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadContent.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadContent.cs @@ -5,14 +5,12 @@ // $Revision$ // +using System; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; -using ICSharpCode.NAntAddIn.Commands; +using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop; -using System; -using System.Windows.Forms; namespace ICSharpCode.NAntAddIn.Gui { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadTreeView.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadTreeView.cs index ee81f3fa39..9442a007bd 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadTreeView.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/Gui/NAntPadTreeView.cs @@ -5,17 +5,15 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.NAntAddIn; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Project; using System; -using System.ComponentModel; using System.Diagnostics; -using System.Drawing; using System.IO; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.NAntAddIn.Gui { /// diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/IsNAntRunningCondition.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/IsNAntRunningCondition.cs index adcfb48587..cf3f713703 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/IsNAntRunningCondition.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/IsNAntRunningCondition.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.NAntAddIn { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/NAntOutputParser.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/NAntOutputParser.cs index 5493ff20b8..3f8eeb097d 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/NAntOutputParser.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/NAntOutputParser.cs @@ -5,12 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.IO; using System.Text.RegularExpressions; +using ICSharpCode.SharpDevelop; + namespace ICSharpCode.NAntAddIn { /// diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs index f25c3215b4..7523e9468c 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Util; using System; -using System.Diagnostics; using System.Text; +using ICSharpCode.SharpDevelop.Util; namespace ICSharpCode.NAntAddIn { diff --git a/src/AddIns/Misc/NAntAddIn/Project/Src/TaskCollection.cs b/src/AddIns/Misc/NAntAddIn/Project/Src/TaskCollection.cs index 0dee11c7f2..a05ea83cf6 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Src/TaskCollection.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Src/TaskCollection.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Collections; +using ICSharpCode.SharpDevelop; namespace ICSharpCode.NAntAddIn { diff --git a/src/AddIns/Misc/PInvokeAddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/PInvokeAddIn/Project/Configuration/AssemblyInfo.cs index e344c6332f..b1990d8099 100644 --- a/src/AddIns/Misc/PInvokeAddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/PInvokeAddIn/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesCommand.cs b/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesCommand.cs index 7355be8a35..79c033985e 100644 --- a/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesCommand.cs +++ b/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesCommand.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; using ICSharpCode.Core; namespace ICSharpCode.PInvokeAddIn diff --git a/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesForm.cs b/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesForm.cs index 1587ab61f2..b12412871b 100644 --- a/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesForm.cs +++ b/src/AddIns/Misc/PInvokeAddIn/Project/Src/InsertPInvokeSignaturesForm.cs @@ -5,18 +5,18 @@ // $Revision$ // +using System; +using System.Diagnostics; +using System.IO; +using System.Text; +using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.PInvokeAddIn.WebServices; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.TextEditor; -using System; -using System.IO; -using System.Text; -using System.Windows.Forms; -using System.Diagnostics; namespace ICSharpCode.PInvokeAddIn { diff --git a/src/AddIns/Misc/PInvokeAddIn/Project/Src/PInvokeCodeGenerator.cs b/src/AddIns/Misc/PInvokeAddIn/Project/Src/PInvokeCodeGenerator.cs index 8b98495e21..1bfa08a49d 100644 --- a/src/AddIns/Misc/PInvokeAddIn/Project/Src/PInvokeCodeGenerator.cs +++ b/src/AddIns/Misc/PInvokeAddIn/Project/Src/PInvokeCodeGenerator.cs @@ -5,11 +5,11 @@ // $Revision$ // +using System; using ICSharpCode.Core; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; using ICSharpCode.TextEditor.Document; -using System; namespace ICSharpCode.PInvokeAddIn { diff --git a/src/AddIns/Misc/PInvokeAddIn/Project/Src/WebReferences/PInvokeService.cs b/src/AddIns/Misc/PInvokeAddIn/Project/Src/WebReferences/PInvokeService.cs index c5ceb02aa0..4fac1f53a1 100644 --- a/src/AddIns/Misc/PInvokeAddIn/Project/Src/WebReferences/PInvokeService.cs +++ b/src/AddIns/Misc/PInvokeAddIn/Project/Src/WebReferences/PInvokeService.cs @@ -12,14 +12,8 @@ // This source code was auto-generated by wsdl, Version=2.0.50727.42. // namespace ICSharpCode.PInvokeAddIn.WebServices { - using System.Diagnostics; - using System.Web.Services; - using System.ComponentModel; - using System.Web.Services.Protocols; - using System; - using System.Xml.Serialization; - - + using System; + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] [System.Diagnostics.DebuggerStepThroughAttribute()] diff --git a/src/AddIns/Misc/RegExpTk/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/RegExpTk/Project/Configuration/AssemblyInfo.cs index f3d1dbc4e7..4d49e21176 100644 --- a/src/AddIns/Misc/RegExpTk/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/RegExpTk/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/GroupForm.cs b/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/GroupForm.cs index a24479f10f..051f841978 100644 --- a/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/GroupForm.cs +++ b/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/GroupForm.cs @@ -6,9 +6,8 @@ // using System; -using System.Collections; -using System.Windows.Forms; using System.Text.RegularExpressions; +using System.Windows.Forms; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/MainWindow.cs b/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/MainWindow.cs index 511f051605..29dac6bcff 100644 --- a/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/MainWindow.cs +++ b/src/AddIns/Misc/RegExpTk/Project/Src/Dialogs/MainWindow.cs @@ -10,15 +10,15 @@ using System; using System.Collections.Generic; -using System.Windows.Forms; -using System.Text.RegularExpressions; using System.Drawing; -using System.Reflection; using System.IO; +using System.Reflection; +using System.Text.RegularExpressions; +using System.Windows.Forms; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.XmlForms; -using ICSharpCode.Core; namespace Plugins.RegExpTk { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/ResourceToolkit/Project/Configuration/AssemblyInfo.cs index c88b5563e3..aa908b4203 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Configuration/AssemblyInfo.cs @@ -7,9 +7,6 @@ using System; using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Resources; using System.Security.Permissions; // Information about this assembly is defined by the following diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/AbstractNRefactoryResourceCodeCompletionBinding.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/AbstractNRefactoryResourceCodeCompletionBinding.cs index 713f933375..f18b62b80f 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/AbstractNRefactoryResourceCodeCompletionBinding.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/AbstractNRefactoryResourceCodeCompletionBinding.cs @@ -6,14 +6,9 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.NRefactory.PrettyPrinter; -using ICSharpCode.TextEditor.Gui.CompletionWindow; - using Hornung.ResourceToolkit.Resolver; +using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace Hornung.ResourceToolkit.CodeCompletion { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/CSharpResourceCodeCompletionBinding.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/CSharpResourceCodeCompletionBinding.cs index 0f9b6f3f47..3253ec75f3 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/CSharpResourceCodeCompletionBinding.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/CSharpResourceCodeCompletionBinding.cs @@ -6,10 +6,8 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace Hornung.ResourceToolkit.CodeCompletion { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ICSharpCodeCoreResourceCodeCompletionBinding.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ICSharpCodeCoreResourceCodeCompletionBinding.cs index cf594460f8..21037ca5fd 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ICSharpCodeCoreResourceCodeCompletionBinding.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ICSharpCodeCoreResourceCodeCompletionBinding.cs @@ -6,14 +6,10 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor.Gui.CompletionWindow; - using Hornung.ResourceToolkit.Resolver; using Hornung.ResourceToolkit.ResourceFileContent; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace Hornung.ResourceToolkit.CodeCompletion { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/NewResourceCodeCompletionData.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/NewResourceCodeCompletionData.cs index 3dfc8adadf..0cbb88ee76 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/NewResourceCodeCompletionData.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/NewResourceCodeCompletionData.cs @@ -8,13 +8,13 @@ using System; using System.Globalization; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.NRefactory.PrettyPrinter; -using ICSharpCode.TextEditor; using Hornung.ResourceToolkit.Gui; using Hornung.ResourceToolkit.ResourceFileContent; +using ICSharpCode.Core; +using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.TextEditor; namespace Hornung.ResourceToolkit.CodeCompletion { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionData.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionData.cs index 95a762996e..97bd6b7a43 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionData.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionData.cs @@ -6,13 +6,9 @@ // using System; -using System.Collections.Generic; -using System.Globalization; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.NRefactory.Ast; using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionDataProvider.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionDataProvider.cs index 49bbb545c8..80460d6270 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionDataProvider.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/ResourceCodeCompletionDataProvider.cs @@ -7,14 +7,11 @@ using System; using System.Collections.Generic; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.TextEditor.Gui.CompletionWindow; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.CodeCompletion { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/VBNetResourceCodeCompletionBinding.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/VBNetResourceCodeCompletionBinding.cs index 41d5b231a7..267fa57954 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/VBNetResourceCodeCompletionBinding.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/CodeCompletion/VBNetResourceCodeCompletionBinding.cs @@ -6,10 +6,8 @@ // using System; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.NRefactory.PrettyPrinter; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace Hornung.ResourceToolkit.CodeCompletion { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/RefactoringCommands.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/RefactoringCommands.cs index 7363f7cc49..5db85cd5ae 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/RefactoringCommands.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/RefactoringCommands.cs @@ -7,14 +7,12 @@ using System; using System.Collections.Generic; - +using Hornung.ResourceToolkit.Gui; +using Hornung.ResourceToolkit.Refactoring; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Refactoring; -using Hornung.ResourceToolkit.Gui; -using Hornung.ResourceToolkit.Refactoring; - namespace Hornung.ResourceToolkit.Commands { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/TextEditorContextMenuBuilder.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/TextEditorContextMenuBuilder.cs index 9b0ecd78fb..c6bf6dca31 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/TextEditorContextMenuBuilder.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Commands/TextEditorContextMenuBuilder.cs @@ -10,16 +10,14 @@ using System.Collections.Generic; using System.Globalization; using System.Windows.Forms; +using Hornung.ResourceToolkit.Gui; +using Hornung.ResourceToolkit.Refactoring; +using Hornung.ResourceToolkit.Resolver; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Refactoring; using ICSharpCode.TextEditor; -using Hornung.ResourceToolkit.Gui; -using Hornung.ResourceToolkit.Refactoring; -using Hornung.ResourceToolkit.Resolver; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Commands { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/EditStringResourceDialog.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/EditStringResourceDialog.cs index 293f5f4906..1b0697b47d 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/EditStringResourceDialog.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/EditStringResourceDialog.cs @@ -8,10 +8,10 @@ using System; using System.ComponentModel; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using Hornung.ResourceToolkit.ResourceFileContent; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace Hornung.ResourceToolkit.Gui { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysCommands.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysCommands.cs index 30e48f2817..b06d1d677e 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysCommands.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysCommands.cs @@ -6,11 +6,8 @@ // using System; -using System.Collections.Generic; - -using ICSharpCode.Core; - using Hornung.ResourceToolkit.Resolver; +using ICSharpCode.Core; namespace Hornung.ResourceToolkit.Gui { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysViewContent.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysViewContent.cs index 486ad486bb..31f4969b17 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysViewContent.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Gui/UnusedResourceKeysViewContent.cs @@ -7,16 +7,14 @@ using System; using System.Collections.Generic; -using System.Drawing; using System.Globalization; using System.IO; using System.Windows.Forms; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Gui { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/ResourceRefactoringService.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/ResourceRefactoringService.cs index b5224e4f19..d22c5206be 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/ResourceRefactoringService.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/ResourceRefactoringService.cs @@ -10,6 +10,8 @@ using System.Collections.Generic; using System.Drawing; using System.IO; +using Hornung.ResourceToolkit.Resolver; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop; @@ -18,9 +20,6 @@ using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Refactoring; using ICSharpCode.TextEditor.Document; -using Hornung.ResourceToolkit.Resolver; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Refactoring { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/SpecificResourceReferenceFinder.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/SpecificResourceReferenceFinder.cs index bad0467907..7b5caf9f12 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/SpecificResourceReferenceFinder.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Refactoring/SpecificResourceReferenceFinder.cs @@ -6,10 +6,8 @@ // using System; - -using ICSharpCode.Core; - using Hornung.ResourceToolkit.Resolver; +using ICSharpCode.Core; namespace Hornung.ResourceToolkit.Refactoring { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/BclNRefactoryResourceResolver.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/BclNRefactoryResourceResolver.cs index d3885a7833..88abf7ee8a 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/BclNRefactoryResourceResolver.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/BclNRefactoryResourceResolver.cs @@ -7,17 +7,13 @@ using System; using System.Collections.Generic; -using System.IO; - +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; -using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Parser; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; - -using Hornung.ResourceToolkit.ResourceFileContent; +using ICSharpCode.NRefactory; namespace Hornung.ResourceToolkit.Resolver { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreNRefactoryResourceResolver.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreNRefactoryResourceResolver.cs index daf03ef540..786db0a65d 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreNRefactoryResourceResolver.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreNRefactoryResourceResolver.cs @@ -7,14 +7,11 @@ using System; using System.Collections.Generic; -using System.IO; - +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop.Dom; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Resolver { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreResourceResolver.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreResourceResolver.cs index 4093588d69..ba8b7d526f 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreResourceResolver.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ICSharpCodeCoreResourceResolver.cs @@ -10,12 +10,11 @@ using System.Collections.Generic; using System.IO; using System.Text; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.TextEditor.Document; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Resolver { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryAstCacheService.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryAstCacheService.cs index 98889bf2d4..00617d5fe3 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryAstCacheService.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryAstCacheService.cs @@ -12,7 +12,6 @@ using System.IO; using ICSharpCode.Core; using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Parser; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.NRefactoryResolver; diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryResourceResolver.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryResourceResolver.cs index e325b5a7c2..af2fdd9a68 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryResourceResolver.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/NRefactoryResourceResolver.cs @@ -10,17 +10,15 @@ using System.Collections.Generic; using System.Globalization; using System.IO; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Parser; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.TextEditor.Document; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit.Resolver { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PositionTrackingAstVisitor.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PositionTrackingAstVisitor.cs index 9ff675c6a7..535c6ad105 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PositionTrackingAstVisitor.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PositionTrackingAstVisitor.cs @@ -7,12 +7,9 @@ using System; using System.Collections.Generic; -using System.Drawing; - using ICSharpCode.Core; using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; namespace Hornung.ResourceToolkit.Resolver diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PropertyFieldAssociationVisitor.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PropertyFieldAssociationVisitor.cs index 10d1a3a6d0..29c6cdd919 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PropertyFieldAssociationVisitor.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/PropertyFieldAssociationVisitor.cs @@ -6,10 +6,8 @@ // using System; - using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; namespace Hornung.ResourceToolkit.Resolver diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ResourceResolveResult.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ResourceResolveResult.cs index ed17274fd1..f3f4607524 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ResourceResolveResult.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/Resolver/ResourceResolveResult.cs @@ -6,10 +6,8 @@ // using System; - -using ICSharpCode.SharpDevelop.Dom; - using Hornung.ResourceToolkit.ResourceFileContent; +using ICSharpCode.SharpDevelop.Dom; namespace Hornung.ResourceToolkit.Resolver { diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceFileContent/ResourceFileContentRegistry.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceFileContent/ResourceFileContentRegistry.cs index c167e3bcff..2437d14ff3 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceFileContent/ResourceFileContentRegistry.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceFileContent/ResourceFileContentRegistry.cs @@ -7,8 +7,6 @@ using System; using System.Collections.Generic; -using System.IO; - using ICSharpCode.Core; namespace Hornung.ResourceToolkit.ResourceFileContent diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceResolverService.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceResolverService.cs index 0c0eed19b3..bcc195c73e 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceResolverService.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/ResourceResolverService.cs @@ -9,13 +9,12 @@ using System; using System.Collections.Generic; using System.Text; +using Hornung.ResourceToolkit.Resolver; +using Hornung.ResourceToolkit.ResourceFileContent; using ICSharpCode.Core; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using Hornung.ResourceToolkit.Resolver; -using Hornung.ResourceToolkit.ResourceFileContent; - namespace Hornung.ResourceToolkit { /// diff --git a/src/AddIns/Misc/ResourceToolkit/Project/Src/ToolTips/ResourceToolTipProvider.cs b/src/AddIns/Misc/ResourceToolkit/Project/Src/ToolTips/ResourceToolTipProvider.cs index 610970cedb..a328839b0b 100644 --- a/src/AddIns/Misc/ResourceToolkit/Project/Src/ToolTips/ResourceToolTipProvider.cs +++ b/src/AddIns/Misc/ResourceToolkit/Project/Src/ToolTips/ResourceToolTipProvider.cs @@ -7,15 +7,11 @@ using System; using System.Drawing; -using System.Windows.Forms; - -using ICSharpCode.Core; +using Hornung.ResourceToolkit.Resolver; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using Hornung.ResourceToolkit.Resolver; - namespace Hornung.ResourceToolkit.ToolTips { /// diff --git a/src/AddIns/Misc/SharpQuery/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpQuery/Configuration/AssemblyInfo.cs index 9791626016..a9a3582f44 100644 --- a/src/AddIns/Misc/SharpQuery/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpQuery/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQueryCommand.cs b/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQueryCommand.cs index 03f4442a73..cb150026d0 100644 --- a/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQueryCommand.cs +++ b/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQueryCommand.cs @@ -6,9 +6,8 @@ // using System; -using SharpQuery.Gui.TreeView; -using ICSharpCode.SharpDevelop; using ICSharpCode.Core; +using SharpQuery.Gui.TreeView; namespace SharpQuery.Commands { diff --git a/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQuerySchemaClass.cs b/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQuerySchemaClass.cs index 964b8adec1..31e98a440d 100644 --- a/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQuerySchemaClass.cs +++ b/src/AddIns/Misc/SharpQuery/Src/AbstractSharpQuerySchemaClass.cs @@ -6,12 +6,9 @@ // using System; -using System.Collections; -using System.Data; using System.Windows.Forms; using SharpQuery.Collections; using SharpQuery.Connection; -using System.ComponentModel; namespace SharpQuery.SchemaClass { diff --git a/src/AddIns/Misc/SharpQuery/Src/Connection/ADOConnectionWrapper.cs b/src/AddIns/Misc/SharpQuery/Src/Connection/ADOConnectionWrapper.cs index 5922861f3f..0020e70868 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Connection/ADOConnectionWrapper.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Connection/ADOConnectionWrapper.cs @@ -6,11 +6,12 @@ // using System; -using System.Data.OleDb; using System.Data; +using System.Data.OleDb; + using SharpQuery.Collections; -using SharpQuery.SchemaClass; using SharpQuery.Exceptions; +using SharpQuery.SchemaClass; namespace SharpQuery.Connection { diff --git a/src/AddIns/Misc/SharpQuery/Src/Connection/AbstractSharpQueryConnectionWrapper.cs b/src/AddIns/Misc/SharpQuery/Src/Connection/AbstractSharpQueryConnectionWrapper.cs index 7515eb9f41..5c195b485a 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Connection/AbstractSharpQueryConnectionWrapper.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Connection/AbstractSharpQueryConnectionWrapper.cs @@ -8,10 +8,11 @@ using System; using System.Collections.Generic; using System.Data; + using ICSharpCode.Core; using SharpQuery.Collections; -using SharpQuery.SchemaClass; using SharpQuery.Exceptions; +using SharpQuery.SchemaClass; namespace SharpQuery.Connection { diff --git a/src/AddIns/Misc/SharpQuery/Src/Connection/IConnection.cs b/src/AddIns/Misc/SharpQuery/Src/Connection/IConnection.cs index 2cfb83b234..91e9d5bbd2 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Connection/IConnection.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Connection/IConnection.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System.Data; using SharpQuery.Collections; using SharpQuery.SchemaClass; -using System.Data; namespace SharpQuery.Connection { diff --git a/src/AddIns/Misc/SharpQuery/Src/Connection/OLEDBConnectionWrapper.cs b/src/AddIns/Misc/SharpQuery/Src/Connection/OLEDBConnectionWrapper.cs index dc92a2d591..8fa8d80741 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Connection/OLEDBConnectionWrapper.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Connection/OLEDBConnectionWrapper.cs @@ -6,11 +6,12 @@ // using System; -using System.Data.OleDb; using System.Data; +using System.Data.OleDb; + using SharpQuery.Collections; -using SharpQuery.SchemaClass; using SharpQuery.Exceptions; +using SharpQuery.SchemaClass; namespace SharpQuery.Connection { diff --git a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ConnectionStringException.cs b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ConnectionStringException.cs index 61aa49c3dc..ef08f65367 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ConnectionStringException.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ConnectionStringException.cs @@ -6,9 +6,9 @@ // using System; +using System.Runtime.Serialization; using ICSharpCode.Core; using SharpQuery.SchemaClass; -using System.Runtime.Serialization; namespace SharpQuery.Exceptions { diff --git a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteProcedureException.cs b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteProcedureException.cs index 6a2b96d74f..508f19150f 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteProcedureException.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteProcedureException.cs @@ -6,9 +6,9 @@ // using System; +using System.Runtime.Serialization; using ICSharpCode.Core; using SharpQuery.SchemaClass; -using System.Runtime.Serialization; namespace SharpQuery.Exceptions { diff --git a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteSQLException.cs b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteSQLException.cs index 9d3119fff3..6efa474025 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteSQLException.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Exceptions/ExecuteSQLException.cs @@ -6,9 +6,9 @@ // using System; +using System.Runtime.Serialization; using ICSharpCode.Core; using SharpQuery.SchemaClass; -using System.Runtime.Serialization; namespace SharpQuery.Exceptions { diff --git a/src/AddIns/Misc/SharpQuery/Src/Exceptions/OpenConnectionException.cs b/src/AddIns/Misc/SharpQuery/Src/Exceptions/OpenConnectionException.cs index c9586c72a9..54f27f49a3 100644 --- a/src/AddIns/Misc/SharpQuery/Src/Exceptions/OpenConnectionException.cs +++ b/src/AddIns/Misc/SharpQuery/Src/Exceptions/OpenConnectionException.cs @@ -6,9 +6,9 @@ // using System; +using System.Runtime.Serialization; using ICSharpCode.Core; using SharpQuery.SchemaClass; -using System.Runtime.Serialization; namespace SharpQuery.Exceptions { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/AbstractSharpQueryNode.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/AbstractSharpQueryNode.cs index 3ca0d54328..612b6e9c44 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/AbstractSharpQueryNode.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/AbstractSharpQueryNode.cs @@ -6,17 +6,17 @@ // using System; -using System.Windows.Forms; -using System.Reflection; using System.Collections.Generic; -using System.Data; using System.ComponentModel; -using SharpQuery.Collections; +using System.Reflection; +using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using SharpQuery.SchemaClass; +using SharpQuery.Collections; using SharpQuery.Connection; using SharpQuery.Gui.DataView; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.TreeView { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/ISharpQueryNode.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/ISharpQueryNode.cs index fcd3f88ac2..6ebe8d4d9e 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/ISharpQueryNode.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/ISharpQueryNode.cs @@ -5,9 +5,9 @@ // $Revision$ // -using SharpQuery.SchemaClass; -using SharpQuery.Connection; using SharpQuery.Collections; +using SharpQuery.Connection; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.TreeView { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/SQLParameterInput.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/SQLParameterInput.cs index 0bb1d34a55..14d7eba087 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/SQLParameterInput.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/SQLParameterInput.cs @@ -7,14 +7,12 @@ using System; using System.Data; -using System.Data.OleDb; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using SharpQuery.SchemaClass; -using SharpQuery.Collections; -using System.ComponentModel; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.XmlForms; +using SharpQuery.Collections; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.DataView { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryDataView.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryDataView.cs index 7a12b6535f..c4207fc9ff 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryDataView.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryDataView.cs @@ -8,9 +8,10 @@ using System; using System.Data; using System.Windows.Forms; + using ICSharpCode.SharpDevelop.Gui; -using SharpQuery.SchemaClass; using SharpQuery.Collections; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.DataView { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryPad.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryPad.cs index d49dc6b48f..66ae249744 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryPad.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryPad.cs @@ -7,11 +7,7 @@ using System; using System.Windows.Forms; -using System.Xml; -using System.Xml.Serialization; -using System.IO; using ICSharpCode.SharpDevelop.Gui; -using SharpQuery.Gui; using SharpQuery.Gui.TreeView; //TODO : dans les SharpQueryList faire correspondre les restrictions vec les objets ajoutés diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryDataNodes.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryDataNodes.cs index 45bcde9cb0..4a9db5af4d 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryDataNodes.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryDataNodes.cs @@ -6,14 +6,13 @@ // using System; -using System.Windows.Forms; -using System.Xml; using System.ComponentModel; -using SharpQuery.SchemaClass; +using System.Windows.Forms; + +using ICSharpCode.SharpDevelop.Gui; using SharpQuery.Collections; -using System.Collections; using SharpQuery.Gui.DataView; -using ICSharpCode.SharpDevelop.Gui; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.TreeView { diff --git a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryNodesRoot.cs b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryNodesRoot.cs index 311760c273..55bce1b7de 100644 --- a/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryNodesRoot.cs +++ b/src/AddIns/Misc/SharpQuery/Src/GUI/SharpQueryTree/SharpQueryNodesRoot.cs @@ -8,15 +8,14 @@ // created on 04/11/2003 at 17:29 using System; -using System.Windows.Forms; -using System.Xml; using System.Reflection; +using System.Windows.Forms; + using ICSharpCode.Core; -using SharpQuery.SchemaClass; using SharpQuery.Collections; -using System.Collections; using SharpQuery.Connection; using SharpQuery.Exceptions; +using SharpQuery.SchemaClass; namespace SharpQuery.Gui.TreeView { diff --git a/src/AddIns/Misc/SharpQuery/Src/ISchemaClass.cs b/src/AddIns/Misc/SharpQuery/Src/ISchemaClass.cs index e978fadc01..d0e8a45656 100644 --- a/src/AddIns/Misc/SharpQuery/Src/ISchemaClass.cs +++ b/src/AddIns/Misc/SharpQuery/Src/ISchemaClass.cs @@ -5,8 +5,6 @@ // $Revision$ // -using System.Collections; -using System.Data; using System.Windows.Forms; using SharpQuery.Collections; using SharpQuery.Connection; diff --git a/src/AddIns/Misc/SharpQuery/Src/SharpQuerySchemaClass.cs b/src/AddIns/Misc/SharpQuery/Src/SharpQuerySchemaClass.cs index 52202f6afa..14b8161d17 100644 --- a/src/AddIns/Misc/SharpQuery/Src/SharpQuerySchemaClass.cs +++ b/src/AddIns/Misc/SharpQuery/Src/SharpQuerySchemaClass.cs @@ -6,13 +6,12 @@ // using System; -using System.Windows.Forms; using System.Collections.Generic; using System.Data; -using System.Data.OleDb; -using SharpQuery.Collections; -using System.Reflection; +using System.Windows.Forms; + using ICSharpCode.Core; +using SharpQuery.Collections; using SharpQuery.Connection; namespace SharpQuery.SchemaClass diff --git a/src/AddIns/Misc/SharpReport/SharpReport/AutoReport.cs b/src/AddIns/Misc/SharpReport/SharpReport/AutoReport.cs index 9a676bb61a..c35a76b5d0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/AutoReport.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/AutoReport.cs @@ -12,20 +12,11 @@ using System; using System.Data; using System.Drawing; -using System.Drawing.Printing; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; - -using SharpReport; -using SharpReport.Designer; +using SharpReport.ReportItems; using SharpReportCore; -using SharpReport.ReportItems; - -using System.Windows.Forms; - - /// /// This Class creates a Report based on the DataSource selected in the Wizard /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpReport/SharpReport/Configuration/AssemblyInfo.cs index 86d3eb54df..0e9098a1b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Factories.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Factories.cs index 1e0879219e..8982ea6683 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Factories.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Factories.cs @@ -14,7 +14,7 @@ using System.Reflection; using System.Text; using SharpReportCore; - + /// /// Factories used by the Designer /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/NameService.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/NameService.cs index db0c7721b4..efcf05ba4b 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/NameService.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/NameService.cs @@ -10,8 +10,6 @@ using System; using System.Globalization; -using System.ComponentModel; - using SharpReportCore; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Report.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Report.cs index 3764a46668..d3d80ffea2 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Report.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Report.cs @@ -6,18 +6,13 @@ * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; +using System.ComponentModel; using System.Drawing; using System.Windows.Forms; -using System.ComponentModel; - using ICSharpCode.Core; - using SharpReportCore; -using SharpReport.ReportItems; - - namespace SharpReport.Designer{ /// /// Description of Report1. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Ruler/ctrlRuler.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Ruler/ctrlRuler.cs index 9006d22823..5c2b86d485 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/Ruler/ctrlRuler.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/Ruler/ctrlRuler.cs @@ -8,8 +8,8 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Windows.Forms; namespace Ruler diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/BaseDesignerControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/BaseDesignerControl.cs index 81c7217899..fc993416c0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/BaseDesignerControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/BaseDesignerControl.cs @@ -9,14 +9,10 @@ using System; using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; -using SharpReport; using SharpReportCore; - - namespace SharpReport.Designer{ /// /// Description of BaseDesignerControl. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportDetail.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportDetail.cs index 72d24a9ca4..7fef21a96b 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportDetail.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportDetail.cs @@ -8,11 +8,8 @@ */ using System; -using System.ComponentModel; using System.Windows.Forms; -using SharpReportCore; - namespace SharpReport.Designer{ /// /// Description of ReportDetail. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportFooter.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportFooter.cs index 17213c0e64..ece7d47684 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportFooter.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportFooter.cs @@ -8,11 +8,8 @@ */ using System; -using System.ComponentModel; using System.Windows.Forms; -using SharpReportCore; - namespace SharpReport.Designer{ /// /// Description of ReportFooter. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportHeader.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportHeader.cs index 4a646cc067..8ab2520e39 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportHeader.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportHeader.cs @@ -8,12 +8,8 @@ */ using System; -using System.Drawing; -using System.ComponentModel; using System.Windows.Forms; -using SharpReportCore; - namespace SharpReport.Designer{ /// /// Description of ReportHeader. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageFooter.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageFooter.cs index 0b94329ea6..2386b47707 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageFooter.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageFooter.cs @@ -8,11 +8,8 @@ */ using System; -using System.ComponentModel; using System.Windows.Forms; -using SharpReportCore; - namespace SharpReport.Designer{ /// /// Description of ReportPageFooter. diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageHeader.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageHeader.cs index ce1a2bb6a3..0d40fc0033 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageHeader.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportPageHeader.cs @@ -8,12 +8,8 @@ */ using System; -using System.Drawing; -using System.ComponentModel; using System.Windows.Forms; -using SharpReportCore; - namespace SharpReport.Designer { /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSection.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSection.cs index 1fadd7fc44..c28367cbe4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSection.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSection.cs @@ -8,21 +8,17 @@ */ using System; -using System.Globalization; -using System.Text; -using System.Reflection; using System.ComponentModel; using System.Drawing; +using System.Globalization; +using System.Reflection; using System.Windows.Forms; using System.Xml; using System.Xml.Serialization; using ICSharpCode.Core; - -using SharpReportCore; - -using SharpReport.ReportItems; using SharpReport.Designer; +using SharpReportCore; namespace SharpReport{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSectionControlbase.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSectionControlbase.cs index bd08fc21d1..cb4fd1e212 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSectionControlbase.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/ReportSectionControlbase.cs @@ -8,13 +8,11 @@ */ using System; -using System.Globalization; using System.Drawing; +using System.Globalization; using System.Windows.Forms; -using System.ComponentModel; using SharpReportCore; -using SharpReport.ReportItems; /// /// BaseControl for diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/SectionChangedEventArgs.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/SectionChangedEventArgs.cs index 1388186215..eae4608419 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/SectionChangedEventArgs.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SectionControls/SectionChangedEventArgs.cs @@ -9,8 +9,6 @@ //------------------------------------------------------------------------------ using System; using System.Drawing; - -using SharpReport.ReportItems; namespace SharpReport.Designer { diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SideTab/BuildSideTab.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SideTab/BuildSideTab.cs index 4e3cdf33e4..a2e8d99d35 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/SideTab/BuildSideTab.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/SideTab/BuildSideTab.cs @@ -9,13 +9,10 @@ using System; using System.Drawing; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - -using SharpReportCore; using SharpReport.Designer; +using SharpReportCore; namespace SharpReport { diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/AbstractGraphicControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/AbstractGraphicControl.cs index 8fc2e07bd8..b9401c026f 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/AbstractGraphicControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/AbstractGraphicControl.cs @@ -8,10 +8,7 @@ */ using System; -using System.ComponentModel; -using System.Drawing; using System.Drawing.Drawing2D; -using System.Windows.Forms; namespace SharpReport.Designer { diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/FunctionControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/FunctionControl.cs index 70a7ad04b9..5a8f292843 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/FunctionControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/FunctionControl.cs @@ -8,7 +8,6 @@ */ using System; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/RectTracker.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/RectTracker.cs index d0b1b2c5c9..19498785a1 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/RectTracker.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/RectTracker.cs @@ -1,10 +1,9 @@ using System; -using System.Windows.Forms; -using System.Drawing; -using System.Drawing.Imaging; using System.Diagnostics; -using System.Runtime.InteropServices; +using System.Drawing; using System.Drawing.Drawing2D; +using System.Runtime.InteropServices; +using System.Windows.Forms; namespace SharpReport.Designer { diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportCircleControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportCircleControl.cs index 7637c24f16..2ad5b53ef0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportCircleControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportCircleControl.cs @@ -1,10 +1,8 @@ using System; -using System.ComponentModel; -using System.Windows.Forms; using System.Drawing; -using System.Drawing.Drawing2D; +using System.Windows.Forms; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportControlBase.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportControlBase.cs index 4e9f2cb5b6..cd58b1b374 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportControlBase.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportControlBase.cs @@ -8,11 +8,11 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; namespace SharpReport.Designer{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportDbTextControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportDbTextControl.cs index bd525741d5..6fcef890b5 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportDbTextControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportDbTextControl.cs @@ -8,9 +8,6 @@ */ using System; -using System.Drawing; -using System.Windows.Forms; - using SharpReportCore; namespace SharpReport.Designer{ diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportImageControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportImageControl.cs index e5e6dd3844..19b360f9d3 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportImageControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportImageControl.cs @@ -10,10 +10,10 @@ using System; using System.Drawing; - using System.Windows.Forms; using SharpReport.Designer; + /// /// This Class acts as a Control to display images /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportLineControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportLineControl.cs index 0f78bb8df6..c159f165ba 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportLineControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportLineControl.cs @@ -8,10 +8,9 @@ // //------------------------------------------------------------------------------ -using System; -using System.Windows.Forms; +using System; using System.Drawing; -using System.Drawing.Drawing2D; +using System.Windows.Forms; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportObjectControlBase.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportObjectControlBase.cs index 10af035848..29ce440aed 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportObjectControlBase.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportObjectControlBase.cs @@ -8,9 +8,7 @@ */ using System; -using System.ComponentModel; using System.Windows.Forms; -using System.Drawing; namespace SharpReport.Designer { diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRectangleControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRectangleControl.cs index 193f5acb7d..3d762418b8 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRectangleControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRectangleControl.cs @@ -10,9 +10,8 @@ using System; -using System.Windows.Forms; using System.Drawing; -using System.Drawing.Drawing2D; +using System.Windows.Forms; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRowControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRowControl.cs index 607c9b090c..24b6080e04 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRowControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportRowControl.cs @@ -9,7 +9,6 @@ using System; using System.Drawing; -using System.ComponentModel; using System.Windows.Forms; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportTableControl.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportTableControl.cs index 0d4d1e1d66..782cd41a73 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportTableControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/VisualControls/ReportTableControl.cs @@ -8,7 +8,6 @@ */ using System; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Designer/XmlHelpers.cs b/src/AddIns/Misc/SharpReport/SharpReport/Designer/XmlHelpers.cs index fcb7322778..98d4ee3a88 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Designer/XmlHelpers.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Designer/XmlHelpers.cs @@ -9,12 +9,8 @@ using System; using System.Xml; - -using SharpReport; using SharpReportCore; -using System.Windows.Forms; - namespace SharpReport.Designer{ /// /// Helperclass with static Members for Xml diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/Functions/MiscFunctions/Today.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/Functions/MiscFunctions/Today.cs index ec75be62a4..cccddb166f 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/Functions/MiscFunctions/Today.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/Functions/MiscFunctions/Today.cs @@ -10,14 +10,11 @@ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; -using SharpReportCore; using SharpReport.Designer; - -using System.Windows.Forms; - + /// /// This Function show's the date like /// 'Printed : 04.23.2005' diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportCircleItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportCircleItem.cs index df9c8a319f..17006aa5cc 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportCircleItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportCircleItem.cs @@ -8,12 +8,11 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; -using SharpReportCore; using SharpReport.Designer; - +using SharpReportCore; namespace SharpReport.ReportItems{ diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportLineItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportLineItem.cs index 4777eae801..003ae69482 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportLineItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportLineItem.cs @@ -8,11 +8,11 @@ // //------------------------------------------------------------------------------ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; +using SharpReport.Designer; using SharpReportCore; -using SharpReport.Designer; /// /// This Class draws a Line with Thickness and DashStyle diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportRectangleItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportRectangleItem.cs index 9ff8c29dab..96bf4159fc 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportRectangleItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/GraphicBased/ReportRectangleItem.cs @@ -10,14 +10,12 @@ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; -using SharpReportCore; using SharpReport.Designer; -using SharpReport.ReportItems; +using SharpReportCore; - /// /// This Class Draws a Rectangle /// All this Graphical Classes derive from diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ItemsHelper.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ItemsHelper.cs index 78d0bafb09..96aa489870 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ItemsHelper.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ItemsHelper.cs @@ -10,9 +10,9 @@ namespace SharpReport { using System; - - using SharpReportCore; using SharpReport.Designer; + using SharpReportCore; + /// /// Helper Class for Report Items /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportDataItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportDataItem.cs index 735de782ef..a3317189ff 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportDataItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportDataItem.cs @@ -8,11 +8,11 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; -using SharpReportCore; using SharpReport.Designer; +using SharpReportCore; namespace SharpReport.ReportItems{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportRowItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportRowItem.cs index 15c0d10926..aa3c18a57a 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportRowItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportRowItem.cs @@ -8,8 +8,8 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using SharpReport.Designer; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTableItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTableItem.cs index 62422f5da3..7ff3be021d 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTableItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTableItem.cs @@ -8,8 +8,8 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using SharpReport.Designer; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTextItem.cs b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTextItem.cs index 735786bb96..c1fbea1e55 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTextItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/ReportItems/TextBased/ReportTextItem.cs @@ -8,11 +8,11 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; -using SharpReportCore; using SharpReport.Designer; +using SharpReportCore; namespace SharpReport.ReportItems { /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/SharpReportManager.cs b/src/AddIns/Misc/SharpReport/SharpReport/SharpReportManager.cs index 7604ccdafe..7743061288 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/SharpReportManager.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/SharpReportManager.cs @@ -7,29 +7,16 @@ using System; using System.Data; -using System.Data.OleDb; - -using System.Collections; - -using System.Xml; -using System.Windows.Forms; using System.Drawing; -using System.Drawing.Printing; -using System.Reflection; +using System.Windows.Forms; +using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; - using SharpQuery.Connection; - -using SharpReportCore; - using SharpReport.Designer; -using SharpReport.ReportItems; using SharpReport.ReportItems.Functions; - - -using System.Diagnostics; +using SharpReportCore; namespace SharpReport{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReport/Visitors/LoadReportVisitor.cs b/src/AddIns/Misc/SharpReport/SharpReport/Visitors/LoadReportVisitor.cs index c947451fd7..f093109b39 100644 --- a/src/AddIns/Misc/SharpReport/SharpReport/Visitors/LoadReportVisitor.cs +++ b/src/AddIns/Misc/SharpReport/SharpReport/Visitors/LoadReportVisitor.cs @@ -17,15 +17,8 @@ using System; using System.Xml; -using System.ComponentModel; -using System.Globalization; - -using SharpReportCore; - -using SharpReport.Visitors; using SharpReport.Designer; -using SharpReport.ReportItems; - +using SharpReportCore; namespace SharpReport.Visitors { diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/AbstractCommand/AbstractSharpReportCommand.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/AbstractCommand/AbstractSharpReportCommand.cs index 3150f2b7a3..b0a55b0de6 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/AbstractCommand/AbstractSharpReportCommand.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/AbstractCommand/AbstractSharpReportCommand.cs @@ -8,11 +8,9 @@ // //------------------------------------------------------------------------------ using System; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - + /// /// Abstract Class to give access to Sharpreport Designer /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ExplorerCommands.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ExplorerCommands.cs index 2751dff9b2..b3716090be 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ExplorerCommands.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ExplorerCommands.cs @@ -9,10 +9,9 @@ //------------------------------------------------------------------------------ using System; -using System.Windows.Forms; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using SharpReportCore; + /// /// This class'es handles all the commands used by the /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ItemContextCommands.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ItemContextCommands.cs index 26040c323b..9e156476a0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ItemContextCommands.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ItemContextCommands.cs @@ -9,7 +9,6 @@ using System; using System.Windows.Forms; using SharpReportCore; -using SharpReport.Designer; /// /// This Class contains all commands belonging to a ReportItem diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/SectionContextCommands.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/SectionContextCommands.cs index 948ddec53c..d35e16f1fb 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/SectionContextCommands.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/SectionContextCommands.cs @@ -7,15 +7,8 @@ * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; -using System.Drawing; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; - -using SharpReport.ReportItems; - /// /// this Class contains all commands belonging to a ReportSection /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ViewCommands.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ViewCommands.cs index 247d483507..983af936a7 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ViewCommands.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Commands/ViewCommands.cs @@ -8,8 +8,9 @@ */ using System; -using System.Windows.Forms; using System.Globalization; +using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using SharpReportCore; diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/Configuration/AssemblyInfo.cs index 86d3eb54df..0e9098a1b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/AbstractFieldsNode.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/AbstractFieldsNode.cs index d1673b72a2..ba5b630080 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/AbstractFieldsNode.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/AbstractFieldsNode.cs @@ -10,7 +10,6 @@ using System; -using System.Drawing; using System.Windows.Forms; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ColumnsTreeNode.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ColumnsTreeNode.cs index f695f48db8..389db7f915 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ColumnsTreeNode.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ColumnsTreeNode.cs @@ -11,9 +11,7 @@ using System; using System.ComponentModel; using System.Windows.Forms; -using SharpReportAddin; - - + /// /// Thsi class acts as a derived TreeNode for Columns /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ReportExplorer.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ReportExplorer.cs index dbb85b6156..55951a0f03 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ReportExplorer.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/FieldsExplorer/ReportExplorer.cs @@ -8,12 +8,11 @@ */ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Windows.Forms; using ICSharpCode.SharpDevelop.Gui; - using SharpReportCore; namespace SharpReportAddin diff --git a/src/AddIns/Misc/SharpReport/SharpReportAddin/ParameterInput.cs b/src/AddIns/Misc/SharpReport/SharpReportAddin/ParameterInput.cs index a5c353433b..f76333c5e1 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportAddin/ParameterInput.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportAddin/ParameterInput.cs @@ -11,12 +11,9 @@ using System; using System.Data; -using System.Windows.Forms; using SharpQuery.Gui.DataView; - using SharpReportCore; - /// /// This Form, derived from SharpQuery.SqlParameterInput handles the Input of /// Parameter's needed for Query's diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/GroupColumn.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/GroupColumn.cs index e41b9188b0..a04e0e8048 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/GroupColumn.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/GroupColumn.cs @@ -10,8 +10,8 @@ namespace SharpReportCore { using System; - using System.Data; using System.ComponentModel; + /// /// This Class build an Grouping Item /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/SqlParameter.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/SqlParameter.cs index f969fbc978..af03b3b8ef 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/SqlParameter.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseClasses/SqlParameter.cs @@ -12,9 +12,7 @@ namespace SharpReportCore { using System; using System.Data; using System.Globalization; - - using SharpReportCore; - + /// /// According to the definition in /// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rsrdl/htm/rsp_ref_rdl_elements_qz_629g.asp diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseDataItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseDataItem.cs index 6c341b216a..6a6757cf6d 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseDataItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseDataItem.cs @@ -10,13 +10,12 @@ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Xml.Serialization; using SharpReportCore.Exporters; - - + /// /// This Class is used for Databased items /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseFunction.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseFunction.cs index 6cb1046b1e..30f04cee20 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseFunction.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseFunction.cs @@ -11,8 +11,7 @@ namespace SharpReportCore { using System; using System.ComponentModel; - using System.Drawing; - + /// /// BaseClass for all Functions /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseGraphicItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseGraphicItem.cs index b84c226a02..46753b52e0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseGraphicItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseGraphicItem.cs @@ -10,12 +10,10 @@ namespace SharpReportCore { using System; + using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; - using System.ComponentModel; - using SharpReportCore; - - + /// /// Baseclass for all Graphical Items /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportItem.cs index db2e67d850..e375198609 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportItem.cs @@ -10,10 +10,10 @@ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Xml.Serialization; - + /// /// This Class is the BaseClass for /// and diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportObject.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportObject.cs index afde2f7211..24e7a12cbd 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportObject.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseReportObject.cs @@ -10,11 +10,10 @@ using System; -using System.Xml.Serialization; - using System.ComponentModel; using System.Drawing; - +using System.Xml.Serialization; + /// /// This is the BaseClass for all /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseSection.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseSection.cs index a553830ae3..07b31839a6 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseSection.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseSection.cs @@ -10,8 +10,6 @@ using System; using System.ComponentModel; -using System.Xml.Serialization; - /// /// This Class is the BaseClass for /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseTextItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseTextItem.cs index 4a31c9ecfe..6b9219eef2 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseTextItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/BaseTextItem.cs @@ -8,12 +8,12 @@ // //------------------------------------------------------------------------------ using System; -using System.Drawing; using System.ComponentModel; -using System.Xml.Serialization; +using System.Drawing; +using System.Xml.Serialization; using SharpReportCore.Exporters; - + /// /// This class is the BaseClass for all TextBased Items /// like etc. diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BasePageNumber.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BasePageNumber.cs index 1afe4a1b97..681981afa0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BasePageNumber.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BasePageNumber.cs @@ -10,10 +10,9 @@ using System; +using System.Drawing; using System.Globalization; -using System.ComponentModel; -using System.Drawing; - + /// /// BaseClass for PageNumbers /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BaseToday.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BaseToday.cs index b7d9549ec3..136aea506b 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BaseToday.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Functions/BaseToday.cs @@ -8,9 +8,10 @@ // //------------------------------------------------------------------------------ using System; -using System.Drawing; using System.ComponentModel; +using System.Drawing; using System.Globalization; + /// /// BaseClass for Today's Date /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Graphics/BaseRectangleItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Graphics/BaseRectangleItem.cs index a164f8123a..e678c33fcd 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Graphics/BaseRectangleItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/Graphics/BaseRectangleItem.cs @@ -10,11 +10,8 @@ using System; -using System.Collections; -using System.ComponentModel; +using System.Drawing; -using System.Drawing; - /// /// This class draws a Rectangle /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/RowItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/RowItem.cs index 0700fbe414..ef627207d9 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/RowItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/RowItem.cs @@ -8,11 +8,10 @@ */ using System; -using System.Drawing; -using System.Drawing.Drawing2D; using System.ComponentModel; -using System.Collections.Generic; +using System.Drawing; using System.Windows.Forms; + using SharpReportCore.Exporters; namespace SharpReportCore{ diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/TableItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/TableItem.cs index a1a22d294d..f166f08ece 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/TableItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseItems/TableItem.cs @@ -8,7 +8,6 @@ */ using System; -using System.ComponentModel; using System.Windows.Forms; namespace SharpReportCore { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseSettings.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseSettings.cs index f1028f83ec..42ab142843 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/BaseSettings.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/BaseSettings.cs @@ -19,11 +19,10 @@ // // Peter Forstmeier (Peter.Forstmeier@t-online.de) using System; +using System.ComponentModel; using System.Drawing; using System.Drawing.Printing; -using System.ComponentModel; using System.Windows.Forms; - using System.Xml.Serialization; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Collections/Collections.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Collections/Collections.cs index 76ef144288..c0776f0e04 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Collections/Collections.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Collections/Collections.cs @@ -8,10 +8,8 @@ */ using System; -using System.Drawing; -using System.Globalization; using System.Collections.Generic; - +using System.Globalization; namespace SharpReportCore{ diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Configuration/AssemblyInfo.cs index 86d3eb54df..0e9098a1b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/ConnectionObject.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/ConnectionObject.cs index 06ead7e636..088c38db02 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/ConnectionObject.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/ConnectionObject.cs @@ -8,8 +8,7 @@ // //------------------------------------------------------------------------------ using System; -using System.Data; -using System.Data.Common; +using System.Data; using System.Data.OleDb; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/BaseComparer.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/BaseComparer.cs index 70355b393e..a08a436cc3 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/BaseComparer.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/BaseComparer.cs @@ -8,8 +8,7 @@ // //------------------------------------------------------------------------------ using System; -using SharpReportCore; - + /// /// This Class is the BaseClass for all Comparers /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/GroupSeperator.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/GroupSeperator.cs index 80d48286e5..5800e833bf 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/GroupSeperator.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/GroupSeperator.cs @@ -8,12 +8,10 @@ // //------------------------------------------------------------------------------ using System; -using System.Text; -using System.Globalization; using System.ComponentModel; -using SharpReportCore; - - +using System.Globalization; +using System.Text; + /// /// TODO - Add class summary /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/SortComparer.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/SortComparer.cs index 48295bbabb..8810089b7d 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/SortComparer.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/Comparer/SortComparer.cs @@ -10,8 +10,6 @@ using System; using System.ComponentModel; using System.Globalization; -using System.Reflection; -using SharpReportCore; namespace SharpReportCore { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataManager.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataManager.cs index 7e191c3f78..571879ddb0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataManager.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataManager.cs @@ -8,10 +8,10 @@ // //------------------------------------------------------------------------------ using System; -using System.Data; -using System.Data.OleDb; using System.Collections; using System.ComponentModel; +using System.Data; +using System.Data.OleDb; using System.Globalization; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataNavigator.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataNavigator.cs index 6b11d3ddac..04be45cc52 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataNavigator.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/DataNavigator.cs @@ -8,8 +8,8 @@ */ using System; -using System.ComponentModel; using System.Collections; +using System.ComponentModel; namespace SharpReportCore { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/ExtendedTypeDescriptor.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/ExtendedTypeDescriptor.cs index f902518452..b7fb6d36e6 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/ExtendedTypeDescriptor.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/ExtendedTypeDescriptor.cs @@ -1,7 +1,7 @@ using System; -using System.Reflection; using System.Collections; using System.ComponentModel; +using System.Reflection; namespace SharpReportCore { public class SharpTypeDescriptor{ diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/SharpArrayList.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/SharpArrayList.cs index 5deeb64363..6648f40f27 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/SharpArrayList.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/ListHandling/SharpArrayList.cs @@ -1,8 +1,8 @@ using System; -using System.ComponentModel; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; +using System.ComponentModel; using System.Diagnostics; using System.Reflection; diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/SqlQueryChecker.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/SqlQueryChecker.cs index 2d0fdb059c..a44649ab28 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/SqlQueryChecker.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/DataManager/SqlQueryChecker.cs @@ -10,7 +10,6 @@ using System; using System.Data; using System.Globalization; -using System.Windows.Forms; namespace SharpReportCore{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Dialogs/PreviewControl.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Dialogs/PreviewControl.cs index 579bef4e8f..5a44814bc3 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Dialogs/PreviewControl.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Dialogs/PreviewControl.cs @@ -9,13 +9,7 @@ using System; using System.Drawing; -using System.Xml; -using System.ComponentModel; using System.Windows.Forms; -using System.Drawing.Printing; - -using SharpReportCore; - namespace SharpReportCore{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportContainer.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportContainer.cs index 4c41cc5242..68719ceab6 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportContainer.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportContainer.cs @@ -8,7 +8,7 @@ */ using System; -using System.Collections.Generic; + namespace SharpReportCore.Exporters { /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportText.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportText.cs index 3604849526..a2430cb4e5 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportText.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportColumns/ExportText.cs @@ -8,7 +8,6 @@ */ using System; -using System.Drawing; namespace SharpReportCore.Exporters { /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportItemsConverter.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportItemsConverter.cs index ecaefca73f..f0a479aa68 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportItemsConverter.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/ExportItemsConverter.cs @@ -8,13 +8,8 @@ */ using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Globalization; using System.Drawing; -using System.Drawing.Printing; - namespace SharpReportCore.Exporters{ public class ExportItemsConverter{ diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/SinglePage.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/SinglePage.cs index 5b42e74be5..9c497bfc82 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/SinglePage.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Exporter/SinglePage.cs @@ -8,9 +8,6 @@ */ using System; - -using System.Collections.Generic; -using System.Collections.ObjectModel; using System.Drawing; using System.Drawing.Printing; diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/BaseItemFactory.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/BaseItemFactory.cs index 0dfe4661e5..464ab6639c 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/BaseItemFactory.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/BaseItemFactory.cs @@ -12,8 +12,6 @@ using System; using System.Reflection; using System.Text; -using SharpReportCore; - /// /// This Factory returns BaseItems, this are BaseClasses implementing diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/RendererFactory.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/RendererFactory.cs index a43fce8fe8..4f9bcbf8b8 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/RendererFactory.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Factories/RendererFactory.cs @@ -10,8 +10,7 @@ using System; using System.Reflection; -using SharpReportCore; - + /// /// This class is a Factory for all Renderer /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/AbstractSingleton.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/AbstractSingleton.cs index 6d0843915c..c0d224f1fe 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/AbstractSingleton.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/AbstractSingleton.cs @@ -10,9 +10,7 @@ namespace SharpReportCore { using System; - using System.Collections; - - + /// /// This Class act's as Base Class for all Singletons /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/FontSingleton.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/FontSingleton.cs index 2072d45d33..507fc8f994 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/FontSingleton.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/FontSingleton.cs @@ -10,9 +10,9 @@ using System; -using System.Drawing; using System.Collections; -using System.Windows.Forms; +using System.Drawing; + /// /// This Class caches all the Font's used in SharpReport. /// The Hashtable is filled during load of an Report diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalEnums.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalEnums.cs index fe763fce6d..1d020242b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalEnums.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalEnums.cs @@ -11,9 +11,7 @@ using System; using System.Globalization; using System.Reflection; -using System.Resources; -using System.Windows.Forms; - + /// /// Global used Enumerations /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalValues.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalValues.cs index 9d1c8ee1f9..f11c6c7100 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalValues.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Globals/GlobalValues.cs @@ -10,12 +10,14 @@ using System; -using System.Globalization; -using System.Text; using System.Drawing; using System.Drawing.Printing; -//// Alex: for spooler +using System.Globalization; using System.ServiceProcess; +using System.Text; + +//// Alex: for spooler + /// /// This Class contains Global Icons and Constantes diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IContainerItem.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IContainerItem.cs index 194c37caf0..517d96e05e 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IContainerItem.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IContainerItem.cs @@ -9,7 +9,7 @@ using System; using System.Windows.Forms; -using System.Collections.ObjectModel; + namespace SharpReportCore { /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataNavigator.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataNavigator.cs index 82188c8c4a..16ba4e2026 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataNavigator.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataNavigator.cs @@ -7,7 +7,6 @@ * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; -using System.Collections; using System.ComponentModel; namespace SharpReportCore { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataViewStrategy.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataViewStrategy.cs index 06eaf6d059..a47b307ff0 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataViewStrategy.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IDataViewStrategy.cs @@ -1,5 +1,3 @@ - - using System; using System.Collections; using System.ComponentModel; diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IHierarchyInterfaces.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IHierarchyInterfaces.cs index 42580e4744..8caaf86f38 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IHierarchyInterfaces.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Interfaces/IHierarchyInterfaces.cs @@ -8,8 +8,6 @@ */ //ToDo with NET2.0 change this Interface to the one provided by NET2.0 using System; -using System.Collections; - namespace SharpReportCore { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderDataReport.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderDataReport.cs index 96672206bc..343b074e2b 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderDataReport.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderDataReport.cs @@ -1,29 +1,7 @@ - -// -// SharpDevelop ReportEditor -// -// Copyright (C) 2005 Peter Forstmeier -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program 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 this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// Peter Forstmeier (Peter.Forstmeier@t-online.de) - using System; -using System.ComponentModel; using System.Drawing; using System.Drawing.Printing; +using System.ComponentModel; /// /// Renderer for DataReports @@ -32,8 +10,6 @@ using System.Drawing.Printing; /// created by - Forstmeier Peter /// created on - 13.12.2004 11:07:59 /// -/// - namespace SharpReportCore { public class RenderDataReport : AbstractDataRenderer { diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderFormSheetReport.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderFormSheetReport.cs index 45b2eaca59..14f26ed099 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderFormSheetReport.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/RenderFormSheetReport.cs @@ -20,7 +20,6 @@ // Peter Forstmeier (Peter.Forstmeier@t-online.de) using System; -using System.Drawing; using System.Drawing.Printing; /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/ReportDocument.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/ReportDocument.cs index 3682b052bc..b240a408df 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/ReportDocument.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Printing/ReportDocument.cs @@ -3,10 +3,8 @@ using System; using System.Drawing; -using System.Windows.Forms; using System.Drawing.Printing; -using SharpReportCore; /// /// Derived from PrintDocument to have more control about printing /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/ReportModel.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/ReportModel.cs index 15e9fc241a..7b8d86b764 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/ReportModel.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/ReportModel.cs @@ -31,7 +31,6 @@ namespace SharpReportCore { using System; using System.Drawing; - using SharpReportCore; public class ReportModel : object,SharpReportCore.IVisitor,IDisposable{ ReportSettings reportSettings; diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/ReportViewer/ReportViewer.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/ReportViewer/ReportViewer.cs index 2e7d223b1d..f5f8b40de4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/ReportViewer/ReportViewer.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/ReportViewer/ReportViewer.cs @@ -8,11 +8,10 @@ */ using System; using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; using System.Drawing.Printing; using System.Windows.Forms; -using SharpReportCore; + using SharpReportCore.Exporters; namespace SharpReportCore.ReportViewer diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Visitors/LoadModelVisitor.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Visitors/LoadModelVisitor.cs index c4209d2cfe..17b0f52c36 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Visitors/LoadModelVisitor.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Visitors/LoadModelVisitor.cs @@ -12,9 +12,6 @@ using System; using System.Globalization; using System.Xml; -using System.Windows.Forms; - -using SharpReportCore; /// /// Fill's the ReportModel from File diff --git a/src/AddIns/Misc/SharpReport/SharpReportCore/Xml/XmlHelper.cs b/src/AddIns/Misc/SharpReport/SharpReportCore/Xml/XmlHelper.cs index de3e0de61d..78baad19db 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportCore/Xml/XmlHelper.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportCore/Xml/XmlHelper.cs @@ -9,10 +9,7 @@ //------------------------------------------------------------------------------ using System; using System.Xml; -using System.Windows.Forms; - - - + /// /// This class contains some basic methodes to handel Xml related stuff /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/Configuration/AssemblyInfo.cs index 86d3eb54df..0e9098a1b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/AbstractReportGenerator.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/AbstractReportGenerator.cs index 10705f7518..941efeb213 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/AbstractReportGenerator.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/AbstractReportGenerator.cs @@ -10,15 +10,10 @@ using System; using System.Drawing; -using System.Data; -using System.Data.OleDb; -using System.Globalization; - using ICSharpCode.Core; - using SharpReport; using SharpReportCore; - + /// /// Abstract Class for all ReportGenerators /// @@ -27,7 +22,7 @@ using SharpReportCore; /// created on - 07.09.2005 14:21:07 /// /// -using System.Windows.Forms; + namespace ReportGenerator { public class AbstractReportGenerator : IReportGenerator,IDisposable { diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/GeneratePullDataReport.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/GeneratePullDataReport.cs index 922d7bbcd6..c06c5c96b6 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/GeneratePullDataReport.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/GeneratePullDataReport.cs @@ -8,10 +8,9 @@ // //------------------------------------------------------------------------------ using System; - using ICSharpCode.Core; - using SharpReportCore; + /// /// This class is used to AutoGenerate a (PullData) Report /// (Reports, that grap the Data by themselve) @@ -20,7 +19,7 @@ using SharpReportCore; /// created by - Forstmeier Peter /// created on - 07.09.2005 13:23:14 /// -using System.Windows.Forms; + namespace ReportGenerator { public class GeneratePullDataReport : AbstractReportGenerator { diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/IReportGenerator.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/IReportGenerator.cs index b7e99785a2..f5ac0266b4 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/IReportGenerator.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/Generators/IReportGenerator.cs @@ -8,7 +8,6 @@ */ using System; -using SharpReportCore; namespace ReportGenerator{ /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/AbstractLayout.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/AbstractLayout.cs index e907643c7e..0800142ddd 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/AbstractLayout.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/AbstractLayout.cs @@ -10,10 +10,9 @@ using System; using System.Drawing; using System.Drawing.Printing; -using System.ComponentModel; using SharpReportCore; - + /// /// This class is the BaseClass for all Layout's /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/TableLayout.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/TableLayout.cs index 2e2c86f43f..f229e8c581 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/TableLayout.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/ReportLayouts/TableLayout.cs @@ -9,11 +9,10 @@ //------------------------------------------------------------------------------ using System; using System.Drawing; -using System.Drawing.Printing; -using System.ComponentModel; using System.Windows.Forms; using SharpReportCore; + /// /// This class build a TableLayout /// diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/SqlParameterConverter.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/SqlParameterConverter.cs index a2d0f4f49d..1994ad6f75 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/SqlParameterConverter.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/SqlParameterConverter.cs @@ -8,10 +8,9 @@ */ using System; -using System.Data.OleDb; using System.ComponentModel; -using SharpQuery.SchemaClass; using SharpQuery.Collections; +using SharpQuery.SchemaClass; using SharpReportCore; namespace ReportGenerator diff --git a/src/AddIns/Misc/SharpReport/SharpReportWizard/WizardPanels/PullModelPanel.cs b/src/AddIns/Misc/SharpReport/SharpReportWizard/WizardPanels/PullModelPanel.cs index 3dc55ba0d7..17c599dc47 100644 --- a/src/AddIns/Misc/SharpReport/SharpReportWizard/WizardPanels/PullModelPanel.cs +++ b/src/AddIns/Misc/SharpReport/SharpReportWizard/WizardPanels/PullModelPanel.cs @@ -8,25 +8,16 @@ */ using System; -using System.ComponentModel; +using System.Data; using System.Globalization; -using System.Drawing; using System.Windows.Forms; -using System.Data; -using System.Text; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - -using SharpQuery; using SharpQuery.Gui.TreeView; using SharpQuery.SchemaClass; - - -using System.Diagnostics; - namespace ReportGenerator { /// diff --git a/src/AddIns/Misc/SharpServerTools/OracleDbToolsProvider/Src/Forms/OracleFormsArtefactFactory.cs b/src/AddIns/Misc/SharpServerTools/OracleDbToolsProvider/Src/Forms/OracleFormsArtefactFactory.cs index 47c06f9787..116f79c8fb 100644 --- a/src/AddIns/Misc/SharpServerTools/OracleDbToolsProvider/Src/Forms/OracleFormsArtefactFactory.cs +++ b/src/AddIns/Misc/SharpServerTools/OracleDbToolsProvider/Src/Forms/OracleFormsArtefactFactory.cs @@ -6,15 +6,12 @@ */ using System; -using System.Windows.Forms; using System.Data; - -using SharpDbTools.Forms; -using SharpDbTools.Data; - -using SharpServerTools.Forms; +using System.Windows.Forms; using ICSharpCode.Core; +using SharpDbTools.Data; +using SharpDbTools.Forms; namespace SharpDbTools.Oracle.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Configuration/AssemblyInfo.cs index 888d27d92e..2e866570fb 100644 --- a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Configuration/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Information about this assembly is defined by the following diff --git a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/RebuildRequiredEvents.cs b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/RebuildRequiredEvents.cs index 4cd5702b38..fb5a703f33 100644 --- a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/RebuildRequiredEvents.cs +++ b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/RebuildRequiredEvents.cs @@ -6,7 +6,6 @@ */ using System; -using System.Windows.Forms; using System.Collections; namespace SharpServerTools.Forms diff --git a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerBrowserTool.cs b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerBrowserTool.cs index 781491f573..2a5e519e57 100644 --- a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerBrowserTool.cs +++ b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerBrowserTool.cs @@ -13,12 +13,9 @@ using System; using System.Windows.Forms; -using System.Collections.Generic; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; - namespace SharpServerTools.Forms { /// diff --git a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs index e0cb2a3734..c76bd047fb 100644 --- a/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs +++ b/src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs @@ -6,12 +6,11 @@ */ using System; -using System.Windows.Forms; using System.Collections; using System.Collections.Generic; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace SharpServerTools.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Configuration/AssemblyInfo.cs index bb222f9790..0b02381459 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfo.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfo.cs index f1ecb9cc15..b6396e9aeb 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfo.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfo.cs @@ -14,10 +14,6 @@ using System; using System.Data; -using System.Data.Common; -using System.Collections.Generic; - -using ICSharpCode.Core; namespace SharpDbTools.Data { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfoService.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfoService.cs index 76475d1d82..2d27fa372d 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfoService.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbModelInfoService.cs @@ -13,10 +13,11 @@ */ using System; +using System.Collections.Generic; using System.Data; using System.Data.Common; -using System.Collections.Generic; using System.IO; + using ICSharpCode.Core; namespace SharpDbTools.Data diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbProvidersService.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbProvidersService.cs index 43e674ae3a..6d3358f9b9 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbProvidersService.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Data/DbProvidersService.cs @@ -17,9 +17,9 @@ */ using System; -using System.Data.Common; -using System.Data; using System.Collections.Generic; +using System.Data; +using System.Data.Common; using ICSharpCode.Core; diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/ConnectionStringDefinitionDialog.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/ConnectionStringDefinitionDialog.cs index 560c9527e6..3b3caf5372 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/ConnectionStringDefinitionDialog.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/ConnectionStringDefinitionDialog.cs @@ -6,11 +6,10 @@ // using System; -using System.Drawing; -using System.Windows.Forms; using System.Collections.Generic; -using System.Data.Common; using System.ComponentModel; +using System.Data.Common; +using System.Windows.Forms; using SharpDbTools.Data; diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DatabaseExplorerTreeNode.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DatabaseExplorerTreeNode.cs index 2d1a04dea4..a90104468f 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DatabaseExplorerTreeNode.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DatabaseExplorerTreeNode.cs @@ -6,11 +6,10 @@ */ using System; -using System.Windows.Forms; using System.Collections.Generic; +using System.Windows.Forms; using ICSharpCode.Core; - using SharpDbTools.Data; using SharpServerTools.Forms; diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DbModelInfoTreeNode.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DbModelInfoTreeNode.cs index 46cf605d91..456b523b4a 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DbModelInfoTreeNode.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/DbModelInfoTreeNode.cs @@ -6,13 +6,13 @@ */ using System; -using System.Windows.Forms; -using System.Data.Common; using System.ComponentModel; +using System.Data.Common; +using System.Windows.Forms; using ICSharpCode.Core; -using SharpServerTools.Forms; using SharpDbTools.Data; +using SharpServerTools.Forms; namespace SharpDbTools.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/FormsArtefactFactories.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/FormsArtefactFactories.cs index 7d34460230..64affce46f 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/FormsArtefactFactories.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/FormsArtefactFactories.cs @@ -6,13 +6,8 @@ */ using System; -using System.Collections; - - -using ICSharpCode.Core; - using System.Collections.Generic; - +using ICSharpCode.Core; namespace SharpDbTools.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/GetConnectionLogicalNameDialog.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/GetConnectionLogicalNameDialog.cs index b485d5180b..0dfd146bcf 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/GetConnectionLogicalNameDialog.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/GetConnectionLogicalNameDialog.cs @@ -5,8 +5,6 @@ */ using System; -using System.Drawing; -using System.Windows.Forms; namespace SharpDbTools.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableDescribeViewContent.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableDescribeViewContent.cs index baf9a3cb4b..63e8da71f4 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableDescribeViewContent.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableDescribeViewContent.cs @@ -10,8 +10,6 @@ using System.Data; using System.Windows.Forms; using ICSharpCode.SharpDevelop.Gui; -using SharpDbTools.Data; - namespace SharpDbTools.Forms { diff --git a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableTreeNode.cs b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableTreeNode.cs index 6c5e925c89..8e0473d998 100644 --- a/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableTreeNode.cs +++ b/src/AddIns/Misc/SharpServerTools/SharpDbTools/Src/Forms/TableTreeNode.cs @@ -6,17 +6,13 @@ */ using System; -using System.Drawing; -using System.Windows.Forms; using System.Data; - -using SharpDbTools.Data; - -using SharpServerTools.Forms; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; +using SharpDbTools.Data; +using SharpServerTools.Forms; namespace SharpDbTools.Forms { diff --git a/src/AddIns/Misc/StartPage/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/StartPage/Project/Configuration/AssemblyInfo.cs index 1d74e8c262..bf77059b76 100644 --- a/src/AddIns/Misc/StartPage/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/StartPage/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/StartPage/Project/Src/Main.cs b/src/AddIns/Misc/StartPage/Project/Src/Main.cs index e39b89eef4..31f3c04784 100644 --- a/src/AddIns/Misc/StartPage/Project/Src/Main.cs +++ b/src/AddIns/Misc/StartPage/Project/Src/Main.cs @@ -7,14 +7,10 @@ // project created on 16.07.2002 at 18:07 using System; -using System.Drawing; -using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.BrowserDisplayBinding; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.BrowserDisplayBinding; namespace ICSharpCode.StartPage { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/SubversionAddIn/Project/Configuration/AssemblyInfo.cs index d17c6ec099..2a64a85f08 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/AddInOptions.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/AddInOptions.cs index 694a8f4b81..8935d35b2e 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/AddInOptions.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/AddInOptions.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using ICSharpCode.Core; namespace ICSharpCode.Svn diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Commands/ProjectBrowserCommands.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Commands/ProjectBrowserCommands.cs index 005fd62d5b..9e2cec4add 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Commands/ProjectBrowserCommands.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Commands/ProjectBrowserCommands.cs @@ -6,20 +6,11 @@ // using System; -using System.Text; using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; +using System.Text; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; - using ICSharpCode.SharpDevelop.Project; using NSvn.Common; using NSvn.Core; diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertDialog.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertDialog.cs index b5c7edd963..61564e506f 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertDialog.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertDialog.cs @@ -7,15 +7,10 @@ using System; using System.Reflection; -using System.Drawing; -using System.Text; -using System.Threading; -using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; -using NSvn.Core; + using ICSharpCode.SharpDevelop.Gui.XmlForms; +using NSvn.Core; namespace ICSharpCode.Svn.Gui { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertPassphraseDialog.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertPassphraseDialog.cs index 3805e8b36a..57f4874ddc 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertPassphraseDialog.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/ClientCertPassphraseDialog.cs @@ -7,15 +7,10 @@ using System; using System.Reflection; -using System.Drawing; -using System.Text; -using System.Threading; -using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; -using NSvn.Core; + using ICSharpCode.SharpDevelop.Gui.XmlForms; +using NSvn.Core; namespace ICSharpCode.Svn.Gui { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/LoginDialog.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/LoginDialog.cs index ece18e6a3e..fd11a690f6 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/LoginDialog.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/LoginDialog.cs @@ -7,15 +7,10 @@ using System; using System.Reflection; -using System.Drawing; -using System.Text; -using System.Threading; -using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; -using NSvn.Core; + using ICSharpCode.SharpDevelop.Gui.XmlForms; +using NSvn.Core; namespace ICSharpCode.Svn.Gui { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/SslServerTrustDialog.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/SslServerTrustDialog.cs index 4f340a7423..6edbeebc04 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/SslServerTrustDialog.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/AuthentificationDialogs/SslServerTrustDialog.cs @@ -6,16 +6,12 @@ // using System; -using System.Reflection; using System.Drawing; -using System.Text; -using System.Threading; -using System.IO; +using System.Reflection; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; -using NSvn.Core; + using ICSharpCode.SharpDevelop.Gui.XmlForms; +using NSvn.Core; namespace ICSharpCode.Svn.Gui { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/DiffPanel.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/DiffPanel.cs index c0e899a0f5..22eea02728 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/DiffPanel.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/DiffPanel.cs @@ -6,17 +6,16 @@ // using System; -using System.Reflection; -using System.Drawing; +using System.IO; using System.Text; using System.Threading; -using System.IO; using System.Windows.Forms; + +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Gui.XmlForms; using NSvn.Common; using NSvn.Core; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewDisplayBinding.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewDisplayBinding.cs index 6bbfbd1b19..9622b203b9 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewDisplayBinding.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewDisplayBinding.cs @@ -8,8 +8,8 @@ using System; using System.IO; using ICSharpCode.Core; -using NSvn.Core; using ICSharpCode.SharpDevelop; +using NSvn.Core; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs index 239b287674..8da255d401 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs @@ -9,9 +9,9 @@ using System; using System.IO; using System.Threading; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; using NSvn.Core; namespace ICSharpCode.Svn diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/InfoPanel.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/InfoPanel.cs index 36f986bf40..21dc1351b0 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/InfoPanel.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/InfoPanel.cs @@ -8,14 +8,13 @@ using System; using System.Collections; using System.Drawing; -using System.Reflection; using System.Threading; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; -using NSvn.Common; -using NSvn.Core; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.XmlForms; +using NSvn.Core; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/OverlayIconManager.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/OverlayIconManager.cs index d7436c3fe1..fa5ac2d077 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/OverlayIconManager.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/OverlayIconManager.cs @@ -10,8 +10,8 @@ using System.Collections.Generic; using System.Drawing; using System.Threading; using System.Windows.Forms; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Project; using NSvn.Common; using NSvn.Core; diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/SvnProjectBrowserVisitor.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/SvnProjectBrowserVisitor.cs index 9b60154600..37471ac7db 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/SvnProjectBrowserVisitor.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/ProjectBrowserVisitor/SvnProjectBrowserVisitor.cs @@ -6,8 +6,6 @@ // using System; -using System.IO; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.Svn diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SubversionOptionsPanel.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SubversionOptionsPanel.cs index 29c278e486..7cb856bf63 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SubversionOptionsPanel.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SubversionOptionsPanel.cs @@ -6,14 +6,7 @@ // using System; -using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.Svn.Gui diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SvnGuiWrapper.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SvnGuiWrapper.cs index 472ef3f7c8..0a76197261 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SvnGuiWrapper.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/SvnGuiWrapper.cs @@ -6,12 +6,12 @@ // using System; -using System.IO; -using System.Text; using System.Diagnostics; +using System.Text; using System.Windows.Forms; -using Microsoft.Win32; + using ICSharpCode.Core; +using Microsoft.Win32; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/TortoiseSvnNotFoundForm.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/TortoiseSvnNotFoundForm.cs index 49013648d7..90e8cf9cd3 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/TortoiseSvnNotFoundForm.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/TortoiseSvnNotFoundForm.cs @@ -5,13 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui.XmlForms; using System; using System.Diagnostics; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui.XmlForms; + namespace ICSharpCode.Svn { public class TortoiseSvnNotFoundForm : BaseSharpDevelopForm diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/InOperationDialog.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/InOperationDialog.cs index f80f0f76a1..c4018c57f5 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/InOperationDialog.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/InOperationDialog.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing; -using System.Windows.Forms; using System.Threading; namespace ICSharpCode.Svn diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/SubversionStateCondition.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/SubversionStateCondition.cs index 870835f5ff..268ef8be25 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/SubversionStateCondition.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/SubversionStateCondition.cs @@ -7,12 +7,11 @@ using System; using System.IO; -using System.Text; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Svn.Commands; -using NSvn.Core; using NSvn.Common; +using NSvn.Core; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/SubversionAddIn/Project/Src/SvnClient.cs b/src/AddIns/Misc/SubversionAddIn/Project/Src/SvnClient.cs index 21f70bdb49..0ff6d6241f 100644 --- a/src/AddIns/Misc/SubversionAddIn/Project/Src/SvnClient.cs +++ b/src/AddIns/Misc/SubversionAddIn/Project/Src/SvnClient.cs @@ -9,11 +9,10 @@ using System; using System.Threading; using System.Windows.Forms; -using NSvn.Common; -using NSvn.Core; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Svn.Gui; -using ICSharpCode.Core; +using NSvn.Core; namespace ICSharpCode.Svn { diff --git a/src/AddIns/Misc/UnitTesting/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/UnitTesting/Configuration/AssemblyInfo.cs index a039f8d225..653184d31b 100644 --- a/src/AddIns/Misc/UnitTesting/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/UnitTesting/Configuration/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/AddIns/Misc/UnitTesting/Src/NUnitResults.cs b/src/AddIns/Misc/UnitTesting/Src/NUnitResults.cs index 0155b2257f..9f73cacaf8 100644 --- a/src/AddIns/Misc/UnitTesting/Src/NUnitResults.cs +++ b/src/AddIns/Misc/UnitTesting/Src/NUnitResults.cs @@ -12,7 +12,6 @@ using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.UnitTesting { diff --git a/src/AddIns/Misc/UnitTesting/Src/PadContent.cs b/src/AddIns/Misc/UnitTesting/Src/PadContent.cs index ebf19b01b3..a6f517f5ad 100644 --- a/src/AddIns/Misc/UnitTesting/Src/PadContent.cs +++ b/src/AddIns/Misc/UnitTesting/Src/PadContent.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing; -using System.Reflection; using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; diff --git a/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs b/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs index 2e03deeb43..31b008f281 100644 --- a/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs +++ b/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs @@ -6,10 +6,9 @@ // using System; -using System.Collections.Generic; using System.Diagnostics; using System.IO; -using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/Misc/UnitTesting/Src/RunningTestsCondition.cs b/src/AddIns/Misc/UnitTesting/Src/RunningTestsCondition.cs index d20566c476..64e1f23e12 100644 --- a/src/AddIns/Misc/UnitTesting/Src/RunningTestsCondition.cs +++ b/src/AddIns/Misc/UnitTesting/Src/RunningTestsCondition.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; +using ICSharpCode.Core; namespace ICSharpCode.UnitTesting { diff --git a/src/AddIns/Misc/UnitTesting/Src/TestTreeView.cs b/src/AddIns/Misc/UnitTesting/Src/TestTreeView.cs index af4cf5506b..15d9de4907 100644 --- a/src/AddIns/Misc/UnitTesting/Src/TestTreeView.cs +++ b/src/AddIns/Misc/UnitTesting/Src/TestTreeView.cs @@ -15,7 +15,6 @@ using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; - using NUnit.Core; using NUnit.UiKit; using NUnit.Util; diff --git a/src/AddIns/Misc/UnitTesting/Src/TestableCondition.cs b/src/AddIns/Misc/UnitTesting/Src/TestableCondition.cs index 563ddcb78e..fbab1570a2 100644 --- a/src/AddIns/Misc/UnitTesting/Src/TestableCondition.cs +++ b/src/AddIns/Misc/UnitTesting/Src/TestableCondition.cs @@ -6,12 +6,9 @@ // using System; -using System.Collections.Generic; -using System.Text; -using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Bookmarks; +using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui.ClassBrowser; namespace ICSharpCode.UnitTesting diff --git a/src/AddIns/Misc/UnitTesting/Src/UnitTestApplicationStartHelper.cs b/src/AddIns/Misc/UnitTesting/Src/UnitTestApplicationStartHelper.cs index ee7576b110..9748131b8d 100644 --- a/src/AddIns/Misc/UnitTesting/Src/UnitTestApplicationStartHelper.cs +++ b/src/AddIns/Misc/UnitTesting/Src/UnitTestApplicationStartHelper.cs @@ -7,9 +7,9 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.IO; using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/AddIns/Misc/UnitTesting/Src/UnitTestCommands.cs b/src/AddIns/Misc/UnitTesting/Src/UnitTestCommands.cs index dc37084f9b..69f93c9492 100644 --- a/src/AddIns/Misc/UnitTesting/Src/UnitTestCommands.cs +++ b/src/AddIns/Misc/UnitTesting/Src/UnitTestCommands.cs @@ -6,12 +6,7 @@ // using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Text; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.UnitTesting diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/AssemblyInfo.cs b/src/Libraries/DockPanel_Src/WinFormsUI/AssemblyInfo.cs index cf0af8b9ce..cd88875c3e 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/AssemblyInfo.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; // // General Information about an assembly is controlled through the following diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Components/MdiClientController.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Components/MdiClientController.cs index d520205e24..838a4997a6 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Components/MdiClientController.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Components/MdiClientController.cs @@ -8,11 +8,10 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; -using System.Windows.Forms; using System.ComponentModel; using System.ComponentModel.Design; -using System.Runtime.InteropServices; +using System.Drawing; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Controls/InertButton.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Controls/InertButton.cs index 8df41cddc6..ccf135bf72 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Controls/InertButton.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Controls/InertButton.cs @@ -9,10 +9,10 @@ // ***************************************************************************** using System; +using System.ComponentModel; using System.Drawing; using System.Drawing.Imaging; using System.Windows.Forms; -using System.ComponentModel; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHidePane.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHidePane.cs index 3d2212745b..e20a892bae 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHidePane.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHidePane.cs @@ -8,7 +8,6 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripBase.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripBase.cs index 89e0881bb1..f5039efa5a 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripBase.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripBase.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripVS2003.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripVS2003.cs index 2311887cf3..157d96cd8b 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripVS2003.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideStripVS2003.cs @@ -8,10 +8,10 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; +using System.ComponentModel; using System.Drawing; -using System.Windows.Forms; using System.Drawing.Drawing2D; -using System.ComponentModel; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTab.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTab.cs index 7155bb3aa7..a4f48b1d93 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTab.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTab.cs @@ -8,7 +8,6 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTabVS2003.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTabVS2003.cs index adca334613..863a4575a0 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTabVS2003.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideTabVS2003.cs @@ -8,7 +8,6 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindow.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindow.cs index b112e665e0..38d3ccd80d 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindow.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindow.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Windows.Forms; using System.Drawing; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindowSplitter.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindowSplitter.cs index ed99b73858..487c9ee978 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindowSplitter.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/AutoHideWindowSplitter.cs @@ -9,10 +9,6 @@ // ***************************************************************************** using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DisplayingDockList.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DisplayingDockList.cs index 659abcebcf..64535ece3b 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DisplayingDockList.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DisplayingDockList.cs @@ -10,7 +10,6 @@ using System; using System.Collections; using System.Drawing; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContent.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContent.cs index 9473fb104e..1ec1521c62 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContent.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContent.cs @@ -12,7 +12,6 @@ using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; -using System.Runtime.InteropServices; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContentHandler.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContentHandler.cs index 1d7ef79334..c38400cd4c 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContentHandler.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockContentHandler.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Windows.Forms; -using System.Drawing; using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockIndicator.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockIndicator.cs index 2d080d3eda..e1a148fa17 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockIndicator.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockIndicator.cs @@ -1,8 +1,8 @@ using System; -using System.Windows.Forms; +using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; -using System.ComponentModel; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPane.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPane.cs index 368efe5672..d298be74b0 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPane.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPane.cs @@ -12,9 +12,8 @@ using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionBase.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionBase.cs index 2eb6d58fb2..d1041e675a 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionBase.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionBase.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Windows.Forms; using System.Drawing; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionVS2003.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionVS2003.cs index 30b405c90a..911b4514be 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionVS2003.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCaptionVS2003.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; +using System.ComponentModel; using System.Drawing; using System.Windows.Forms; -using System.ComponentModel; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCollection.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCollection.cs index b83a73cce4..d0b25fd234 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCollection.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneCollection.cs @@ -10,8 +10,6 @@ using System; using System.Collections; -using System.Drawing; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneSplitter.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneSplitter.cs index 197043b96b..b0b460d2fb 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneSplitter.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneSplitter.cs @@ -9,8 +9,6 @@ // ***************************************************************************** using System; -using System.Collections; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripBase.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripBase.cs index 7356cfdc69..91f3d97fca 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripBase.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripBase.cs @@ -8,9 +8,9 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripVS2003.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripVS2003.cs index 66606a2cce..3c0a290818 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripVS2003.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneStripVS2003.cs @@ -8,10 +8,10 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; +using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; -using System.ComponentModel; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTab.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTab.cs index db167d26b8..a4b1dd5712 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTab.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTab.cs @@ -8,7 +8,6 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTabVS2003.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTabVS2003.cs index 5ab0aa08b4..7d84c1932d 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTabVS2003.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPaneTabVS2003.cs @@ -8,7 +8,6 @@ // WinFormsUI Library Version 1.0 // ***************************************************************************** using System; -using System.Drawing; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanel.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanel.cs index 214bb7ab38..d372859cae 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanel.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanel.cs @@ -9,13 +9,12 @@ // ***************************************************************************** using System; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; using System.ComponentModel; -using System.Runtime.InteropServices; +using System.Drawing; using System.IO; +using System.Runtime.InteropServices; using System.Text; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { @@ -1277,4 +1276,4 @@ namespace WeifenLuo.WinFormsUI DockPanelPersist.LoadFromXml(this, stream, deserializeContent, closeStream); } } -} \ No newline at end of file +} diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanelPersist.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanelPersist.cs index c169f7c07f..04915ce2df 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanelPersist.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockPanelPersist.cs @@ -10,13 +10,11 @@ using System; using System.ComponentModel; -using System.Windows.Forms; using System.Drawing; -using WeifenLuo.WinFormsUI; +using System.Globalization; using System.IO; using System.Text; using System.Xml; -using System.Globalization; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindow.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindow.cs index 39ff0b35c7..2bc538476a 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindow.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindow.cs @@ -9,10 +9,10 @@ // ***************************************************************************** using System; -using System.Windows.Forms; +using System.ComponentModel; using System.Drawing; using System.Runtime.InteropServices; -using System.ComponentModel; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindowSplitter.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindowSplitter.cs index 7793680f91..342bc6cefe 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindowSplitter.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DockWindowSplitter.cs @@ -9,10 +9,6 @@ // ***************************************************************************** using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DragHandlerBase.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DragHandlerBase.cs index 362cb01e23..a9641ceabd 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DragHandlerBase.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/DragHandlerBase.cs @@ -10,8 +10,8 @@ using System; using System.Drawing; -using System.Windows.Forms; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { @@ -133,4 +133,4 @@ namespace WeifenLuo.WinFormsUI return CallWindowProc(m_prevWndFunc, hWnd, iMsg, wParam, lParam); } } -} \ No newline at end of file +} diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/Enums.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/Enums.cs index dd11f25e89..5492f68f78 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/Enums.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/Enums.cs @@ -10,7 +10,6 @@ using System; using System.ComponentModel; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindow.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindow.cs index 1f07d90f35..5cb939c70d 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindow.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindow.cs @@ -9,10 +9,9 @@ // ***************************************************************************** using System; -using System.Collections; using System.Drawing; -using System.Windows.Forms; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindowCollection.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindowCollection.cs index b4d52d7efd..b7e403c891 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindowCollection.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/FloatWindowCollection.cs @@ -10,8 +10,6 @@ using System; using System.Collections; -using System.Drawing; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterBase.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterBase.cs index 22c43b436a..d61cd288e6 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterBase.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterBase.cs @@ -9,8 +9,6 @@ // ***************************************************************************** using System; -using System.Collections; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterOutline.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterOutline.cs index cfccf65712..abd875caa9 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterOutline.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Docking/SplitterOutline.cs @@ -10,8 +10,6 @@ using System; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/DrawHelper.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/DrawHelper.cs index ba7afae5e1..2829e93e77 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/DrawHelper.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/DrawHelper.cs @@ -11,8 +11,6 @@ using System; using System.Drawing; using System.Drawing.Drawing2D; -using System.Drawing.Imaging; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/ResourceHelper.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/ResourceHelper.cs index 287efa7c52..c838629fae 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/ResourceHelper.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Helpers/ResourceHelper.cs @@ -12,7 +12,6 @@ using System; using System.Drawing; using System.Reflection; using System.Resources; -using System.Windows.Forms; namespace WeifenLuo.WinFormsUI { diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Win32/Kernel32.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Win32/Kernel32.cs index fcd8cbe578..2deef3349c 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Win32/Kernel32.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Win32/Kernel32.cs @@ -9,9 +9,7 @@ // ***************************************************************************** using System; -using System.Drawing; using System.Runtime.InteropServices; -using WeifenLuo.WinFormsUI.Win32; namespace WeifenLuo.WinFormsUI { @@ -20,4 +18,4 @@ namespace WeifenLuo.WinFormsUI [DllImport("Kernel32.dll", CharSet=CharSet.Auto)] public static extern int GetCurrentThreadId(); } -} \ No newline at end of file +} diff --git a/src/Libraries/DockPanel_Src/WinFormsUI/Win32/User32.cs b/src/Libraries/DockPanel_Src/WinFormsUI/Win32/User32.cs index c5b15c9b13..6a2390b153 100644 --- a/src/Libraries/DockPanel_Src/WinFormsUI/Win32/User32.cs +++ b/src/Libraries/DockPanel_Src/WinFormsUI/Win32/User32.cs @@ -11,6 +11,7 @@ using System; using System.Drawing; using System.Runtime.InteropServices; + using WeifenLuo.WinFormsUI.Win32; namespace WeifenLuo.WinFormsUI @@ -153,4 +154,4 @@ namespace WeifenLuo.WinFormsUI public static extern IntPtr DefWindowProc(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam); } -} \ No newline at end of file +} diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/AddMonoAssemblySearchPaths.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/AddMonoAssemblySearchPaths.cs index 2fc44db4a5..c6616e5321 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/AddMonoAssemblySearchPaths.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/AddMonoAssemblySearchPaths.cs @@ -5,10 +5,10 @@ // $Revision$ // -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; using System; using System.Collections.Generic; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/AssemblyInfo.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/AssemblyInfo.cs index ad53ec8956..959302c2d0 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/AssemblyInfo.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/AssemblyInfo.cs @@ -6,7 +6,6 @@ // using System.Reflection; -using System.Runtime.CompilerServices; // Information about this assembly is defined by the following // attributes. diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/CompilerCommandLineArguments.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/CompilerCommandLineArguments.cs index b24f97529c..b452c4a286 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/CompilerCommandLineArguments.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/CompilerCommandLineArguments.cs @@ -5,14 +5,13 @@ // $Revision$ // -using Microsoft.Build.Framework; -using Microsoft.Build.Tasks; -using Microsoft.Build.Utilities; using System; using System.Globalization; -using System.Text; using System.IO; +using Microsoft.Build.Framework; +using Microsoft.Build.Tasks; + namespace ICSharpCode.Build.Tasks { public class CompilerCommandLineArguments : CommandLineBuilderExtension diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/Constants.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/Constants.cs index e0d63ea539..d49254992c 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/Constants.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/Constants.cs @@ -6,7 +6,6 @@ // using System; -using Microsoft.Build.Tasks; using Microsoft.Build.Utilities; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/FxCop.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/FxCop.cs index 892e3a2f37..fc855587df 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/FxCop.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/FxCop.cs @@ -6,12 +6,12 @@ // using System; -using System.IO; using System.Globalization; +using System.IO; using System.Text; using System.Xml; + using Microsoft.Build.Framework; -using Microsoft.Build.Tasks; using Microsoft.Build.Utilities; using Microsoft.Win32; diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkPath.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkPath.cs index a79252fbb7..83fb5e103a 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkPath.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkPath.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; -using System; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkSdkPath.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkSdkPath.cs index b5adac3158..2ccb6035b3 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkSdkPath.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/GetMonoFrameworkSdkPath.cs @@ -5,9 +5,9 @@ // $Revision$ // +using System; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; -using System; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/Gmcs.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/Gmcs.cs index d246d0bffd..1220d7c3df 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/Gmcs.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/Gmcs.cs @@ -5,7 +5,6 @@ // $Revision$ // -using Microsoft.Build.Framework; using System; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/ILAsm.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/ILAsm.cs index b9fddfa387..d21da131af 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/ILAsm.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/ILAsm.cs @@ -8,7 +8,6 @@ using System; using System.IO; using Microsoft.Build.Framework; -using Microsoft.Build.Tasks; using Microsoft.Build.Utilities; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/Mbas.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/Mbas.cs index 7e6a0af7ba..597158f40a 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/Mbas.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/Mbas.cs @@ -5,10 +5,9 @@ // $Revision$ // -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; using System; using System.CodeDom.Compiler; +using Microsoft.Build.Framework; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/Mcs.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/Mcs.cs index b80c81ff09..40444cbd2f 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/Mcs.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/Mcs.cs @@ -5,7 +5,6 @@ // $Revision$ // -using Microsoft.Build.Framework; using System; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoBasicCompilerResultsParser.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoBasicCompilerResultsParser.cs index 48f0ad776c..16675712d3 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoBasicCompilerResultsParser.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoBasicCompilerResultsParser.cs @@ -8,7 +8,6 @@ using System; using System.CodeDom.Compiler; using System.IO; -using System.Text; using System.Text.RegularExpressions; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCSharpCompilerResultsParser.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCSharpCompilerResultsParser.cs index 1475e836e1..26c93d8a7d 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCSharpCompilerResultsParser.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCSharpCompilerResultsParser.cs @@ -8,7 +8,6 @@ using System; using System.CodeDom.Compiler; using System.IO; -using System.Text; using System.Text.RegularExpressions; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCompilerTask.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCompilerTask.cs index 372fd12aa9..b63d14263a 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCompilerTask.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoCompilerTask.cs @@ -5,10 +5,9 @@ // $Revision$ // -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; using System; using System.CodeDom.Compiler; +using Microsoft.Build.Framework; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGacDirectory.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGacDirectory.cs index f90a435835..5f2e1fc211 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGacDirectory.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGacDirectory.cs @@ -8,7 +8,6 @@ using System; using System.Globalization; using System.IO; -using System.Reflection; using System.Text; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGlobalAssemblyCache.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGlobalAssemblyCache.cs index eea908484c..a8a96d9a1d 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGlobalAssemblyCache.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoGlobalAssemblyCache.cs @@ -5,11 +5,9 @@ // $Revision$ // -using Microsoft.Win32; using System; using System.Collections.Generic; using System.IO; -using System.Security; namespace ICSharpCode.Build.Tasks { diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoToolLocationHelper.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoToolLocationHelper.cs index 00c79304ab..cf8c21bf38 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoToolLocationHelper.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MonoToolLocationHelper.cs @@ -5,11 +5,12 @@ // $Revision$ // -using Microsoft.Win32; using System; using System.IO; using System.Security; +using Microsoft.Win32; + namespace ICSharpCode.Build.Tasks { /// diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/MyToolTask.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/MyToolTask.cs index 36363ac743..5c8a9025f6 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/MyToolTask.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/MyToolTask.cs @@ -7,9 +7,6 @@ using System; using System.Globalization; -using System.IO; -using Microsoft.Build.Framework; -using Microsoft.Build.Tasks; using Microsoft.Build.Utilities; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Project/Resources.cs b/src/Libraries/ICSharpCode.Build.Tasks/Project/Resources.cs index 6c04e0b423..248ce2c970 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Project/Resources.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Project/Resources.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.ComponentModel; using System.Reflection; namespace ICSharpCode.Build.Tasks diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/BookmarkActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/BookmarkActions.cs index a44b384220..f01faf6094 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/BookmarkActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/BookmarkActions.cs @@ -5,10 +5,7 @@ // $Revision$ // -using System.Drawing; -using System.Windows.Forms; using System; - using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Actions diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/CaretActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/CaretActions.cs index 036eb70774..8c6b296324 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/CaretActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/CaretActions.cs @@ -5,10 +5,9 @@ // $Revision$ // +using System; using System.Collections.Generic; using System.Drawing; -using System.Windows.Forms; -using System; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/ClipBoardActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/ClipBoardActions.cs index b85795bdb5..d5387e923b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/ClipBoardActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/ClipBoardActions.cs @@ -5,12 +5,8 @@ // $Revision$ // -using System.Drawing; -using System.Windows.Forms; using System; -using ICSharpCode.TextEditor.Document; - namespace ICSharpCode.TextEditor.Actions { public class Cut : AbstractEditAction diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FoldActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FoldActions.cs index f4fd90b0cf..47dbdc610b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FoldActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FoldActions.cs @@ -5,11 +5,8 @@ // $Revision$ // -using System.Collections.Generic; -using System.Drawing; -using System.Windows.Forms; using System; - +using System.Collections.Generic; using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Actions diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FormatActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FormatActions.cs index ffb3abe444..221336f188 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FormatActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/FormatActions.cs @@ -5,11 +5,8 @@ // $Revision$ // -using System.Text; -using System.Drawing; -using System.Windows.Forms; using System; - +using System.Text; using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Actions diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/HomeEndActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/HomeEndActions.cs index e6ee369d7c..18a0b3544b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/HomeEndActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/HomeEndActions.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.Drawing; -using System.Windows.Forms; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/IEditAction.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/IEditAction.cs index 810705ce79..b194a5e5ad 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/IEditAction.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/IEditAction.cs @@ -8,8 +8,6 @@ using System; using System.Windows.Forms; -using ICSharpCode.TextEditor.Document; - namespace ICSharpCode.TextEditor.Actions { /// diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/MiscActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/MiscActions.cs index 4539bb4d25..48d8e39af7 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/MiscActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/MiscActions.cs @@ -8,7 +8,6 @@ using System; using System.Drawing; using System.Text; -using System.Windows.Forms; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/SelectionActions.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/SelectionActions.cs index 329b1f5730..a72fdcae6f 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/SelectionActions.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Actions/SelectionActions.cs @@ -5,10 +5,8 @@ // $Revision$ // -using System.Drawing; -using System.Windows.Forms; using System; - +using System.Drawing; using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Actions diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/AbstractSegment.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/AbstractSegment.cs index 8b2aa97ed4..a008567dd2 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/AbstractSegment.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/AbstractSegment.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DefaultDocument.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DefaultDocument.cs index 4754b872d5..78104a3dfb 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DefaultDocument.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DefaultDocument.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using System.IO; using System.Diagnostics; using System.Drawing; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DocumentFactory.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DocumentFactory.cs index 67b2006e5d..835eac310f 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DocumentFactory.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/DocumentFactory.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using System.Text; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldMarker.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldMarker.cs index cb32288cfd..4fa7402d29 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldMarker.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldMarker.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing; -using System.Collections; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldingManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldingManager.cs index f0bdac9c94..26d26132a1 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldingManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/FoldingManager.cs @@ -6,9 +6,9 @@ // using System; -using System.Text; -using System.Drawing; using System.Collections.Generic; +using System.Drawing; +using System.Text; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/IFoldingStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/IFoldingStrategy.cs index 47e5389e97..5c447ba4ac 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/IFoldingStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FoldingStrategy/IFoldingStrategy.cs @@ -6,7 +6,6 @@ // using System; -using System.Drawing; using System.Collections.Generic; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/DefaultFormattingStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/DefaultFormattingStrategy.cs index 6aff3aeb5b..3eb83b2518 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/DefaultFormattingStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/DefaultFormattingStrategy.cs @@ -6,10 +6,8 @@ // using System; -using System.Drawing; using System.Text; - namespace ICSharpCode.TextEditor.Document { /// diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/IFormattingStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/IFormattingStrategy.cs index e5288ac3e0..a5c2b22189 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/IFormattingStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/FormattingStrategy/IFormattingStrategy.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing; -using System.Text; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/DefaultHighlightingStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/DefaultHighlightingStrategy.cs index 9be3d2f919..fea2ccf3ba 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/DefaultHighlightingStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/DefaultHighlightingStrategy.cs @@ -6,15 +6,9 @@ // using System; -using System.Drawing; -using System.Diagnostics; using System.Collections.Generic; -using System.Globalization; -using System.IO; -using System.Reflection; +using System.Drawing; using System.Windows.Forms; -using System.Xml; -using System.Text; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/FontContainer.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/FontContainer.cs index 960402d6c7..1fc5b807e0 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/FontContainer.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/FontContainer.cs @@ -7,13 +7,6 @@ using System; using System.Drawing; -using System.Diagnostics; -using System.Collections.Generic; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; -using System.Xml; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightBackground.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightBackground.cs index a915d477ca..af2d3cdb67 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightBackground.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightBackground.cs @@ -7,12 +7,6 @@ using System; using System.Drawing; -using System.Diagnostics; -using System.Collections.Generic; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightColor.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightColor.cs index 5b4ed7dc6b..e72a7ff256 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightColor.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightColor.cs @@ -6,13 +6,10 @@ // using System; -using System.Drawing; using System.Diagnostics; -using System.Collections.Generic; +using System.Drawing; using System.Globalization; -using System.IO; using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightInfo.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightInfo.cs index 45d5d7134f..9d50ca05cf 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightInfo.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightInfo.cs @@ -6,15 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; -using System.Collections; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; -using System.Xml; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightRuleSet.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightRuleSet.cs index 49ee6d89dc..56bb52c4d2 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightRuleSet.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightRuleSet.cs @@ -7,9 +7,6 @@ using System; using System.Collections; -using System.Collections.Specialized; -using System.Drawing; -using System.Text; using System.Xml; using ICSharpCode.TextEditor.Util; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingDefinitionParser.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingDefinitionParser.cs index 04467d484c..9772e50b38 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingDefinitionParser.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingDefinitionParser.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingManager.cs index f6b02e70d5..f2b301bdd8 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingManager.cs @@ -7,11 +7,8 @@ using System; using System.Collections; -using System.Collections.Specialized; using System.Collections.Generic; -using System.Windows.Forms; using System.IO; -using System.Reflection; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingStrategyFactory.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingStrategyFactory.cs index b65a7aa5a7..a3171f4c26 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingStrategyFactory.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/HighlightingStrategyFactory.cs @@ -6,15 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; -using System.Collections; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; -using System.Xml; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/IHighlightingStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/IHighlightingStrategy.cs index e22b423a65..77888dd88b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/IHighlightingStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/IHighlightingStrategy.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Drawing; -using System.Text; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/NextMarker.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/NextMarker.cs index 68af465a78..1c0ad2ba48 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/NextMarker.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/NextMarker.cs @@ -6,14 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; -using System.Collections; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/PrevMarker.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/PrevMarker.cs index 38a485e12a..c4c0cf0ac6 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/PrevMarker.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/PrevMarker.cs @@ -6,14 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; -using System.Collections; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/Span.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/Span.cs index a235f686a8..bb81afc0ac 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/Span.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/Span.cs @@ -6,14 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Collections.Specialized; -using System.Collections; -using System.Globalization; -using System.IO; -using System.Reflection; -using System.Windows.Forms; using System.Xml; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/FileSyntaxModeProvider.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/FileSyntaxModeProvider.cs index fe858e63fd..9ce95ce11c 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/FileSyntaxModeProvider.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/FileSyntaxModeProvider.cs @@ -6,9 +6,8 @@ // using System; -using System.IO; using System.Collections.Generic; -using System.Reflection; +using System.IO; using System.Windows.Forms; using System.Xml; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/ResourceSyntaxModeProvider.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/ResourceSyntaxModeProvider.cs index 80465ef0ab..157caa69de 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/ResourceSyntaxModeProvider.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/ResourceSyntaxModeProvider.cs @@ -7,9 +7,9 @@ using System; using System.Collections.Generic; +using System.IO; using System.Reflection; using System.Xml; -using System.IO; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/SyntaxMode.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/SyntaxMode.cs index c47d086427..49f7ff0529 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/SyntaxMode.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/SyntaxModes/SyntaxMode.cs @@ -6,8 +6,8 @@ // using System; -using System.IO; using System.Collections.Generic; +using System.IO; using System.Windows.Forms; using System.Xml; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/TextWord.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/TextWord.cs index 77dbcd33b6..af4efd81be 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/TextWord.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/HighlightingStrategy/TextWord.cs @@ -6,8 +6,8 @@ // using System; -using System.Drawing; using System.Diagnostics; +using System.Drawing; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs index 9892d599ab..b1d4f506fa 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/DefaultLineManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/DefaultLineManager.cs index 337ba837dd..1db4a3c6d7 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/DefaultLineManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/DefaultLineManager.cs @@ -6,8 +6,6 @@ // using System; -using System.Diagnostics; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/LineSegment.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/LineSegment.cs index 1b79fb0000..26f1bddfdd 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/LineSegment.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/LineManager/LineSegment.cs @@ -6,8 +6,8 @@ // using System; -using System.Drawing; using System.Collections.Generic; +using System.Drawing; using System.Text; namespace ICSharpCode.TextEditor.Document diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/MarkerStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/MarkerStrategy.cs index 7b5abe2b36..bb6264a68b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/MarkerStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/MarkerStrategy.cs @@ -6,10 +6,8 @@ // using System; - -using System.Drawing; -using System.Diagnostics; using System.Collections.Generic; +using System.Drawing; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/TextMarker.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/TextMarker.cs index b97ada1fab..4c02b0b3f5 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/TextMarker.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/MarkerStrategy/TextMarker.cs @@ -7,8 +7,6 @@ using System; using System.Drawing; -using System.Diagnostics; -using System.Collections; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ColumnRange.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ColumnRange.cs index 390047eb29..ced57a73ae 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ColumnRange.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ColumnRange.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Collections; -using System.Text; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ISelection.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ISelection.cs index 0e718391e4..7d1ab9d2f2 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ISelection.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/ISelection.cs @@ -6,7 +6,6 @@ // using System.Drawing; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/SelectionManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/SelectionManager.cs index 395ebd2e20..b20de1c301 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/SelectionManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/Selection/SelectionManager.cs @@ -6,10 +6,9 @@ // using System; -using System.Drawing; using System.Collections.Generic; +using System.Drawing; using System.Text; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/ITextBufferStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/ITextBufferStrategy.cs index 932a66cad1..b21cba0dbf 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/ITextBufferStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/ITextBufferStrategy.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/StringTextBufferStrategy.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/StringTextBufferStrategy.cs index 6c0d49927d..1324f28385 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/StringTextBufferStrategy.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextBufferStrategy/StringTextBufferStrategy.cs @@ -7,9 +7,7 @@ using System; using System.IO; -using System.Diagnostics; using System.Text; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextUtilities.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextUtilities.cs index cd33bf5b2d..fa105b9e46 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextUtilities.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/TextUtilities.cs @@ -6,10 +6,8 @@ // using System; -using System.Text; using System.Diagnostics; - -using ICSharpCode.TextEditor.Undo; +using System.Text; namespace ICSharpCode.TextEditor.Document { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/AbstractMargin.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/AbstractMargin.cs index 9f03417dac..b00c5446dc 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/AbstractMargin.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/AbstractMargin.cs @@ -6,12 +6,9 @@ // using System; -using System.Windows.Forms; -using System.Collections; -using System.ComponentModel; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Drawing.Text; +using System.Windows.Forms; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BracketHighlighter.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BracketHighlighter.cs index 5b410c1be1..bb36a86ff8 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BracketHighlighter.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BracketHighlighter.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; using System.Drawing; -using System.Diagnostics; - using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BrushRegistry.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BrushRegistry.cs index 11d2ffee2f..3603165985 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BrushRegistry.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/BrushRegistry.cs @@ -6,13 +6,9 @@ // using System; -using System.Windows.Forms; using System.Collections; -using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; -using System.Drawing.Text; -using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Caret.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Caret.cs index 48c43f29c1..5ae4582eb4 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Caret.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Caret.cs @@ -7,19 +7,8 @@ using System; using System.Collections.Generic; -using System.IO; -using System.ComponentModel; using System.Drawing; -using System.Threading; -using System.Drawing.Text; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; -using System.Diagnostics; -using System.Windows.Forms; -using System.Runtime.Remoting; using System.Runtime.InteropServices; -using System.Text; -using System.Xml; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs index 94ae8d670b..ae55b5bf97 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs @@ -8,13 +8,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Runtime.InteropServices; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Util; -using ICSharpCode.TextEditor; namespace ICSharpCode.TextEditor.Gui.CompletionWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/CodeCompletionWindow.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/CodeCompletionWindow.cs index 17d2fa3d88..b56637a7b0 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/CodeCompletionWindow.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/CodeCompletionWindow.cs @@ -8,11 +8,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.TextEditor; namespace ICSharpCode.TextEditor.Gui.CompletionWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/DeclarationViewWindow.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/DeclarationViewWindow.cs index dee3725ac0..ac3c198551 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/DeclarationViewWindow.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/DeclarationViewWindow.cs @@ -6,16 +6,10 @@ // using System; -using System.IO; using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Runtime.InteropServices; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Util; -using ICSharpCode.TextEditor; namespace ICSharpCode.TextEditor.Gui.CompletionWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionData.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionData.cs index db82ec469e..c803227179 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionData.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionData.cs @@ -6,11 +6,6 @@ // using System; -using System.Drawing; -using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using ICSharpCode.TextEditor; namespace ICSharpCode.TextEditor.Gui.CompletionWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionDataProvider.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionDataProvider.cs index 31d03cdb05..544ec52734 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionDataProvider.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/CompletionWindow/ICompletionDataProvider.cs @@ -6,12 +6,7 @@ // using System; -using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; - -using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Gui.CompletionWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/DrawableLine.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/DrawableLine.cs index 6d14585b96..3c8d780d27 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/DrawableLine.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/DrawableLine.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Drawing; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/FoldMargin.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/FoldMargin.cs index 66bc47a69a..4438e9d0cd 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/FoldMargin.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/FoldMargin.cs @@ -6,13 +6,10 @@ // using System; -using System.Windows.Forms; -using System.Collections; using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Drawing.Text; +using System.Windows.Forms; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/GutterMargin.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/GutterMargin.cs index 45fd581c8a..8eea735f84 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/GutterMargin.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/GutterMargin.cs @@ -6,14 +6,11 @@ // using System; +using System.Drawing; using System.IO; using System.Reflection; using System.Windows.Forms; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Drawing.Text; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/IconBarMargin.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/IconBarMargin.cs index 065910546c..1914d4ba39 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/IconBarMargin.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/IconBarMargin.cs @@ -6,12 +6,11 @@ // using System; -using System.Windows.Forms; using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; -using System.Drawing.Text; +using System.Windows.Forms; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Ime.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Ime.cs index bf5b3012ca..7ea07f697c 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Ime.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/Ime.cs @@ -6,8 +6,8 @@ // using System; -using System.Runtime.InteropServices; using System.Drawing; +using System.Runtime.InteropServices; using System.Windows.Forms; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/IInsightDataProvider.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/IInsightDataProvider.cs index 1ffeaebda1..70102d561b 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/IInsightDataProvider.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/IInsightDataProvider.cs @@ -6,12 +6,6 @@ // using System; -using System.Drawing; -using System.Windows.Forms; -using System.Reflection; -using System.Collections; - -using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Gui.InsightWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/InsightWindow.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/InsightWindow.cs index 3bf99784f8..9d43be575c 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/InsightWindow.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/InsightWindow/InsightWindow.cs @@ -6,16 +6,12 @@ // using System; +using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Collections.Generic; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Util; -using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; +using ICSharpCode.TextEditor.Util; namespace ICSharpCode.TextEditor.Gui.InsightWindow { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextArea.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextArea.cs index c573637db9..90c05197c1 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextArea.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextArea.cs @@ -6,21 +6,14 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.IO; using System.ComponentModel; +using System.Diagnostics; using System.Drawing; -using System.Threading; using System.Drawing.Text; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; -using System.Diagnostics; -using System.Windows.Forms; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; using System.Text; -using System.Xml; +using System.Windows.Forms; + using ICSharpCode.TextEditor.Actions; using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Gui.CompletionWindow; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaClipboardHandler.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaClipboardHandler.cs index 8f1296588f..0bd0fcb7f8 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaClipboardHandler.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaClipboardHandler.cs @@ -6,22 +6,12 @@ // using System; -using System.Collections; -using System.IO; -using System.ComponentModel; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; -using System.Diagnostics; -using System.Windows.Forms; -using System.Threading; -using System.Runtime.Remoting; +using System.IO; using System.Runtime.InteropServices; -using System.Xml; -using System.Text; +using System.Windows.Forms; using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Undo; using ICSharpCode.TextEditor.Util; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaControl.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaControl.cs index 40be23286a..8c41151858 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaControl.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaControl.cs @@ -6,21 +6,10 @@ // using System; -using System.Collections; -using System.IO; using System.ComponentModel; using System.Drawing; -using System.Threading; -using System.Drawing.Text; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; -using System.Diagnostics; using System.Windows.Forms; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; -using System.Text; -using System.Xml; -using ICSharpCode.TextEditor.Actions; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaDragDropHandler.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaDragDropHandler.cs index ff0340572c..3d01ca234f 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaDragDropHandler.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaDragDropHandler.cs @@ -6,19 +6,8 @@ // using System; -using System.Collections; -using System.IO; -using System.ComponentModel; using System.Drawing; -using System.Threading; -using System.Drawing.Text; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; -using System.Diagnostics; using System.Windows.Forms; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; -using System.Xml; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaMouseHandler.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaMouseHandler.cs index 012f9a1f0f..f5f9a0a2e1 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaMouseHandler.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaMouseHandler.cs @@ -6,12 +6,11 @@ // using System; -using System.Text; -using System.Collections; using System.Collections.Generic; using System.Drawing; -using System.Threading; +using System.Text; using System.Windows.Forms; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaUpdate.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaUpdate.cs index 169bfa897b..f2011fc1ba 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaUpdate.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextAreaUpdate.cs @@ -6,11 +6,8 @@ // using System; -using System.Windows.Forms; using System.Drawing; -using ICSharpCode.TextEditor.Document; - namespace ICSharpCode.TextEditor { /// diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControl.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControl.cs index e3f387140d..d822c4256f 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControl.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControl.cs @@ -6,23 +6,12 @@ // using System; -using System.Collections; -using System.Collections.Specialized; -using System.IO; using System.ComponentModel; using System.Drawing; -using System.Drawing.Drawing2D; using System.Drawing.Printing; -using System.Diagnostics; using System.Windows.Forms; -using System.Threading; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; -using System.Xml; -using System.Text; using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Actions; namespace ICSharpCode.TextEditor { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControlBase.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControlBase.cs index e966446a39..737c688e32 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControlBase.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextEditorControlBase.cs @@ -7,22 +7,15 @@ using System; using System.Collections.Generic; -using System.IO; using System.ComponentModel; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; using System.Diagnostics; -using System.Windows.Forms; -using System.Threading; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; -using System.Xml; +using System.Drawing; +using System.IO; using System.Text; +using System.Windows.Forms; -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Actions; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs index f237433b86..22e85964b1 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs @@ -6,21 +6,10 @@ // using System; -using System.Diagnostics; -using System.Collections; using System.Collections.Generic; -using System.IO; -using System.ComponentModel; +using System.Diagnostics; using System.Drawing; -using System.Threading; -using System.Drawing.Text; -using System.Drawing.Drawing2D; -using System.Drawing.Printing; using System.Windows.Forms; -using System.Runtime.Remoting; -using System.Runtime.InteropServices; -using System.Text; -using System.Xml; using ICSharpCode.TextEditor.Document; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/ToolTipRequestEventArgs.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/ToolTipRequestEventArgs.cs index d772f742e0..3a5df4bcc9 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/ToolTipRequestEventArgs.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/ToolTipRequestEventArgs.cs @@ -7,7 +7,6 @@ using System; using System.Drawing; -using System.Windows.Forms; namespace ICSharpCode.TextEditor { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoQueue.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoQueue.cs index 767b9f12d0..6ff9410f53 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoQueue.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoQueue.cs @@ -6,8 +6,8 @@ // using System; -using System.Diagnostics; using System.Collections.Generic; +using System.Diagnostics; namespace ICSharpCode.TextEditor.Undo { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoStack.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoStack.cs index 16a8cc91c8..067ab99754 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoStack.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoStack.cs @@ -6,9 +6,8 @@ // using System; -using System.Drawing; -using System.Diagnostics; using System.Collections.Generic; +using System.Drawing; namespace ICSharpCode.TextEditor.Undo { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableDelete.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableDelete.cs index d20910e8c6..87ca5c0cb4 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableDelete.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableDelete.cs @@ -7,11 +7,8 @@ using System; using System.Diagnostics; -using System.Drawing; - using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Undo; - + namespace ICSharpCode.TextEditor.Undo { /// diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableInsert.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableInsert.cs index ac82ade9fd..5e8c7180a1 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableInsert.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableInsert.cs @@ -7,9 +7,7 @@ using System; using System.Diagnostics; -using System.Drawing; using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Undo { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableReplace.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableReplace.cs index 215df5e693..201013ec3d 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableReplace.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Undo/UndoableReplace.cs @@ -7,9 +7,7 @@ using System; using System.Diagnostics; -using System.Drawing; using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Undo; namespace ICSharpCode.TextEditor.Undo { diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/LookupTable.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/LookupTable.cs index fc748d608c..6bab9d3d18 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/LookupTable.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/LookupTable.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.Drawing; using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Util diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/RtfWriter.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/RtfWriter.cs index 1ecbb79cd8..d2c764d832 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/RtfWriter.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/RtfWriter.cs @@ -6,9 +6,10 @@ // using System; +using System.Collections.Generic; using System.Drawing; using System.Text; -using System.Collections.Generic; + using ICSharpCode.TextEditor.Document; namespace ICSharpCode.TextEditor.Util diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/TipText.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/TipText.cs index 6479a57d1f..ab68341814 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/TipText.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/TipText.cs @@ -6,7 +6,6 @@ // using System.Drawing; -using System.Drawing.Text; namespace ICSharpCode.TextEditor.Util { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/AbstractNode.cs b/src/Libraries/NRefactory/Project/Src/Ast/AbstractNode.cs index 5029e1f1c7..c6179019cc 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/AbstractNode.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/AbstractNode.cs @@ -6,11 +6,10 @@ // using System; -using System.Text; -using System.Diagnostics; using System.Collections; using System.Collections.Generic; -using ICSharpCode.NRefactory.Visitors; +using System.Diagnostics; +using System.Text; namespace ICSharpCode.NRefactory.Ast { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/BlockStatement.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/BlockStatement.cs index 5ba891e739..95d4f13141 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/BlockStatement.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/BlockStatement.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.NRefactory.Ast { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/CompilationUnit.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/CompilationUnit.cs index bdf5867c24..0c1242a049 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/CompilationUnit.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/CompilationUnit.cs @@ -6,8 +6,6 @@ // using System; -using System.Threading; -using System.Diagnostics; using System.Collections; namespace ICSharpCode.NRefactory.Ast diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/Expression.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/Expression.cs index 040300e6f4..94115c3576 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/Expression.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/Expression.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.NRefactory.Ast { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/LocalVariableDeclaration.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/LocalVariableDeclaration.cs index 1ce4f69810..e01db430d6 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/LocalVariableDeclaration.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/LocalVariableDeclaration.cs @@ -6,8 +6,6 @@ // using System; -using System.Diagnostics; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.NRefactory.Ast diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/PrimitiveExpression.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/PrimitiveExpression.cs index 612551a124..067b8614c1 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/PrimitiveExpression.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/PrimitiveExpression.cs @@ -6,9 +6,6 @@ // using System; -using System.Diagnostics; -using System.Collections; -using System.Globalization; namespace ICSharpCode.NRefactory.Ast { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/General/Statement.cs b/src/Libraries/NRefactory/Project/Src/Ast/General/Statement.cs index ce009cf9bc..2f075e52ac 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/General/Statement.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/General/Statement.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.NRefactory.Ast { diff --git a/src/Libraries/NRefactory/Project/Src/Ast/Generated.cs b/src/Libraries/NRefactory/Project/Src/Ast/Generated.cs index eddb819902..c5c1593ea4 100644 --- a/src/Libraries/NRefactory/Project/Src/Ast/Generated.cs +++ b/src/Libraries/NRefactory/Project/Src/Ast/Generated.cs @@ -11,9 +11,7 @@ namespace ICSharpCode.NRefactory.Ast { using System; using System.Collections.Generic; - using System.Diagnostics; - - + public class AddHandlerStatement : Statement { Expression eventExpression; diff --git a/src/Libraries/NRefactory/Project/Src/EnvironmentInformationProvider.cs b/src/Libraries/NRefactory/Project/Src/EnvironmentInformationProvider.cs index 7c96c7b6a4..2926499ea8 100644 --- a/src/Libraries/NRefactory/Project/Src/EnvironmentInformationProvider.cs +++ b/src/Libraries/NRefactory/Project/Src/EnvironmentInformationProvider.cs @@ -6,13 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs b/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs index 7a05ffddb2..1fc7d608a5 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs @@ -6,10 +6,10 @@ // using System; -using System.Text; using System.Collections; using System.Collections.Generic; using System.IO; +using System.Text; namespace ICSharpCode.NRefactory.Parser { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/CSharp/Lexer.cs b/src/Libraries/NRefactory/Project/Src/Lexer/CSharp/Lexer.cs index 869ed9ed7c..0062c3de09 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/CSharp/Lexer.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/CSharp/Lexer.cs @@ -6,12 +6,9 @@ // using System; -using System.IO; -using System.Collections; -using System.Diagnostics; using System.Globalization; +using System.IO; using System.Text; -using ICSharpCode.NRefactory.Parser; namespace ICSharpCode.NRefactory.Parser.CSharp { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/ILexer.cs b/src/Libraries/NRefactory/Project/Src/Lexer/ILexer.cs index 80770b82f8..f27f0f6d70 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/ILexer.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/ILexer.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.NRefactory.Parser diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/LookupTable.cs b/src/Libraries/NRefactory/Project/Src/Lexer/LookupTable.cs index 55ef52ea9e..2979e2de63 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/LookupTable.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/LookupTable.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Globalization; namespace ICSharpCode.NRefactory.Parser diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/Special/Comment.cs b/src/Libraries/NRefactory/Project/Src/Lexer/Special/Comment.cs index 448e708a9a..469b9d2884 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/Special/Comment.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/Special/Comment.cs @@ -6,9 +6,6 @@ // using System; -using System.Text; -using System.CodeDom; -using System.Collections; namespace ICSharpCode.NRefactory { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/Special/CommentType.cs b/src/Libraries/NRefactory/Project/Src/Lexer/Special/CommentType.cs index 32fb308261..c92c117aa4 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/Special/CommentType.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/Special/CommentType.cs @@ -6,9 +6,6 @@ // using System; -using System.Text; -using System.CodeDom; -using System.Collections; namespace ICSharpCode.NRefactory { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/Special/PreProcessingDirective.cs b/src/Libraries/NRefactory/Project/Src/Lexer/Special/PreProcessingDirective.cs index b540addff7..875fa3ad20 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/Special/PreProcessingDirective.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/Special/PreProcessingDirective.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using System.Globalization; namespace ICSharpCode.NRefactory { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/Special/SpecialTracker.cs b/src/Libraries/NRefactory/Project/Src/Lexer/Special/SpecialTracker.cs index bc97b93763..6cd4a35431 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/Special/SpecialTracker.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/Special/SpecialTracker.cs @@ -6,9 +6,8 @@ // using System; -using System.Text; -using System.CodeDom; using System.Collections.Generic; +using System.Text; namespace ICSharpCode.NRefactory.Parser { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/Special/TagComment.cs b/src/Libraries/NRefactory/Project/Src/Lexer/Special/TagComment.cs index 9113b6e8f8..fa625f35e7 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/Special/TagComment.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/Special/TagComment.cs @@ -6,9 +6,6 @@ // using System; -using System.Text; -using System.CodeDom; -using System.Collections; namespace ICSharpCode.NRefactory.Parser { diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/VBNet/Lexer.cs b/src/Libraries/NRefactory/Project/Src/Lexer/VBNet/Lexer.cs index 3a1833df69..4e25eedffd 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/VBNet/Lexer.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/VBNet/Lexer.cs @@ -6,12 +6,9 @@ // using System; -using System.IO; -using System.Collections; -using System.Diagnostics; using System.Globalization; +using System.IO; using System.Text; -using ICSharpCode.NRefactory.Parser; namespace ICSharpCode.NRefactory.Parser.VB { diff --git a/src/Libraries/NRefactory/Project/Src/Parser/CSharp/CSharpParser.cs b/src/Libraries/NRefactory/Project/Src/Parser/CSharp/CSharpParser.cs index 79a3d1815c..5c3b838e96 100644 --- a/src/Libraries/NRefactory/Project/Src/Parser/CSharp/CSharpParser.cs +++ b/src/Libraries/NRefactory/Project/Src/Parser/CSharp/CSharpParser.cs @@ -6,8 +6,9 @@ // using System; -using System.Text; using System.Collections.Generic; +using System.Text; + using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Parser.CSharp diff --git a/src/Libraries/NRefactory/Project/Src/Parser/CSharp/Parser.cs b/src/Libraries/NRefactory/Project/Src/Parser/CSharp/Parser.cs index 777d95c9bf..730ad0dd06 100644 --- a/src/Libraries/NRefactory/Project/Src/Parser/CSharp/Parser.cs +++ b/src/Libraries/NRefactory/Project/Src/Parser/CSharp/Parser.cs @@ -1,18 +1,18 @@ #line 1 "cs.ATG" +using System; using System.Collections; using System.Collections.Generic; -using System.Collections.Specialized; -using System.Text; -using ICSharpCode.NRefactory.Parser; + using ICSharpCode.NRefactory.Ast; using ASTAttribute = ICSharpCode.NRefactory.Ast.Attribute; using Types = ICSharpCode.NRefactory.Ast.ClassType; + /* Parser.frame file for NRefactory. */ -using System; -using System.Reflection; + + namespace ICSharpCode.NRefactory.Parser.CSharp { @@ -5332,4 +5332,4 @@ out t); }; } // end Parser -} \ No newline at end of file +} diff --git a/src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs b/src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs index 2233b1efba..d993bda87f 100644 --- a/src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs +++ b/src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs @@ -1,17 +1,18 @@ #line 1 "VBNET.ATG" +using System; using System.Collections; using System.Collections.Generic; -using System.Collections.Specialized; -using System.Text; +using System.Reflection; + using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Parser.VB; using ASTAttribute = ICSharpCode.NRefactory.Ast.Attribute; + /* Parser.frame file for NRefactory. */ -using System; -using System.Reflection; + + namespace ICSharpCode.NRefactory.Parser.VB { @@ -6492,4 +6493,4 @@ out blockStmt); }; } // end Parser -} \ No newline at end of file +} diff --git a/src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNetParser.cs b/src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNetParser.cs index b2d254e620..31850d4eaa 100644 --- a/src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNetParser.cs +++ b/src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNetParser.cs @@ -6,8 +6,9 @@ // using System; -using System.Text; using System.Collections.Generic; +using System.Text; + using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Parser.VB diff --git a/src/Libraries/NRefactory/Project/Src/ParserFactory.cs b/src/Libraries/NRefactory/Project/Src/ParserFactory.cs index ddd7ef63d7..27c0715242 100644 --- a/src/Libraries/NRefactory/Project/Src/ParserFactory.cs +++ b/src/Libraries/NRefactory/Project/Src/ParserFactory.cs @@ -6,9 +6,8 @@ // using System; -using System.Text; using System.IO; -using ICSharpCode.NRefactory.Ast; +using System.Text; namespace ICSharpCode.NRefactory { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractOutputFormatter.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractOutputFormatter.cs index ecf7b3b7a0..73e57d9efd 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractOutputFormatter.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractOutputFormatter.cs @@ -6,13 +6,8 @@ // using System; -using System.Text; using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; +using System.Text; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractPrettyPrintOptions.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractPrettyPrintOptions.cs index 4aa876301e..1569e41c85 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractPrettyPrintOptions.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/AbstractPrettyPrintOptions.cs @@ -5,12 +5,6 @@ // $Revision$ // -using System.Text; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs index 60dfa4fc91..700d3666d1 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs @@ -6,15 +6,15 @@ // using System; -using System.Text; using System.Collections; using System.Collections.Generic; -using System.Globalization; using System.Diagnostics; +using System.Globalization; +using System.Text; +using ICSharpCode.NRefactory.Ast; using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/OutputFormatter.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/OutputFormatter.cs index 5a5095596b..3bd4868a00 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/OutputFormatter.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/OutputFormatter.cs @@ -5,13 +5,8 @@ // $Revision$ // -using System.Text; using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs index aee630022c..87a2a228f7 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs @@ -5,12 +5,6 @@ // $Revision$ // -using System.Text; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs index 902c98ad5e..8d8435b179 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs @@ -6,13 +6,7 @@ // using System; -using System.Text; -using System.Collections; -using System.Diagnostics; - using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/NodeInformVisitor.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/NodeInformVisitor.cs index f4f58d2bb2..6b0587a561 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/NodeInformVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/NodeInformVisitor.cs @@ -6,14 +6,7 @@ // using System; -using System.Text; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.CSharp; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.Visitors; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/SpecialNodesInserter.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/SpecialNodesInserter.cs index e332514f41..3957454817 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/SpecialNodesInserter.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/SpecialNodesInserter.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs index 5a6fa7f435..7bc912f22a 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs @@ -6,13 +6,7 @@ // using System; -using System.Text; -using System.Collections.Generic; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Parser.VB; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputVisitor.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputVisitor.cs index 5a203a23d2..36163896ea 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputVisitor.cs @@ -6,15 +6,15 @@ // using System; -using System.Text; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; +using System.Text; +using ICSharpCode.NRefactory.Ast; using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Parser.VB; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetPrettyPrintOptions.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetPrettyPrintOptions.cs index ba98bd595b..c9c62dfaa6 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetPrettyPrintOptions.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetPrettyPrintOptions.cs @@ -6,13 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.CSharp; -using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.PrettyPrinter { diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/AbstractASTVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/AbstractASTVisitor.cs index 6799c05684..19c5deed69 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/AbstractASTVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/AbstractASTVisitor.cs @@ -10,11 +10,9 @@ namespace ICSharpCode.NRefactory.Visitors { using System; - using System.Collections.Generic; using System.Diagnostics; using ICSharpCode.NRefactory.Ast; - - + public abstract class AbstractAstVisitor : IAstVisitor { public virtual object VisitAddHandlerStatement(AddHandlerStatement addHandlerStatement, object data) { diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/AbstractAstTransformer.cs b/src/Libraries/NRefactory/Project/Src/Visitors/AbstractAstTransformer.cs index f52e52b2fc..9dd505138c 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/AbstractAstTransformer.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/AbstractAstTransformer.cs @@ -12,9 +12,9 @@ namespace ICSharpCode.NRefactory.Visitors { using System; using System.Collections.Generic; using System.Diagnostics; - using ICSharpCode.NRefactory.Ast; - + using ICSharpCode.NRefactory.Ast; + /// /// The AbstractAstTransformer will iterate through the whole AST, /// just like the AbstractAstVisitor. However, the AbstractAstTransformer allows diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/CSharpConstructsVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/CSharpConstructsVisitor.cs index df1915e448..d2979fcd64 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/CSharpConstructsVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/CSharpConstructsVisitor.cs @@ -6,12 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; - -using VB = ICSharpCode.NRefactory.Parser.VB; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Visitors diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/CSharpToVBNetConvertVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/CSharpToVBNetConvertVisitor.cs index b7275143c5..7e01474e4b 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/CSharpToVBNetConvertVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/CSharpToVBNetConvertVisitor.cs @@ -6,11 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; - using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Visitors diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMOutputVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMOutputVisitor.cs index d95de59554..cee2f8b68b 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMOutputVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMOutputVisitor.cs @@ -6,14 +6,12 @@ // using System; -using System.Reflection; using System.CodeDom; -using System.Text; using System.Collections; using System.Collections.Generic; +using System.Text; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.NRefactory.PrettyPrinter; namespace ICSharpCode.NRefactory.Visitors { diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMVerboseOutputGenerator.cs b/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMVerboseOutputGenerator.cs index f30bdd46dd..80fa19d8fb 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMVerboseOutputGenerator.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/CodeDOMVerboseOutputGenerator.cs @@ -6,9 +6,9 @@ // using System; -using System.IO; using System.CodeDom; using System.CodeDom.Compiler; +using System.IO; using System.Security.Permissions; namespace ICSharpCode.NRefactory.Visitors diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/ToCSharpConvertVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/ToCSharpConvertVisitor.cs index 627075b351..091752ddd2 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/ToCSharpConvertVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/ToCSharpConvertVisitor.cs @@ -6,12 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Visitors diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/ToVBNetConvertVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/ToVBNetConvertVisitor.cs index 0eff8ec083..b721153784 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/ToVBNetConvertVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/ToVBNetConvertVisitor.cs @@ -6,12 +6,7 @@ // using System; -using System.Text; -using System.Collections; using System.Collections.Generic; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Ast; using Attribute = ICSharpCode.NRefactory.Ast.Attribute; diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/VBNetConstructsConvertVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/VBNetConstructsConvertVisitor.cs index 400738aafe..d9457ce9f2 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/VBNetConstructsConvertVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/VBNetConstructsConvertVisitor.cs @@ -6,14 +6,9 @@ // using System; -using System.Text; -using System.Collections; using System.Collections.Generic; -using System.Diagnostics; using System.Reflection; -using ICSharpCode.NRefactory.Parser; -using ICSharpCode.NRefactory.Parser.VB; using ICSharpCode.NRefactory.Ast; using Attribute = ICSharpCode.NRefactory.Ast.Attribute; diff --git a/src/Libraries/NRefactory/Project/Src/Visitors/VBNetToCSharpConvertVisitor.cs b/src/Libraries/NRefactory/Project/Src/Visitors/VBNetToCSharpConvertVisitor.cs index c74ebe6bd0..8a24170fdf 100644 --- a/src/Libraries/NRefactory/Project/Src/Visitors/VBNetToCSharpConvertVisitor.cs +++ b/src/Libraries/NRefactory/Project/Src/Visitors/VBNetToCSharpConvertVisitor.cs @@ -6,12 +6,6 @@ // using System; -using System.Text; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; - -using ICSharpCode.NRefactory.Parser; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.NRefactory.Visitors diff --git a/src/Main/Base/Project/Src/Commands/BuildCommands.cs b/src/Main/Base/Project/Src/Commands/BuildCommands.cs index 0e0e04757e..4fde3b387d 100644 --- a/src/Main/Base/Project/Src/Commands/BuildCommands.cs +++ b/src/Main/Base/Project/Src/Commands/BuildCommands.cs @@ -7,11 +7,10 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project.Commands { diff --git a/src/Main/Base/Project/Src/Commands/ChooseLayoutCommand.cs b/src/Main/Base/Project/Src/Commands/ChooseLayoutCommand.cs index 1119af1612..92b4695268 100644 --- a/src/Main/Base/Project/Src/Commands/ChooseLayoutCommand.cs +++ b/src/Main/Base/Project/Src/Commands/ChooseLayoutCommand.cs @@ -9,11 +9,9 @@ using System; using System.Collections.Generic; using System.IO; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Commands { diff --git a/src/Main/Base/Project/Src/Commands/CustomStringTagProvider.cs b/src/Main/Base/Project/Src/Commands/CustomStringTagProvider.cs index 58a96921e4..0a95652991 100644 --- a/src/Main/Base/Project/Src/Commands/CustomStringTagProvider.cs +++ b/src/Main/Base/Project/Src/Commands/CustomStringTagProvider.cs @@ -7,13 +7,7 @@ using System; using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Diagnostics; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Commands/DebugCommands.cs b/src/Main/Base/Project/Src/Commands/DebugCommands.cs index d1ca63f637..f26ef0ae55 100644 --- a/src/Main/Base/Project/Src/Commands/DebugCommands.cs +++ b/src/Main/Base/Project/Src/Commands/DebugCommands.cs @@ -6,10 +6,9 @@ // using System; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; namespace ICSharpCode.SharpDevelop.Project.Commands diff --git a/src/Main/Base/Project/Src/Commands/EditCommands.cs b/src/Main/Base/Project/Src/Commands/EditCommands.cs index 0f7e63a37b..e3bb787d77 100644 --- a/src/Main/Base/Project/Src/Commands/EditCommands.cs +++ b/src/Main/Base/Project/Src/Commands/EditCommands.cs @@ -6,15 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Diagnostics; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Commands/FileCommands.cs b/src/Main/Base/Project/Src/Commands/FileCommands.cs index 2682809321..e6b072f137 100644 --- a/src/Main/Base/Project/Src/Commands/FileCommands.cs +++ b/src/Main/Base/Project/Src/Commands/FileCommands.cs @@ -6,18 +6,13 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Commands { diff --git a/src/Main/Base/Project/Src/Commands/FileMenuCommands.cs b/src/Main/Base/Project/Src/Commands/FileMenuCommands.cs index 0a1a41b40e..610b2a2eaa 100644 --- a/src/Main/Base/Project/Src/Commands/FileMenuCommands.cs +++ b/src/Main/Base/Project/Src/Commands/FileMenuCommands.cs @@ -6,12 +6,9 @@ // using System; -using System.IO; using System.Windows.Forms; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Project.Dialogs; namespace ICSharpCode.SharpDevelop.Project.Commands diff --git a/src/Main/Base/Project/Src/Commands/FileTabStripCommands.cs b/src/Main/Base/Project/Src/Commands/FileTabStripCommands.cs index c2c41851fe..1dc4212813 100644 --- a/src/Main/Base/Project/Src/Commands/FileTabStripCommands.cs +++ b/src/Main/Base/Project/Src/Commands/FileTabStripCommands.cs @@ -7,18 +7,11 @@ using System; using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Diagnostics; using ICSharpCode.Core; - -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Commands.TabStrip { diff --git a/src/Main/Base/Project/Src/Commands/HelpCommands.cs b/src/Main/Base/Project/Src/Commands/HelpCommands.cs index 569d223067..e430deb591 100644 --- a/src/Main/Base/Project/Src/Commands/HelpCommands.cs +++ b/src/Main/Base/Project/Src/Commands/HelpCommands.cs @@ -8,7 +8,6 @@ using System; using System.Diagnostics; using System.IO; -using System.Collections; using System.Windows.Forms; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Commands/NavigationCommands.cs b/src/Main/Base/Project/Src/Commands/NavigationCommands.cs index 172f849f90..a9d18753c0 100644 --- a/src/Main/Base/Project/Src/Commands/NavigationCommands.cs +++ b/src/Main/Base/Project/Src/Commands/NavigationCommands.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Commands diff --git a/src/Main/Base/Project/Src/Commands/ProjectMenuCommands.cs b/src/Main/Base/Project/Src/Commands/ProjectMenuCommands.cs index 124cfae109..4e5bb369db 100644 --- a/src/Main/Base/Project/Src/Commands/ProjectMenuCommands.cs +++ b/src/Main/Base/Project/Src/Commands/ProjectMenuCommands.cs @@ -6,11 +6,8 @@ // using System; -using System.Drawing; using System.Diagnostics; using System.IO; -using System.Collections; -using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Commands/SideBarCommands.cs b/src/Main/Base/Project/Src/Commands/SideBarCommands.cs index a743a960bd..a98b66996d 100644 --- a/src/Main/Base/Project/Src/Commands/SideBarCommands.cs +++ b/src/Main/Base/Project/Src/Commands/SideBarCommands.cs @@ -6,13 +6,8 @@ // using System; -using System.Diagnostics; -using System.IO; -using System.Collections; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Commands diff --git a/src/Main/Base/Project/Src/Commands/ToolsCommands.cs b/src/Main/Base/Project/Src/Commands/ToolsCommands.cs index a12abf5356..af66af2a16 100644 --- a/src/Main/Base/Project/Src/Commands/ToolsCommands.cs +++ b/src/Main/Base/Project/Src/Commands/ToolsCommands.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; using System.Windows.Forms; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Commands/WindowCommands.cs b/src/Main/Base/Project/Src/Commands/WindowCommands.cs index aac0eb49f6..f171b56e16 100644 --- a/src/Main/Base/Project/Src/Commands/WindowCommands.cs +++ b/src/Main/Base/Project/Src/Commands/WindowCommands.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/AbstractPadContent.cs b/src/Main/Base/Project/Src/Gui/AbstractPadContent.cs index 3ca20090cb..87e7d47178 100644 --- a/src/Main/Base/Project/Src/Gui/AbstractPadContent.cs +++ b/src/Main/Base/Project/Src/Gui/AbstractPadContent.cs @@ -6,11 +6,8 @@ // using System; -using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; - namespace ICSharpCode.SharpDevelop.Gui { public abstract class AbstractPadContent : IPadContent diff --git a/src/Main/Base/Project/Src/Gui/AbstractSecondaryViewContent.cs b/src/Main/Base/Project/Src/Gui/AbstractSecondaryViewContent.cs index 87305583e4..06e1e28cd6 100644 --- a/src/Main/Base/Project/Src/Gui/AbstractSecondaryViewContent.cs +++ b/src/Main/Base/Project/Src/Gui/AbstractSecondaryViewContent.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/AbstractViewContent.cs b/src/Main/Base/Project/Src/Gui/AbstractViewContent.cs index ab570e7725..8e6811e52d 100644 --- a/src/Main/Base/Project/Src/Gui/AbstractViewContent.cs +++ b/src/Main/Base/Project/Src/Gui/AbstractViewContent.cs @@ -8,9 +8,6 @@ using System; using System.Collections.Generic; using System.IO; -using System.Windows.Forms; - -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs index ba3e1fd935..77ba867e8e 100644 --- a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs +++ b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs @@ -6,13 +6,6 @@ // using System; -using System.Drawing; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.Undo; -using System.Drawing.Printing; - -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.BrowserDisplayBinding diff --git a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/ExtendedWebBrowser.cs b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/ExtendedWebBrowser.cs index 7d3584241b..568b79d5b0 100644 --- a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/ExtendedWebBrowser.cs +++ b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/ExtendedWebBrowser.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; using System.ComponentModel; using System.Runtime.InteropServices; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/HtmlViewPane.cs b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/HtmlViewPane.cs index 6ee75368cc..f3e35b063e 100644 --- a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/HtmlViewPane.cs +++ b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/HtmlViewPane.cs @@ -9,9 +9,6 @@ using System; using System.Collections; using System.Drawing; using System.Windows.Forms; -using System.Drawing.Printing; - -using ICSharpCode.SharpDevelop.Internal.Undo; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/SchemeExtension.cs b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/SchemeExtension.cs index 1a4afbbf7b..1fdc7c6550 100644 --- a/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/SchemeExtension.cs +++ b/src/Main/Base/Project/Src/Gui/BrowserDisplayBinding/SchemeExtension.cs @@ -7,8 +7,8 @@ using System; using System.Collections; -using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.BrowserDisplayBinding diff --git a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideContainer.cs b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideContainer.cs index 084a88a20b..5b6738b7c4 100644 --- a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideContainer.cs +++ b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideContainer.cs @@ -8,7 +8,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideMenuStripContainer.cs b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideMenuStripContainer.cs index 6b4d29bbdd..01f72952ba 100644 --- a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideMenuStripContainer.cs +++ b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideMenuStripContainer.cs @@ -6,9 +6,7 @@ // using System; -using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideStatusStripContainer.cs b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideStatusStripContainer.cs index b27e73147c..6cfb351e63 100644 --- a/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideStatusStripContainer.cs +++ b/src/Main/Base/Project/Src/Gui/Components/AutoHide/AutoHideStatusStripContainer.cs @@ -6,9 +6,7 @@ // using System; -using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtFolderNode.cs b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtFolderNode.cs index 1b2317f31e..f01893c794 100644 --- a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtFolderNode.cs +++ b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtFolderNode.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Windows.Forms; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeNode.cs b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeNode.cs index 4695d6b92f..7bc023e00b 100644 --- a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeNode.cs +++ b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeNode.cs @@ -8,8 +8,8 @@ using System; using System.Collections.Generic; using System.Drawing; -using System.Diagnostics; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.TextEditor; diff --git a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeViewComparer.cs b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeViewComparer.cs index 70e37f53e7..8af2db5e9d 100644 --- a/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeViewComparer.cs +++ b/src/Main/Base/Project/Src/Gui/Components/ExtTreeView/ExtTreeViewComparer.cs @@ -6,8 +6,8 @@ // using System; -using System.Diagnostics; using System.Collections.Generic; +using System.Diagnostics; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Components/FontSelectionPanel.cs b/src/Main/Base/Project/Src/Gui/Components/FontSelectionPanel.cs index 817901f1fd..3e4a12d3ca 100644 --- a/src/Main/Base/Project/Src/Gui/Components/FontSelectionPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Components/FontSelectionPanel.cs @@ -6,14 +6,12 @@ // using System; -using System.IO; +using System.Collections.Generic; using System.Drawing; using System.Drawing.Text; -using System.Collections.Generic; -using System.Windows.Forms; using System.Threading; +using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/BooleanTypeConverter.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/BooleanTypeConverter.cs index 5b3cb356ac..a20c431a5a 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/BooleanTypeConverter.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/BooleanTypeConverter.cs @@ -8,8 +8,6 @@ using System; using System.ComponentModel; using System.Globalization; -using System.Resources; -using System.Reflection; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/TemplateTypeConverter.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/TemplateTypeConverter.cs index 5c0d0bfbed..10a0b07a72 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/TemplateTypeConverter.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/CustomTypeConverter/TemplateTypeConverter.cs @@ -9,10 +9,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; -using System.Resources; -using System.Reflection; -using System.Drawing; -using System.Drawing.Design; + using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs index dfd579af78..64f51ab5c5 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs @@ -9,10 +9,6 @@ using System; using System.ComponentModel; -using System.Globalization; -using System.Resources; -using System.Reflection; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedProperty.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedProperty.cs index ddcd010024..d87cce927a 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedProperty.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedProperty.cs @@ -6,15 +6,8 @@ // using System; -using System.Collections; using System.ComponentModel; -using System.Globalization; -using System.Resources; -using System.Reflection; -using System.Drawing; -using System.Drawing.Design; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs index 1bfe7ef67d..fd4bf5d5ec 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs @@ -6,9 +6,6 @@ // using System; -using System.Globalization; -using System.Resources; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs index 6ddfa86419..363f8437aa 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs @@ -7,10 +7,6 @@ using System; using System.ComponentModel; -using System.Globalization; -using System.Resources; -using System.Reflection; - using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedTypeDescriptor.cs b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedTypeDescriptor.cs index e26f7482da..c06ca41a80 100644 --- a/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedTypeDescriptor.cs +++ b/src/Main/Base/Project/Src/Gui/Components/LocalizedPropertyGrid/LocalizedTypeDescriptor.cs @@ -8,13 +8,6 @@ using System; using System.Collections; using System.ComponentModel; -using System.Globalization; -using System.Resources; -using System.Reflection; -using System.Drawing; -using System.Drawing.Design; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTab.cs b/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTab.cs index d7d7d6323e..0a1fee9a5f 100644 --- a/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTab.cs +++ b/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTab.cs @@ -6,10 +6,10 @@ // using System; +using System.Collections.Generic; using System.Drawing; -using System.Drawing.Drawing2D; using System.Windows.Forms; -using System.Collections.Generic; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTabItem.cs b/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTabItem.cs index 3773e945dd..91165e54d7 100644 --- a/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTabItem.cs +++ b/src/Main/Base/Project/Src/Gui/Components/SideBar/AxSideTabItem.cs @@ -8,9 +8,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using System.Collections; - -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideBar.cs b/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideBar.cs index ba720a36cf..390c29ee63 100644 --- a/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideBar.cs +++ b/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideBar.cs @@ -6,14 +6,13 @@ // using System; -using System.Diagnostics; using System.Collections; using System.Drawing; using System.Windows.Forms; using System.Xml; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideTabItem.cs b/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideTabItem.cs index 085e0947a3..8de8d82da0 100644 --- a/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideTabItem.cs +++ b/src/Main/Base/Project/Src/Gui/Components/SideBar/SharpDevelopSideTabItem.cs @@ -6,13 +6,8 @@ // using System; -using System.Collections; using System.Drawing; -using System.Windows.Forms; -using System.Xml; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Components/StatusBar/SdStatusBar.cs b/src/Main/Base/Project/Src/Gui/Components/StatusBar/SdStatusBar.cs index 3fbc06dd7f..f44d994ca1 100644 --- a/src/Main/Base/Project/Src/Gui/Components/StatusBar/SdStatusBar.cs +++ b/src/Main/Base/Project/Src/Gui/Components/StatusBar/SdStatusBar.cs @@ -8,6 +8,7 @@ using System; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs b/src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs index 3f131e503f..29a76dcdf6 100644 --- a/src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs +++ b/src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs @@ -7,9 +7,8 @@ using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IClipboardHandler.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IClipboardHandler.cs index 57f59ca922..db6b2c43f7 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IClipboardHandler.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IClipboardHandler.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.SharpDevelop.Internal.Undo; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/ICustomizedCommands.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/ICustomizedCommands.cs index 0c093fc469..8ce3220dd0 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/ICustomizedCommands.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/ICustomizedCommands.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing.Printing; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParsableContent.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParsableContent.cs index b5d7e70aec..ef0b7b2cc2 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParsableContent.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParsableContent.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing.Printing; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParseInformationListener.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParseInformationListener.cs index a005dbcd2e..ea6e01c144 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParseInformationListener.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IParseInformationListener.cs @@ -6,9 +6,7 @@ // using System; -using System.Drawing.Printing; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IPrintable.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IPrintable.cs index 255eba8621..3ce89dd504 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IPrintable.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IPrintable.cs @@ -7,7 +7,6 @@ using System; using System.Drawing.Printing; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IViewContentMemento.cs b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IViewContentMemento.cs index 24fa739fe1..fcb1a40466 100644 --- a/src/Main/Base/Project/Src/Gui/ContentInterfaces/IViewContentMemento.cs +++ b/src/Main/Base/Project/Src/Gui/ContentInterfaces/IViewContentMemento.cs @@ -5,7 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/CommonAboutDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/CommonAboutDialog.cs index d6b6def3d0..77182ec98e 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/CommonAboutDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/CommonAboutDialog.cs @@ -7,16 +7,9 @@ using System; using System.Drawing; -using System.ComponentModel; using System.Windows.Forms; -using System.Resources; -using System.IO; -using System.Reflection; -using System.Runtime.CompilerServices; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/FolderDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/FolderDialog.cs index 3ba5bb5d4a..a0965c6fd1 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/FolderDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/FolderDialog.cs @@ -5,8 +5,8 @@ // $Revision$ // -using System.Windows.Forms.Design; using System.Windows.Forms; +using System.Windows.Forms.Design; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/NewFileDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/NewFileDialog.cs index 30f3603a7f..d26a2ad6e1 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/NewFileDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/NewFileDialog.cs @@ -8,24 +8,15 @@ using System; using System.Collections; using System.Collections.Generic; - -using System.ComponentModel; using System.Drawing; -using System.Reflection; -using System.Diagnostics; -using System.Resources; -using System.Windows.Forms; -using System.Text; -using System.Text.RegularExpressions; -using System.Xml; using System.IO; -using System.CodeDom.Compiler; +using System.Text; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Gui.XmlForms; +using ICSharpCode.SharpDevelop.Internal.Templates; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/NewProjectDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/NewProjectDialog.cs index e17e0cf774..00e79f8959 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/NewProjectDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/NewProjectDialog.cs @@ -7,19 +7,15 @@ using System; using System.Collections; -using System.IO; using System.ComponentModel; using System.Drawing; -using System.Reflection; -using System.Resources; +using System.IO; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Gui.XmlForms; +using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Project.Dialogs { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/EditTemplateDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/EditTemplateDialog.cs index b53589157c..f9e382d8c3 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/EditTemplateDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/EditTemplateDialog.cs @@ -7,11 +7,10 @@ using System; using System.Drawing; -using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.SharpDevelop.Gui.XmlForms; +using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ExternalToolPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ExternalToolPanel.cs index a362e8dbcc..c57f56d68b 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ExternalToolPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ExternalToolPanel.cs @@ -6,12 +6,11 @@ // using System; -using System.IO; using System.Collections.Generic; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Internal.ExternalTool; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs index 145232328c..9f9e14a831 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs @@ -6,13 +6,7 @@ // using System; -using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/EditStandardHeaderPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/EditStandardHeaderPanel.cs index 832a50e155..dcfa743e7f 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/EditStandardHeaderPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/EditStandardHeaderPanel.cs @@ -6,12 +6,7 @@ // using System; -using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Internal.Templates; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/FullscreenPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/FullscreenPanel.cs index 85b5b8c860..be6df30098 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/FullscreenPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/FullscreenPanel.cs @@ -6,12 +6,7 @@ // using System; -using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs index 2ad87b100b..0c82d1eddd 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs @@ -6,10 +6,7 @@ // using System; -using System.IO; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndSolutionOptionsPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndSolutionOptionsPanel.cs index 28e184b60e..197e0b3df2 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndSolutionOptionsPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndSolutionOptionsPanel.cs @@ -7,11 +7,8 @@ using System; using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectCulturePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectCulturePanel.cs index 608fc224db..34b08befb1 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectCulturePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectCulturePanel.cs @@ -9,7 +9,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs index 5ec2a7f685..bca28459a9 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs @@ -6,12 +6,7 @@ // using System; -using System.IO; -using System.Drawing; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/TaskListOptions.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/TaskListOptions.cs index 10f03139b2..593134fdd2 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/TaskListOptions.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/IDEOptions/TaskListOptions.cs @@ -6,12 +6,9 @@ // using System; -using System.IO; -using System.Drawing; using System.Collections.Generic; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/OutputWindowOptionsPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/OutputWindowOptionsPanel.cs index 3c245481e9..1f3eb24e2d 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/OutputWindowOptionsPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/OutputWindowOptionsPanel.cs @@ -5,13 +5,7 @@ // $Revision$ // -using System.IO; -using System.Drawing; -using System.Drawing.Text; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractBuildOptions.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractBuildOptions.cs index 2158b02e27..312ccc509a 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractBuildOptions.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractBuildOptions.cs @@ -6,17 +6,12 @@ // using System; -using System.Collections.Generic; using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Gui.XmlForms; - -using StringPair = System.Collections.Generic.KeyValuePair; +using ICSharpCode.SharpDevelop.Project; +using StringPair = System.Collections.Generic.KeyValuePair; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractProjectOptionPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractProjectOptionPanel.cs index e754e716a1..8a53c5f072 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractProjectOptionPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AbstractProjectOptionPanel.cs @@ -6,11 +6,7 @@ // using System; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.cs index 7fcfd22ea3..2b9fef7fb1 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.cs @@ -6,14 +6,11 @@ // using System; -using System.Collections.Generic; using System.Drawing; using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs index 1d61ec446a..2280abbe4e 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs @@ -7,11 +7,6 @@ using System; using System.IO; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/CreateKey.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/CreateKey.cs index 1fd7272536..4ffe521aa2 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/CreateKey.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/CreateKey.cs @@ -6,10 +6,10 @@ // using System; -using System.Drawing; using System.Diagnostics; using System.IO; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/DebugOptions.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/DebugOptions.cs index 9a030baaf7..63369e270f 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/DebugOptions.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/DebugOptions.cs @@ -7,12 +7,7 @@ using System; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; - using RadioBinding = System.Collections.Generic.KeyValuePair; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Publish.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Publish.cs index 43ee723a57..6f6a2fb463 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Publish.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Publish.cs @@ -6,12 +6,6 @@ // using System; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ReferencePaths.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ReferencePaths.cs index 2f6e4b9f4b..7b28b615b7 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ReferencePaths.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ReferencePaths.cs @@ -6,11 +6,7 @@ // using System; -using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Signing.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Signing.cs index 14890c0e06..719da37cbf 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Signing.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/Signing.cs @@ -10,7 +10,6 @@ using System.IO; using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/PropertyGridPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/PropertyGridPanel.cs index 553d911e6b..0c8cbccbe4 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/PropertyGridPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/PropertyGridPanel.cs @@ -9,9 +9,6 @@ using System; using System.Drawing; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; - namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { public class PropertyGridPanel : AbstractOptionPanel diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ProjectOptionsView.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ProjectOptionsView.cs index b7715e1d94..d143116c69 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ProjectOptionsView.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ProjectOptionsView.cs @@ -6,10 +6,9 @@ // using System; -using System.Drawing; -using System.Collections; using System.Collections.Generic; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs index 1470620c52..eda3b0850b 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs @@ -5,19 +5,20 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using Microsoft.Win32; using System; using System.Collections; using System.Drawing; using System.IO; -using System.Runtime.Remoting.Messaging; using System.Net; +using System.Runtime.Remoting.Messaging; using System.Web.Services.Description; using System.Web.Services.Discovery; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; +using Microsoft.Win32; + namespace ICSharpCode.SharpDevelop.Gui { public class AddWebReferenceDialog : System.Windows.Forms.Form diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs index 7fd1310ee5..40efd1b8e6 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs @@ -6,14 +6,10 @@ // using System; -using System.IO; -using System.Text; using System.Drawing; -using System.Collections; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using MSjogren.GacTool.FusionNative; -using ICSharpCode.SharpDevelop.Project; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs index d383801601..70cfbb6c39 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs @@ -6,18 +6,9 @@ // using System; -using System.Drawing; -using System.Collections.Generic; -using System.ComponentModel; -using System.IO; using System.Windows.Forms; -using System.Reflection; -using System.Reflection.Emit; -using System.Runtime.InteropServices; - -using Microsoft.Win32; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs index f608fdcb91..fdc7b370ba 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs @@ -6,15 +6,11 @@ // using System; -using System.Text; -using System.Drawing; using System.Collections.Generic; -using System.ComponentModel; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs index 5211df2489..ef8bb89832 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs @@ -6,13 +6,9 @@ // using System; -using System.Drawing; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; - using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs index fe52658262..ed732599d3 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs @@ -6,15 +6,12 @@ // using System; -using System.IO; -using System.Drawing; using System.Collections; -using System.Diagnostics; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/UserCredentialsDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/UserCredentialsDialog.cs index e7ed20e155..a08e248123 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/UserCredentialsDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/UserCredentialsDialog.cs @@ -5,11 +5,8 @@ // $Revision$ // -using ICSharpCode.Core; using System; -using System.Drawing; -using System.Net; -using System.Windows.Forms; +using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReference.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReference.cs index c0b83cba0e..44a5b8dcb2 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReference.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReference.cs @@ -5,8 +5,6 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using System; using System.CodeDom; using System.CodeDom.Compiler; @@ -18,6 +16,9 @@ using System.Web.Services.Discovery; using System.Xml.Schema; using System.Xml.Serialization; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.SharpDevelop.Gui { public class WebReference diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReferenceChanges.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReferenceChanges.cs index 7a871c4e04..185d8ff33c 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReferenceChanges.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebReferenceChanges.cs @@ -5,10 +5,12 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Project; using System; using System.Collections.Generic; +using ICSharpCode.NRefactory.Ast; +using ICSharpCode.SharpDevelop.Project; + namespace ICSharpCode.SharpDevelop.Gui { /// diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebServicesView.cs b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebServicesView.cs index 1c6d4c2f13..1ce7fb3b7d 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebServicesView.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/WebServicesView.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Web.Services.Description; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.Gui { public class WebServicesView : System.Windows.Forms.UserControl diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/SharpDevelopColorDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/SharpDevelopColorDialog.cs index e5ca2b14fa..058bb9658b 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/SharpDevelopColorDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/SharpDevelopColorDialog.cs @@ -5,12 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.Gui { /// diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/SolutionConfiguration/SolutionConfigurationEditor.cs b/src/Main/Base/Project/Src/Gui/Dialogs/SolutionConfiguration/SolutionConfigurationEditor.cs index 15848a5393..c0cfdd243f 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/SolutionConfiguration/SolutionConfigurationEditor.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/SolutionConfiguration/SolutionConfigurationEditor.cs @@ -8,8 +8,8 @@ using System; using System.Collections; using System.Collections.Generic; -using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptions.cs b/src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptions.cs index 203e98b260..7b2ab04968 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptions.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptions.cs @@ -6,16 +6,11 @@ // using System; -using System.IO; -using System.Drawing; using System.Collections; using System.Collections.Generic; -using System.ComponentModel; +using System.Drawing; using System.Windows.Forms; -using System.Xml; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/TemplateCategoryComparer.cs b/src/Main/Base/Project/Src/Gui/Dialogs/TemplateCategoryComparer.cs index 8f6280c98a..e114f9052e 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/TemplateCategoryComparer.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/TemplateCategoryComparer.cs @@ -5,9 +5,9 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Internal.Templates; using System; using System.Collections; +using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptions.cs b/src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptions.cs index 702c41a3e9..cf74d51022 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptions.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptions.cs @@ -6,13 +6,10 @@ // using System; -using System.IO; +using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; -using System.Collections.Generic; -using System.ComponentModel; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.XmlForms; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/AbstractWizardPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/AbstractWizardPanel.cs index 3b2259f2bb..572c76af59 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/AbstractWizardPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/AbstractWizardPanel.cs @@ -6,10 +6,6 @@ // using System; -using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/CurrentPanelPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/CurrentPanelPanel.cs index 688c4a47b5..3945cc4417 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/CurrentPanelPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/CurrentPanelPanel.cs @@ -6,13 +6,9 @@ // using System; -using System.Diagnostics; using System.Drawing; using System.Drawing.Drawing2D; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/IWizardPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/IWizardPanel.cs index eaee5cb6ea..544ac3cbbc 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/IWizardPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/IWizardPanel.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; - -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/StatusPanel.cs b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/StatusPanel.cs index 4840257338..012f40ec53 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/StatusPanel.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/StatusPanel.cs @@ -6,13 +6,8 @@ // using System; -using System.Diagnostics; using System.Drawing; -using System.Drawing.Drawing2D; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/WizardDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/WizardDialog.cs index 2fa0fc79db..e0fce519a2 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/WizardDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/Wizard/WizardDialog.cs @@ -6,14 +6,10 @@ // using System; -using System.Diagnostics; -using System.Drawing; -using System.Drawing.Drawing2D; using System.Collections; using System.Collections.Generic; -using System.ComponentModel; +using System.Drawing; using System.Windows.Forms; -using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/WordCountDialog.cs b/src/Main/Base/Project/Src/Gui/Dialogs/WordCountDialog.cs index 0727cb85d1..063e61765b 100644 --- a/src/Main/Base/Project/Src/Gui/Dialogs/WordCountDialog.cs +++ b/src/Main/Base/Project/Src/Gui/Dialogs/WordCountDialog.cs @@ -6,16 +6,14 @@ // using System; -using System.IO; +using System.Collections; using System.Drawing; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using System.Collections; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui.XmlForms; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/FormLocationHelper.cs b/src/Main/Base/Project/Src/Gui/FormLocationHelper.cs index f2378bd8fd..31270a351c 100644 --- a/src/Main/Base/Project/Src/Gui/FormLocationHelper.cs +++ b/src/Main/Base/Project/Src/Gui/FormLocationHelper.cs @@ -8,6 +8,7 @@ using System; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/IPadContent.cs b/src/Main/Base/Project/Src/Gui/IPadContent.cs index fe6aba7ed1..81acb12dd6 100644 --- a/src/Main/Base/Project/Src/Gui/IPadContent.cs +++ b/src/Main/Base/Project/Src/Gui/IPadContent.cs @@ -6,7 +6,6 @@ // using System; -using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/ISecondaryViewContent.cs b/src/Main/Base/Project/Src/Gui/ISecondaryViewContent.cs index 4196741689..1e87db4a5d 100644 --- a/src/Main/Base/Project/Src/Gui/ISecondaryViewContent.cs +++ b/src/Main/Base/Project/Src/Gui/ISecondaryViewContent.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/IViewContent.cs b/src/Main/Base/Project/Src/Gui/IViewContent.cs index 7e4dd15985..7aba5eaed7 100644 --- a/src/Main/Base/Project/Src/Gui/IViewContent.cs +++ b/src/Main/Base/Project/Src/Gui/IViewContent.cs @@ -7,9 +7,6 @@ using System; using System.Collections.Generic; -using System.Windows.Forms; - -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/IWorkbench.cs b/src/Main/Base/Project/Src/Gui/IWorkbench.cs index b9c5f9850e..54d2413bb0 100644 --- a/src/Main/Base/Project/Src/Gui/IWorkbench.cs +++ b/src/Main/Base/Project/Src/Gui/IWorkbench.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/IWorkbenchLayout.cs b/src/Main/Base/Project/Src/Gui/IWorkbenchLayout.cs index a43d65f446..daf784ac66 100644 --- a/src/Main/Base/Project/Src/Gui/IWorkbenchLayout.cs +++ b/src/Main/Base/Project/Src/Gui/IWorkbenchLayout.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/IWorkbenchWindow.cs b/src/Main/Base/Project/Src/Gui/IWorkbenchWindow.cs index f737deb40e..b16349db8a 100644 --- a/src/Main/Base/Project/Src/Gui/IWorkbenchWindow.cs +++ b/src/Main/Base/Project/Src/Gui/IWorkbenchWindow.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowser.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowser.cs index 5f81163497..c148257128 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowser.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowser.cs @@ -6,16 +6,8 @@ // using System; -using System.IO; -using System.ComponentModel; -using System.Windows.Forms; -using System.Drawing; -using System.Collections; using System.Collections.Generic; -using System.Resources; -using System.Xml; -using System.Threading; -using System.Text; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowserToolbarCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowserToolbarCommands.cs index 0fd9965b8a..10e71191b1 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowserToolbarCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/ClassBrowserToolbarCommands.cs @@ -7,13 +7,7 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/ClassNodeBuilders.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/ClassNodeBuilders.cs index 3f7ce251ab..a8c62e345d 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/ClassNodeBuilders.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/ClassNodeBuilders.cs @@ -8,8 +8,8 @@ using System; using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultClassNodeBuilder.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultClassNodeBuilder.cs index a6ad2ba48b..2acc76c4c9 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultClassNodeBuilder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultClassNodeBuilder.cs @@ -6,11 +6,9 @@ // using System; -using System.IO; -using ICSharpCode.Core; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultProjectNodeBuilder.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultProjectNodeBuilder.cs index 09935d1747..4fe738e398 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultProjectNodeBuilder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/DefaultProjectNodeBuilder.cs @@ -6,8 +6,6 @@ // using System; -using System.IO; -using ICSharpCode.Core; using System.Windows.Forms; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/IClassNodeBuilder.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/IClassNodeBuilder.cs index 11474be130..4eb473481f 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/IClassNodeBuilder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/NodeBuilder/IClassNodeBuilder.cs @@ -7,8 +7,8 @@ using System; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/AbstractProjectNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/AbstractProjectNode.cs index 691a0377a5..46d2df605c 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/AbstractProjectNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/AbstractProjectNode.cs @@ -7,9 +7,8 @@ using System; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/BaseTypesNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/BaseTypesNode.cs index 8624df234e..ee098438b5 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/BaseTypesNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/BaseTypesNode.cs @@ -6,13 +6,7 @@ // using System; -using System.IO; using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Collections.Generic; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ClassNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ClassNode.cs index f6e5f05c4a..d26931c303 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ClassNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ClassNode.cs @@ -6,13 +6,7 @@ // using System; -using System.IO; using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Collections.Generic; - -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/DerivedTypesNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/DerivedTypesNode.cs index bd0daa22a7..0d955cbaf2 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/DerivedTypesNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/DerivedTypesNode.cs @@ -6,12 +6,8 @@ // using System; -using System.IO; -using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; using System.Collections.Generic; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/MemberNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/MemberNode.cs index fb0343dcb4..342dec10ce 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/MemberNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/MemberNode.cs @@ -6,15 +6,7 @@ // using System; -using System.IO; -using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Collections.Generic; - -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui.ClassBrowser { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ProjectNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ProjectNode.cs index e308b1d0a7..7da0b90a58 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ProjectNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ProjectNode.cs @@ -6,11 +6,8 @@ // using System; -using System.IO; -using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; using System.Collections.Generic; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ReferenceFolderNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ReferenceFolderNode.cs index e2aa50af3e..3b69789152 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ReferenceFolderNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ClassBrowser/Nodes/ReferenceFolderNode.cs @@ -6,13 +6,7 @@ // using System; -using System.IO; using System.Windows.Forms; -using System.Diagnostics; -using System.Drawing; -using System.Reflection; -using System.Collections.Generic; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs index 9a56301043..c680af5789 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs @@ -6,20 +6,14 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Text; -using System.Threading; -using System.Windows.Forms; using System.Drawing; -using System.CodeDom.Compiler; using System.IO; -using System.Diagnostics; +using System.Threading; +using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageViewToolbarCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageViewToolbarCommands.cs index bc5b53aa1a..b3cb7a3f07 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageViewToolbarCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageViewToolbarCommands.cs @@ -7,13 +7,7 @@ using System; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/MessageViewCategory.cs b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/MessageViewCategory.cs index 9749b48499..6287f275c7 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/MessageViewCategory.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/MessageViewCategory.cs @@ -6,16 +6,7 @@ // using System; -using System.Collections; using System.Text; -using System.Threading; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; - namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/TextEventHandler.cs b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/TextEventHandler.cs index be57322a08..b45e4565e9 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/TextEventHandler.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/TextEventHandler.cs @@ -6,16 +6,6 @@ // using System; -using System.Collections; -using System.Text; -using System.Threading; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; -using ICSharpCode.Core; - namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/DefinitionViewPad.cs b/src/Main/Base/Project/Src/Gui/Pads/DefinitionViewPad.cs index 543aeb8f64..d916b9577c 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/DefinitionViewPad.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/DefinitionViewPad.cs @@ -8,9 +8,9 @@ using System; using System.Windows.Forms; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ErrorList/ErrorListToolbarCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ErrorList/ErrorListToolbarCommands.cs index 5116839160..baa56e9a50 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ErrorList/ErrorListToolbarCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ErrorList/ErrorListToolbarCommands.cs @@ -6,14 +6,7 @@ // using System; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/FileScout.cs b/src/Main/Base/Project/Src/Gui/Pads/FileScout.cs index d8ee439a2e..b971455b30 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/FileScout.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/FileScout.cs @@ -6,18 +6,13 @@ // using System; +using System.Collections; +using System.Drawing; using System.IO; -using System.Text; +using System.Resources; using System.Runtime.InteropServices; -using System.ComponentModel; +using System.Text; using System.Windows.Forms; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Collections; -using System.Reflection; -using System.Resources; -using System.Threading; -using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ClipboardHandlerNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ClipboardHandlerNodeCommands.cs index 1d4c026acc..dde6680566 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ClipboardHandlerNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ClipboardHandlerNodeCommands.cs @@ -6,17 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project.Commands { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/DefaultFileNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/DefaultFileNodeCommands.cs index 003b99515a..37aefc2e4e 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/DefaultFileNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/DefaultFileNodeCommands.cs @@ -6,14 +6,9 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; using System.Collections.Generic; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using System.Diagnostics; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/FolderNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/FolderNodeCommands.cs index a077e19e48..b5d81b5662 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/FolderNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/FolderNodeCommands.cs @@ -6,17 +6,10 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; using System.Collections.Generic; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using System.Diagnostics; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ProjectNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ProjectNodeCommands.cs index b3a919bed1..a426899f36 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ProjectNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ProjectNodeCommands.cs @@ -6,17 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project.Commands { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ReferenceFolderNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ReferenceFolderNodeCommands.cs index 7d6f41aeb7..90665ad156 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ReferenceFolderNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ReferenceFolderNodeCommands.cs @@ -6,20 +6,12 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; using System.Net; using System.Web.Services.Discovery; +using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Project.Commands { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/SolutionNodeCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/SolutionNodeCommands.cs index 2616f7fc55..a3fa477a91 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/SolutionNodeCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/SolutionNodeCommands.cs @@ -7,17 +7,9 @@ using System; using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project.Dialogs; namespace ICSharpCode.SharpDevelop.Project.Commands diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ToolbarCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ToolbarCommands.cs index e938c3aab7..a594f4f072 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ToolbarCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/Commands/ToolbarCommands.cs @@ -6,17 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project.Commands { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs index 48ac08f664..d9f11df690 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs @@ -7,9 +7,10 @@ using System; using System.IO; -using ICSharpCode.Core; using System.Windows.Forms; +using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.Project { public class DefaultDotNetNodeBuilder : IProjectNodeBuilder diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/WebReferenceNodeBuilder.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/WebReferenceNodeBuilder.cs index ddaaed3109..9900f9e47d 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/WebReferenceNodeBuilder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/NodeBuilder/WebReferenceNodeBuilder.cs @@ -5,10 +5,9 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.Windows.Forms; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserControl.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserControl.cs index 3fd073eaf7..d9a1d84799 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserControl.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserControl.cs @@ -6,9 +6,6 @@ // using System; -using System.IO; -using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserPad.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserPad.cs index ca6f3b50eb..8b2039b4a2 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserPad.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/ProjectBrowserPad.cs @@ -7,8 +7,8 @@ using System; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/AbstractProjectBrowserTreeNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/AbstractProjectBrowserTreeNode.cs index 8cfd9b8576..25db98f566 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/AbstractProjectBrowserTreeNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/AbstractProjectBrowserTreeNode.cs @@ -6,11 +6,10 @@ // using System; -using System.IO; using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomFolderNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomFolderNode.cs index 856d3ee457..6addb6b184 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomFolderNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomFolderNode.cs @@ -6,9 +6,6 @@ // using System; -using System.Drawing; -using System.IO; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomNode.cs index 3b1178cf6e..0683bf49c2 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/CustomNode.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ProjectNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ProjectNode.cs index 30fed9d8ef..d8da0e76ed 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ProjectNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ProjectNode.cs @@ -8,9 +8,8 @@ using System; using System.IO; using System.Windows.Forms; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project.Dialogs; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceFolder.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceFolder.cs index 96553dba7c..8618f8e15f 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceFolder.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceFolder.cs @@ -6,8 +6,6 @@ // using System; -using System.Drawing; -using System.IO; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceNode.cs index c35d5a27ea..c0a690089e 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/ReferenceNode.cs @@ -8,7 +8,6 @@ using System; using System.Diagnostics; using System.IO; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionFolderNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionFolderNode.cs index 5f9687da3d..62d24af431 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionFolderNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionFolderNode.cs @@ -7,11 +7,10 @@ using System; using System.Diagnostics; -using System.IO; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project.Dialogs; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionItemNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionItemNode.cs index f192c15351..3a0fb31de1 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionItemNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/SolutionItemNode.cs @@ -6,12 +6,11 @@ // using System; -using System.Diagnostics; using System.IO; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project.Dialogs; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/FileRemoveTreeNodeVisitor.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/FileRemoveTreeNodeVisitor.cs index 39cd9afbd6..dde36e0fcb 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/FileRemoveTreeNodeVisitor.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/FileRemoveTreeNodeVisitor.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/SolutionFolderRemoveVisitor.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/SolutionFolderRemoveVisitor.cs index e7bf1b88c8..64d0272cd9 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/SolutionFolderRemoveVisitor.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/Util/SolutionFolderRemoveVisitor.cs @@ -6,8 +6,6 @@ // using System; -using System.IO; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/WebReferenceNode.cs b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/WebReferenceNode.cs index 2ddd1f68ae..0740a22eca 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/WebReferenceNode.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/ProjectBrowser/TreeNodes/WebReferenceNode.cs @@ -5,8 +5,8 @@ // $Revision$ // -using ICSharpCode.SharpDevelop.Gui; using System; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/IDEContainer.cs b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/IDEContainer.cs index 6a0824cf52..e771a7d9bf 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/IDEContainer.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/IDEContainer.cs @@ -6,18 +6,7 @@ // using System; -using System.Collections; using System.ComponentModel; -using System.ComponentModel.Design; -using System.Drawing; -using System.Drawing.Design; -using System.Windows.Forms; -using System.Windows.Forms.Design; - - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyContainer.cs b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyContainer.cs index ec01e6672b..e2c93cd8c5 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyContainer.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyContainer.cs @@ -7,12 +7,7 @@ using System; using System.Collections; -using System.ComponentModel; using System.ComponentModel.Design; -using System.Drawing; -using System.Drawing.Design; -using System.Windows.Forms; -using System.Windows.Forms.Design; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPad.cs b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPad.cs index 75819b7e95..c800c95268 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPad.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPad.cs @@ -10,14 +10,10 @@ using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; -using System.Drawing.Design; using System.Windows.Forms; -using System.Windows.Forms.Design; - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPadCommands.cs b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPadCommands.cs index 9dc03f55d5..a46d797e5f 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPadCommands.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/PropertyPad/PropertyPadCommands.cs @@ -6,16 +6,7 @@ // using System; -using System.Collections; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.Drawing; -using System.Drawing.Design; -using System.Windows.Forms; -using System.Windows.Forms.Design; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Pads/SideBarView.cs b/src/Main/Base/Project/Src/Gui/Pads/SideBarView.cs index e3c6d4173f..e40379b113 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/SideBarView.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/SideBarView.cs @@ -9,9 +9,7 @@ using System; using System.IO; using System.Windows.Forms; using System.Xml; -using System.Drawing; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskListPad.cs b/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskListPad.cs index 78c17a657f..d9d0d23af6 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskListPad.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskListPad.cs @@ -7,7 +7,6 @@ using System; using System.Windows.Forms; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui diff --git a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicList.cs b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicList.cs index 285e20ec5a..790e5b4bd0 100644 --- a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicList.cs +++ b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicList.cs @@ -6,8 +6,8 @@ // using System; -using System.ComponentModel; using System.Collections.Generic; +using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListItem.cs b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListItem.cs index 0a112f10f6..6569e2b875 100644 --- a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListItem.cs +++ b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListItem.cs @@ -6,8 +6,8 @@ // using System; -using System.Drawing; using System.Diagnostics; +using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.TreeGrid diff --git a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListRow.cs b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListRow.cs index 44985dbc68..adf87f7a80 100644 --- a/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListRow.cs +++ b/src/Main/Base/Project/Src/Gui/TreeGrid/DynamicListRow.cs @@ -7,7 +7,6 @@ using System; using System.Diagnostics; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.TreeGrid { diff --git a/src/Main/Base/Project/Src/Gui/TreeGrid/ScrollButton.cs b/src/Main/Base/Project/Src/Gui/TreeGrid/ScrollButton.cs index 1a0d01d260..e13fa183ae 100644 --- a/src/Main/Base/Project/Src/Gui/TreeGrid/ScrollButton.cs +++ b/src/Main/Base/Project/Src/Gui/TreeGrid/ScrollButton.cs @@ -6,7 +6,6 @@ // using System; -using System.ComponentModel; using System.Drawing; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/Gui/TreeGrid/VerticalScrollContainer.cs b/src/Main/Base/Project/Src/Gui/TreeGrid/VerticalScrollContainer.cs index 5008091b84..f36387555b 100644 --- a/src/Main/Base/Project/Src/Gui/TreeGrid/VerticalScrollContainer.cs +++ b/src/Main/Base/Project/Src/Gui/TreeGrid/VerticalScrollContainer.cs @@ -6,8 +6,6 @@ // using System; -using System.ComponentModel; -using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.TreeGrid diff --git a/src/Main/Base/Project/Src/Gui/Workbench/DefaultWorkbench.cs b/src/Main/Base/Project/Src/Gui/Workbench/DefaultWorkbench.cs index a0239bc0f5..fdde6d2b89 100644 --- a/src/Main/Base/Project/Src/Gui/Workbench/DefaultWorkbench.cs +++ b/src/Main/Base/Project/Src/Gui/Workbench/DefaultWorkbench.cs @@ -6,20 +6,18 @@ // using System; -using System.IO; using System.Collections; using System.Collections.Generic; -using System.Drawing; +using System.ComponentModel; using System.Diagnostics; +using System.Drawing; using System.Globalization; +using System.IO; using System.Reflection; using System.Windows.Forms; -using System.ComponentModel; -using System.Xml; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/LayoutConfiguration.cs b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/LayoutConfiguration.cs index a8dac24b10..e5bb0e478c 100644 --- a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/LayoutConfiguration.cs +++ b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/LayoutConfiguration.cs @@ -8,11 +8,9 @@ using System; using System.Collections.Generic; using System.IO; -using System.Windows.Forms; using System.Xml; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs index cbd6295e77..ea6d6d334d 100644 --- a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs +++ b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs @@ -6,14 +6,10 @@ // using System; -using System.IO; using System.Collections; using System.Collections.Generic; -using System.Drawing; -using System.Diagnostics; -using System.CodeDom.Compiler; +using System.IO; using System.Windows.Forms; -using System.Reflection; using ICSharpCode.Core; using WeifenLuo.WinFormsUI; diff --git a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceWindow.cs b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceWindow.cs index 1ebf441308..1998cd946b 100644 --- a/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceWindow.cs +++ b/src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceWindow.cs @@ -7,9 +7,7 @@ using System; using System.Drawing; -using System.Collections; using System.IO; -using System.Threading; using System.Windows.Forms; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Gui/Workbench/ViewContentEventHandler.cs b/src/Main/Base/Project/Src/Gui/Workbench/ViewContentEventHandler.cs index 4b436fc098..2b7316e2ff 100644 --- a/src/Main/Base/Project/Src/Gui/Workbench/ViewContentEventHandler.cs +++ b/src/Main/Base/Project/Src/Gui/Workbench/ViewContentEventHandler.cs @@ -6,17 +6,6 @@ // using System; -using System.IO; -using System.Collections; -using System.Drawing; -using System.Diagnostics; -using System.CodeDom.Compiler; -using System.Windows.Forms; -using System.ComponentModel; -using System.Xml; - -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs b/src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs index e9f7ae90ad..278bd21ca7 100644 --- a/src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs +++ b/src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs @@ -6,14 +6,8 @@ // using System; -using System.Reflection; -using System.CodeDom.Compiler; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/BaseSharpDevelopForm.cs b/src/Main/Base/Project/Src/Gui/XmlForms/BaseSharpDevelopForm.cs index 4600617662..64dcd13102 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/BaseSharpDevelopForm.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/BaseSharpDevelopForm.cs @@ -7,9 +7,7 @@ using System; using System.Windows.Forms; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.XmlForms; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/DefaultObjectCreator.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/DefaultObjectCreator.cs index e1be6a7422..77b778483f 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/DefaultObjectCreator.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/DefaultObjectCreator.cs @@ -6,11 +6,10 @@ // using System; -using System.Xml; -using System.Collections; using System.Drawing; using System.Reflection; using System.Windows.Forms; +using System.Xml; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IObjectCreator.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IObjectCreator.cs index 58688890b3..e99abd40a5 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IObjectCreator.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IObjectCreator.cs @@ -7,10 +7,6 @@ using System; using System.Xml; -using System.Collections; -using System.Drawing; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IPropertyValueCreator.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IPropertyValueCreator.cs index 986f813e2e..126d6a0e5d 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IPropertyValueCreator.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IPropertyValueCreator.cs @@ -6,11 +6,6 @@ // using System; -using System.Xml; -using System.Collections; -using System.Drawing; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IStringValueFilter.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IStringValueFilter.cs index fe360b79de..09094261b5 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IStringValueFilter.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/IStringValueFilter.cs @@ -6,11 +6,6 @@ // using System; -using System.Xml; -using System.Collections; -using System.Drawing; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlForm.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlForm.cs index d92269c5c2..7e7c7302c6 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlForm.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlForm.cs @@ -6,13 +6,11 @@ // using System; -using System.IO; -using System.Xml; -using System.Collections; using System.Collections.Generic; -using System.Drawing; +using System.IO; using System.Reflection; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.XmlForms diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlLoader.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlLoader.cs index 35e06629db..0f7cdef893 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlLoader.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlLoader.cs @@ -6,17 +6,15 @@ // using System; -using System.IO; -using System.Xml; using System.Collections; using System.Collections.Generic; +using System.ComponentModel; using System.Drawing; +using System.IO; using System.Reflection; -using System.Windows.Forms; -using System.ComponentModel; -using System.ComponentModel.Design; -using System.Text; using System.Text.RegularExpressions; +using System.Windows.Forms; +using System.Xml; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlUserControl.cs b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlUserControl.cs index 60f5952e82..06ec4fcddf 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlUserControl.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/Lib/XmlUserControl.cs @@ -6,14 +6,10 @@ // using System; -using System.IO; - -using System.Xml; using System.Collections.Generic; -using System.Drawing; +using System.IO; using System.Reflection; using System.Windows.Forms; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.XmlForms { diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopPropertyValueCreator.cs b/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopPropertyValueCreator.cs index c51221f241..3a1d2b80e2 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopPropertyValueCreator.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopPropertyValueCreator.cs @@ -6,11 +6,7 @@ // using System; -using System.Xml; -using System.Collections; using System.Drawing; -using System.Reflection; -using System.Windows.Forms; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.XmlForms diff --git a/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopStringValueFilter.cs b/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopStringValueFilter.cs index 94473f2f5a..aa3566398e 100644 --- a/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopStringValueFilter.cs +++ b/src/Main/Base/Project/Src/Gui/XmlForms/SharpDevelopStringValueFilter.cs @@ -6,11 +6,6 @@ // using System; -using System.Xml; -using System.Collections; -using System.Drawing; -using System.Reflection; -using System.Windows.Forms; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Gui.XmlForms diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveContentExtensionEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveContentExtensionEvaluator.cs index 2ff3262bc1..8da738f408 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveContentExtensionEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveContentExtensionEvaluator.cs @@ -7,8 +7,6 @@ using System; using System.IO; -using System.Xml; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveViewContentUntitledEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveViewContentUntitledEvaluator.cs index bea11f8e12..5b6fdaf735 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveViewContentUntitledEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ActiveViewContentUntitledEvaluator.cs @@ -6,9 +6,6 @@ // using System; -using System.Xml; - - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/DebuggerSupportsEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/DebuggerSupportsEvaluator.cs index b3467da026..324ce40a5f 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/DebuggerSupportsEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/DebuggerSupportsEvaluator.cs @@ -6,10 +6,7 @@ // using System; -using System.Xml; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/IsProcessRunningEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/IsProcessRunningEvaluator.cs index 714d17657d..8ad940fce2 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/IsProcessRunningEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/IsProcessRunningEvaluator.cs @@ -6,10 +6,7 @@ // using System; -using System.Xml; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/NavigationConditionEvaluators.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/NavigationConditionEvaluators.cs index db0e0b796e..fc78ae9165 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/NavigationConditionEvaluators.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/NavigationConditionEvaluators.cs @@ -6,11 +6,7 @@ // using System; -using System.IO; -using System.Xml; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ProjectActiveEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ProjectActiveEvaluator.cs index 555429a4f6..2c834af7fd 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ProjectActiveEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/ProjectActiveEvaluator.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections; -using System.Xml; - - -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs index d6877352b0..4a3b2c5be0 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs @@ -6,9 +6,6 @@ // using System; -using System.Xml; - - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs index 64e31d27a8..ccb7e8d99a 100644 --- a/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs +++ b/src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs @@ -6,11 +6,7 @@ // using System; -using System.Xml; - - using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Internal/Doozers/IDialogPanel.cs b/src/Main/Base/Project/Src/Internal/Doozers/IDialogPanel.cs index 5b74629c71..aee6880a6c 100644 --- a/src/Main/Base/Project/Src/Internal/Doozers/IDialogPanel.cs +++ b/src/Main/Base/Project/Src/Internal/Doozers/IDialogPanel.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Internal/ExternalTool/ExternalTool.cs b/src/Main/Base/Project/Src/Internal/ExternalTool/ExternalTool.cs index 7146354424..756faad73f 100644 --- a/src/Main/Base/Project/Src/Internal/ExternalTool/ExternalTool.cs +++ b/src/Main/Base/Project/Src/Internal/ExternalTool/ExternalTool.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using System.Xml; namespace ICSharpCode.SharpDevelop.Internal.ExternalTool diff --git a/src/Main/Base/Project/Src/Internal/ExternalTool/ToolLoader.cs b/src/Main/Base/Project/Src/Internal/ExternalTool/ToolLoader.cs index cac8531eae..130934971c 100644 --- a/src/Main/Base/Project/Src/Internal/ExternalTool/ToolLoader.cs +++ b/src/Main/Base/Project/Src/Internal/ExternalTool/ToolLoader.cs @@ -6,9 +6,8 @@ // using System; -using System.IO; using System.Collections.Generic; -using System.Diagnostics; +using System.IO; using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Internal/Templates/CodeTemplate.cs b/src/Main/Base/Project/Src/Internal/Templates/CodeTemplate.cs index 29c1faff96..ed91cc38e7 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/CodeTemplate.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/CodeTemplate.cs @@ -7,7 +7,6 @@ using System; using System.Xml; -using System.Diagnostics; namespace ICSharpCode.SharpDevelop.Internal.Templates { diff --git a/src/Main/Base/Project/Src/Internal/Templates/CodeTemplateLoader.cs b/src/Main/Base/Project/Src/Internal/Templates/CodeTemplateLoader.cs index 6b0e1ddd38..305bf7c517 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/CodeTemplateLoader.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/CodeTemplateLoader.cs @@ -6,9 +6,8 @@ // using System; -using System.IO; using System.Collections; -using System.Diagnostics; +using System.IO; using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Internal/Templates/File/FileDescriptionTemplate.cs b/src/Main/Base/Project/Src/Internal/Templates/File/FileDescriptionTemplate.cs index 7c55f2311d..4d89fcc9e0 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/File/FileDescriptionTemplate.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/File/FileDescriptionTemplate.cs @@ -8,8 +8,7 @@ using System; using System.IO; using System.Xml; -using System.Collections; -using System.Diagnostics; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Internal/Templates/File/FileTemplate.cs b/src/Main/Base/Project/Src/Internal/Templates/File/FileTemplate.cs index 94c47fee93..84f2976ce8 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/File/FileTemplate.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/File/FileTemplate.cs @@ -6,12 +6,10 @@ // using System; -using System.IO; -using System.Xml; using System.Collections; using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; +using System.IO; +using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Internal/Templates/File/INewFileCreator.cs b/src/Main/Base/Project/Src/Internal/Templates/File/INewFileCreator.cs index 229f99460a..4793112534 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/File/INewFileCreator.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/File/INewFileCreator.cs @@ -6,10 +6,6 @@ // using System; -using System.Xml; -using System.Diagnostics; - -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Internal.Templates { diff --git a/src/Main/Base/Project/Src/Internal/Templates/File/ScriptRunner.cs b/src/Main/Base/Project/Src/Internal/Templates/File/ScriptRunner.cs index b76df9ddae..6ef9281ff5 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/File/ScriptRunner.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/File/ScriptRunner.cs @@ -6,18 +6,11 @@ // using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; +using System.CodeDom.Compiler; +using System.IO; using System.Reflection; -using System.Diagnostics; -using System.Resources; -using System.Windows.Forms; using System.Text; using System.Text.RegularExpressions; -using System.Xml; -using System.IO; -using System.CodeDom.Compiler; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Internal/Templates/Project/CombineDescriptor.cs b/src/Main/Base/Project/Src/Internal/Templates/Project/CombineDescriptor.cs index f4903b2134..0c4b219a41 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/Project/CombineDescriptor.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/Project/CombineDescriptor.cs @@ -6,12 +6,9 @@ // using System; +using System.Collections.Generic; using System.IO; using System.Xml; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Project; diff --git a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectCreateInformation.cs b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectCreateInformation.cs index 64c82fb95d..5f3d60e388 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectCreateInformation.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectCreateInformation.cs @@ -5,13 +5,8 @@ // $Revision$ // -using System.IO; -using System.Collections; using System.Collections.Generic; -using System.Xml; - -using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.SharpDevelop.Gui; +using System.IO; namespace ICSharpCode.SharpDevelop.Internal.Templates { diff --git a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectDescriptor.cs b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectDescriptor.cs index 3fadaf040c..b9e92d58ac 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectDescriptor.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectDescriptor.cs @@ -6,15 +6,12 @@ // using System; -using System.Text; +using System.Collections.Generic; using System.IO; +using System.Text; using System.Xml; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Internal.Templates diff --git a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectTemplate.cs b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectTemplate.cs index fe410d890d..a4aefadc34 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectTemplate.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/Project/ProjectTemplate.cs @@ -6,14 +6,12 @@ // using System; -using System.IO; -using System.Xml; -using System.ComponentModel; using System.Collections; using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; +using System.ComponentModel; +using System.IO; using System.Windows.Forms; +using System.Xml; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Internal/Templates/StandardHeaders.cs b/src/Main/Base/Project/Src/Internal/Templates/StandardHeaders.cs index 28f349169f..3e2837e4ad 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/StandardHeaders.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/StandardHeaders.cs @@ -6,12 +6,11 @@ // using System; -using System.IO; using System.Collections; +using System.IO; using System.Xml; -using System.Diagnostics; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Internal.Templates { diff --git a/src/Main/Base/Project/Src/Internal/Templates/TemplateCategorySortOrderFile.cs b/src/Main/Base/Project/Src/Internal/Templates/TemplateCategorySortOrderFile.cs index dbccfd93a6..56780b2932 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/TemplateCategorySortOrderFile.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/TemplateCategorySortOrderFile.cs @@ -5,13 +5,13 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using System; using System.Collections.Generic; using System.IO; using System.Xml; +using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.Internal.Templates { /// diff --git a/src/Main/Base/Project/Src/Internal/Templates/TextTemplate.cs b/src/Main/Base/Project/Src/Internal/Templates/TextTemplate.cs index 10c03644d3..15e21cfa62 100644 --- a/src/Main/Base/Project/Src/Internal/Templates/TextTemplate.cs +++ b/src/Main/Base/Project/Src/Internal/Templates/TextTemplate.cs @@ -6,10 +6,8 @@ // using System; -using System.IO; -using System.Xml; using System.Collections.Generic; -using System.Diagnostics; +using System.Xml; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Internal/Undo/UndoQueue.cs b/src/Main/Base/Project/Src/Internal/Undo/UndoQueue.cs index 81cb9b6571..215ca261b6 100644 --- a/src/Main/Base/Project/Src/Internal/Undo/UndoQueue.cs +++ b/src/Main/Base/Project/Src/Internal/Undo/UndoQueue.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Internal.Undo diff --git a/src/Main/Base/Project/Src/Internal/Undo/UndoStack.cs b/src/Main/Base/Project/Src/Internal/Undo/UndoStack.cs index 6ea50fd5a2..a12479aeab 100644 --- a/src/Main/Base/Project/Src/Internal/Undo/UndoStack.cs +++ b/src/Main/Base/Project/Src/Internal/Undo/UndoStack.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Internal.Undo diff --git a/src/Main/Base/Project/Src/Project/ChooseStorageLocationButton.cs b/src/Main/Base/Project/Src/Project/ChooseStorageLocationButton.cs index 8ea7614b56..84e9fc786b 100644 --- a/src/Main/Base/Project/Src/Project/ChooseStorageLocationButton.cs +++ b/src/Main/Base/Project/Src/Project/ChooseStorageLocationButton.cs @@ -8,6 +8,7 @@ using System; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Project/ConfigurationGuiBinding.cs b/src/Main/Base/Project/Src/Project/ConfigurationGuiBinding.cs index 5a672b7924..307ab644c6 100644 --- a/src/Main/Base/Project/Src/Project/ConfigurationGuiBinding.cs +++ b/src/Main/Base/Project/Src/Project/ConfigurationGuiBinding.cs @@ -6,13 +6,8 @@ // using System; -using System.Collections.Generic; -using System.ComponentModel; using System.Drawing; -using System.Globalization; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/ConfigurationGuiHelper.cs b/src/Main/Base/Project/Src/Project/ConfigurationGuiHelper.cs index d0daaf3cee..73379faf30 100644 --- a/src/Main/Base/Project/Src/Project/ConfigurationGuiHelper.cs +++ b/src/Main/Base/Project/Src/Project/ConfigurationGuiHelper.cs @@ -11,6 +11,7 @@ using System.ComponentModel; using System.Drawing; using System.Globalization; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Project/Converter/CombineToSolution.cs b/src/Main/Base/Project/Src/Project/Converter/CombineToSolution.cs index 7a045841eb..2290c8a9f6 100644 --- a/src/Main/Base/Project/Src/Project/Converter/CombineToSolution.cs +++ b/src/Main/Base/Project/Src/Project/Converter/CombineToSolution.cs @@ -6,11 +6,12 @@ // using System; +using System.Collections.Generic; +using System.IO; using System.Text; using System.Text.RegularExpressions; -using System.IO; -using System.Collections.Generic; using System.Xml; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project.Converter diff --git a/src/Main/Base/Project/Src/Project/Converter/PrjxToSolutionProject.cs b/src/Main/Base/Project/Src/Project/Converter/PrjxToSolutionProject.cs index 1de201a7af..ea42f7002c 100644 --- a/src/Main/Base/Project/Src/Project/Converter/PrjxToSolutionProject.cs +++ b/src/Main/Base/Project/Src/Project/Converter/PrjxToSolutionProject.cs @@ -7,13 +7,11 @@ using System; using System.Collections.Generic; -using System.Text; -using System.Text.RegularExpressions; using System.IO; +using System.Text; +using System.Windows.Forms; using System.Xml; -using System.Xml.XPath; using System.Xml.Xsl; -using System.Windows.Forms; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/Project/Items/ComReferenceProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/ComReferenceProjectItem.cs index dd870910c3..d1864b45c5 100644 --- a/src/Main/Base/Project/Src/Project/Items/ComReferenceProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/ComReferenceProjectItem.cs @@ -8,7 +8,6 @@ using System; using System.ComponentModel; using System.IO; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/Items/FileProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/FileProjectItem.cs index b47c453906..f2cbed63ca 100644 --- a/src/Main/Base/Project/Src/Project/Items/FileProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/FileProjectItem.cs @@ -8,6 +8,7 @@ using System; using System.ComponentModel; using System.IO; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Project/Items/ProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/ProjectItem.cs index 8c64d9d071..feea65a28b 100644 --- a/src/Main/Base/Project/Src/Project/Items/ProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/ProjectItem.cs @@ -6,12 +6,13 @@ // using System; +using System.Collections.Generic; +using System.ComponentModel; using System.Globalization; -using System.Text; using System.IO; -using System.ComponentModel; -using System.Collections.Generic; +using System.Text; using System.Xml; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Project/Items/ProjectReferenceProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/ProjectReferenceProjectItem.cs index 1c7e138205..bb1b114330 100644 --- a/src/Main/Base/Project/Src/Project/Items/ProjectReferenceProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/ProjectReferenceProjectItem.cs @@ -7,8 +7,6 @@ using System; using System.ComponentModel; -using System.IO; -using System.Reflection; using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Project/Items/ReferenceProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/ReferenceProjectItem.cs index 566f965e67..31aeabd374 100644 --- a/src/Main/Base/Project/Src/Project/Items/ReferenceProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/ReferenceProjectItem.cs @@ -7,7 +7,6 @@ using System; using System.ComponentModel; -using System.Globalization; using System.IO; using System.Reflection; using System.Text; diff --git a/src/Main/Base/Project/Src/Project/Items/TypeLibrary.cs b/src/Main/Base/Project/Src/Project/Items/TypeLibrary.cs index 9337d8b9ea..026cd4db9f 100644 --- a/src/Main/Base/Project/Src/Project/Items/TypeLibrary.cs +++ b/src/Main/Base/Project/Src/Project/Items/TypeLibrary.cs @@ -10,6 +10,7 @@ using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; + using Microsoft.Win32; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Project/Items/UnknownProjectItem.cs b/src/Main/Base/Project/Src/Project/Items/UnknownProjectItem.cs index f86b70b8a2..184d60477d 100644 --- a/src/Main/Base/Project/Src/Project/Items/UnknownProjectItem.cs +++ b/src/Main/Base/Project/Src/Project/Items/UnknownProjectItem.cs @@ -6,9 +6,6 @@ // using System; -using System.IO; -using System.Reflection; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/MSBuildEnums.cs b/src/Main/Base/Project/Src/Project/MSBuildEnums.cs index acae28300c..643e67ef0e 100644 --- a/src/Main/Base/Project/Src/Project/MSBuildEnums.cs +++ b/src/Main/Base/Project/Src/Project/MSBuildEnums.cs @@ -7,9 +7,6 @@ using System; using System.ComponentModel; -using System.Diagnostics; -using System.IO; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/MissingProject.cs b/src/Main/Base/Project/Src/Project/MissingProject.cs index 518f76a480..2b1d05259e 100644 --- a/src/Main/Base/Project/Src/Project/MissingProject.cs +++ b/src/Main/Base/Project/Src/Project/MissingProject.cs @@ -6,8 +6,6 @@ // using System; -using System.IO; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/PropertyGroup.cs b/src/Main/Base/Project/Src/Project/PropertyGroup.cs index aa27b8e908..7bcf14c324 100644 --- a/src/Main/Base/Project/Src/Project/PropertyGroup.cs +++ b/src/Main/Base/Project/Src/Project/PropertyGroup.cs @@ -6,9 +6,9 @@ // using System; +using System.Collections.Generic; using System.ComponentModel; using System.Text; -using System.Collections.Generic; using System.Xml; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Project/Solution/ProjectSection.cs b/src/Main/Base/Project/Src/Project/Solution/ProjectSection.cs index 381fcbe781..d8e8aa6512 100644 --- a/src/Main/Base/Project/Src/Project/Solution/ProjectSection.cs +++ b/src/Main/Base/Project/Src/Project/Solution/ProjectSection.cs @@ -6,10 +6,10 @@ // using System; +using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/Solution/Solution.cs b/src/Main/Base/Project/Src/Project/Solution/Solution.cs index c978622288..74e3e959fc 100644 --- a/src/Main/Base/Project/Src/Project/Solution/Solution.cs +++ b/src/Main/Base/Project/Src/Project/Solution/Solution.cs @@ -6,15 +6,13 @@ // using System; +using System.Collections.Generic; using System.ComponentModel; -using System.CodeDom.Compiler; using System.IO; using System.Text; using System.Text.RegularExpressions; -using System.Collections; -using System.Collections.Generic; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/Solution/SolutionFolder.cs b/src/Main/Base/Project/Src/Project/Solution/SolutionFolder.cs index 5c0701973c..eff04343e0 100644 --- a/src/Main/Base/Project/Src/Project/Solution/SolutionFolder.cs +++ b/src/Main/Base/Project/Src/Project/Solution/SolutionFolder.cs @@ -6,16 +6,10 @@ // using System; +using System.Collections.Generic; using System.ComponentModel; - -using System.CodeDom.Compiler; using System.IO; -using System.Text; using System.Text.RegularExpressions; -using System.Collections; -using System.Collections.Generic; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/Solution/SolutionItem.cs b/src/Main/Base/Project/Src/Project/Solution/SolutionItem.cs index 950e55295a..805e83060f 100644 --- a/src/Main/Base/Project/Src/Project/Solution/SolutionItem.cs +++ b/src/Main/Base/Project/Src/Project/Solution/SolutionItem.cs @@ -6,14 +6,7 @@ // using System; -using System.CodeDom.Compiler; -using System.IO; using System.Text; -using System.Text.RegularExpressions; -using System.Collections; -using System.Collections.Generic; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/UnknownProject.cs b/src/Main/Base/Project/Src/Project/UnknownProject.cs index fe6a44fded..78da346a04 100644 --- a/src/Main/Base/Project/Src/Project/UnknownProject.cs +++ b/src/Main/Base/Project/Src/Project/UnknownProject.cs @@ -6,8 +6,6 @@ // using System; -using System.IO; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Project/WebReferenceUrl.cs b/src/Main/Base/Project/Src/Project/WebReferenceUrl.cs index a215960daf..ae93894dcb 100644 --- a/src/Main/Base/Project/Src/Project/WebReferenceUrl.cs +++ b/src/Main/Base/Project/Src/Project/WebReferenceUrl.cs @@ -5,14 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using System; using System.ComponentModel; using System.IO; -using System.Reflection; -using System.Net; -using System.Web.Services.Description; + +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Services/AmbienceService/AmbienceReflectionDecorator.cs b/src/Main/Base/Project/Src/Services/AmbienceService/AmbienceReflectionDecorator.cs index ce94670abe..9c67421249 100644 --- a/src/Main/Base/Project/Src/Services/AmbienceService/AmbienceReflectionDecorator.cs +++ b/src/Main/Base/Project/Src/Services/AmbienceService/AmbienceReflectionDecorator.cs @@ -6,11 +6,7 @@ // using System; -using System.Collections; -using System.Reflection; - using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Dom.ReflectionLayer; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmark.cs b/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmark.cs index 19d5c7314b..0388f777a9 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmark.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmark.cs @@ -6,12 +6,7 @@ // using System; -using System.Windows.Forms; using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmarkEventArgs.cs b/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmarkEventArgs.cs index 7dbf8e4837..d530c13c42 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmarkEventArgs.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/BreakpointBookmarkEventArgs.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Text; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/Services/Debugger/CurrentLineBookmark.cs b/src/Main/Base/Project/Src/Services/Debugger/CurrentLineBookmark.cs index dbdcf8c476..3d7c4b6014 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/CurrentLineBookmark.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/CurrentLineBookmark.cs @@ -6,17 +6,11 @@ // using System; -using System.Windows.Forms; using System.Drawing; -using System.CodeDom.Compiler; -using System.Collections; -using System.IO; -using System.Diagnostics; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Bookmarks; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/Services/Debugger/DebuggerGridControl.cs b/src/Main/Base/Project/Src/Services/Debugger/DebuggerGridControl.cs index ea386799aa..b6d7a3ba61 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/DebuggerGridControl.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/DebuggerGridControl.cs @@ -9,6 +9,7 @@ using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; + using ICSharpCode.SharpDevelop.Gui.TreeGrid; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/Debugger/DebuggerService.cs b/src/Main/Base/Project/Src/Services/Debugger/DebuggerService.cs index 792e5c1f56..eca8261799 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/DebuggerService.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/DebuggerService.cs @@ -6,23 +6,20 @@ // using System; -using System.Diagnostics; -using System.Collections; using System.Collections.Generic; -using System.IO; +using System.Drawing; using System.Text; +using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor; -using System.Drawing; -using System.Windows.Forms; +using ICSharpCode.TextEditor.Document; using BM = ICSharpCode.SharpDevelop.Bookmarks; -using ITextEditorControlProvider = ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor.ITextEditorControlProvider; using ITextAreaToolTipProvider = ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor.ITextAreaToolTipProvider; +using ITextEditorControlProvider = ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor.ITextEditorControlProvider; using ToolTipInfo = ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor.ToolTipInfo; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/Debugger/DefaultDebugger.cs b/src/Main/Base/Project/Src/Services/Debugger/DefaultDebugger.cs index fb7655e897..4f2297e0eb 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/DefaultDebugger.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/DefaultDebugger.cs @@ -6,11 +6,9 @@ // using System; - -using ICSharpCode.Core; +using System.Diagnostics; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using System.Diagnostics; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/Debugger/IDebugger.cs b/src/Main/Base/Project/Src/Services/Debugger/IDebugger.cs index 1b3035d19e..8184ccda25 100644 --- a/src/Main/Base/Project/Src/Services/Debugger/IDebugger.cs +++ b/src/Main/Base/Project/Src/Services/Debugger/IDebugger.cs @@ -6,8 +6,8 @@ // using System; -using ICSharpCode.SharpDevelop.Project; using System.Diagnostics; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingDoozer.cs b/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingDoozer.cs index d3ae78a4da..379cc09d7a 100644 --- a/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingDoozer.cs +++ b/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingDoozer.cs @@ -7,8 +7,6 @@ using System; using System.Collections; -using System.Diagnostics; - using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingService.cs b/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingService.cs index 1b0e0f9201..2d8356527e 100644 --- a/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingService.cs +++ b/src/Main/Base/Project/Src/Services/DisplayBinding/DisplayBindingService.cs @@ -6,15 +6,7 @@ // using System; -using System.Xml; -using System.IO; -using System.Collections; -using System.Reflection; -using System.CodeDom.Compiler; - -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.Core; - using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/DisplayBinding/IDisplayBinding.cs b/src/Main/Base/Project/Src/Services/DisplayBinding/IDisplayBinding.cs index a15fad97d0..8f068ed2c8 100644 --- a/src/Main/Base/Project/Src/Services/DisplayBinding/IDisplayBinding.cs +++ b/src/Main/Base/Project/Src/Services/DisplayBinding/IDisplayBinding.cs @@ -6,10 +6,6 @@ // using System; -using System.IO; - -using ICSharpCode.SharpDevelop.Project; - using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/DisplayBinding/ISubDisplayBinding.cs b/src/Main/Base/Project/Src/Services/DisplayBinding/ISubDisplayBinding.cs index b5aa494028..e087a92298 100644 --- a/src/Main/Base/Project/Src/Services/DisplayBinding/ISubDisplayBinding.cs +++ b/src/Main/Base/Project/Src/Services/DisplayBinding/ISubDisplayBinding.cs @@ -6,10 +6,6 @@ // using System; -using System.IO; - -using ICSharpCode.SharpDevelop.Project; - using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/File/FileEventArgs.cs b/src/Main/Base/Project/Src/Services/File/FileEventArgs.cs index 83c578ace5..47f35cdfeb 100644 --- a/src/Main/Base/Project/Src/Services/File/FileEventArgs.cs +++ b/src/Main/Base/Project/Src/Services/File/FileEventArgs.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/File/FileRenameEventArgs.cs b/src/Main/Base/Project/Src/Services/File/FileRenameEventArgs.cs index cf738610cb..6163c96581 100644 --- a/src/Main/Base/Project/Src/Services/File/FileRenameEventArgs.cs +++ b/src/Main/Base/Project/Src/Services/File/FileRenameEventArgs.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/File/FileService.cs b/src/Main/Base/Project/Src/Services/File/FileService.cs index c61902abee..a8e093a964 100644 --- a/src/Main/Base/Project/Src/Services/File/FileService.cs +++ b/src/Main/Base/Project/Src/Services/File/FileService.cs @@ -9,9 +9,9 @@ using System; using System.Collections.Generic; using System.IO; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/Language/Language.cs b/src/Main/Base/Project/Src/Services/Language/Language.cs index c19d49ba92..c232111457 100644 --- a/src/Main/Base/Project/Src/Services/Language/Language.cs +++ b/src/Main/Base/Project/Src/Services/Language/Language.cs @@ -6,14 +6,6 @@ // using System; -using System.IO; -using System.Collections; -using System.Threading; -using System.Resources; -using System.Drawing; -using System.Diagnostics; -using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/Language/LanguageService.cs b/src/Main/Base/Project/Src/Services/Language/LanguageService.cs index 49f8692770..6d13d04d2e 100644 --- a/src/Main/Base/Project/Src/Services/Language/LanguageService.cs +++ b/src/Main/Base/Project/Src/Services/Language/LanguageService.cs @@ -6,15 +6,12 @@ // using System; -using System.IO; -using System.Windows.Forms; using System.Collections; -using System.Threading; -using System.Resources; using System.Drawing; -using System.Diagnostics; -using System.Reflection; +using System.IO; +using System.Windows.Forms; using System.Xml; + using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop diff --git a/src/Main/Base/Project/Src/Services/LanguageBinding/ILanguageBinding.cs b/src/Main/Base/Project/Src/Services/LanguageBinding/ILanguageBinding.cs index 5c2328f09b..06e90c6c4a 100644 --- a/src/Main/Base/Project/Src/Services/LanguageBinding/ILanguageBinding.cs +++ b/src/Main/Base/Project/Src/Services/LanguageBinding/ILanguageBinding.cs @@ -6,10 +6,7 @@ // using System; -using System.CodeDom.Compiler; using System.Xml; - -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Project diff --git a/src/Main/Base/Project/Src/Services/LanguageBinding/LanguageBindingDoozer.cs b/src/Main/Base/Project/Src/Services/LanguageBinding/LanguageBindingDoozer.cs index d7cf69c643..375a71b018 100644 --- a/src/Main/Base/Project/Src/Services/LanguageBinding/LanguageBindingDoozer.cs +++ b/src/Main/Base/Project/Src/Services/LanguageBinding/LanguageBindingDoozer.cs @@ -7,10 +7,7 @@ using System; using System.Collections; -using System.Diagnostics; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/ParserService/DomHostCallback.cs b/src/Main/Base/Project/Src/Services/ParserService/DomHostCallback.cs index f31ac7e10d..811ce94f56 100644 --- a/src/Main/Base/Project/Src/Services/ParserService/DomHostCallback.cs +++ b/src/Main/Base/Project/Src/Services/ParserService/DomHostCallback.cs @@ -6,9 +6,9 @@ // using System; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/ParserService/Doozer/ProjectContentRegistryDescriptor.cs b/src/Main/Base/Project/Src/Services/ParserService/Doozer/ProjectContentRegistryDescriptor.cs index 759afcf5c2..508f490e85 100644 --- a/src/Main/Base/Project/Src/Services/ParserService/Doozer/ProjectContentRegistryDescriptor.cs +++ b/src/Main/Base/Project/Src/Services/ParserService/Doozer/ProjectContentRegistryDescriptor.cs @@ -9,8 +9,8 @@ using System; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/ParserService/Net1xProjectContentRegistry.cs b/src/Main/Base/Project/Src/Services/ParserService/Net1xProjectContentRegistry.cs index 0d01e0943d..78c8b072c2 100644 --- a/src/Main/Base/Project/Src/Services/ParserService/Net1xProjectContentRegistry.cs +++ b/src/Main/Base/Project/Src/Services/ParserService/Net1xProjectContentRegistry.cs @@ -9,7 +9,6 @@ using System; using System.IO; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/ParserService/NetCFProjectContentRegistry.cs b/src/Main/Base/Project/Src/Services/ParserService/NetCFProjectContentRegistry.cs index ef23e9a0d9..263721ab31 100644 --- a/src/Main/Base/Project/Src/Services/ParserService/NetCFProjectContentRegistry.cs +++ b/src/Main/Base/Project/Src/Services/ParserService/NetCFProjectContentRegistry.cs @@ -6,11 +6,9 @@ // using System; -using Microsoft.Win32; using System.IO; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Gui; +using Microsoft.Win32; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/ProjectService/ParseableFileContentEnumerator.cs b/src/Main/Base/Project/Src/Services/ProjectService/ParseableFileContentEnumerator.cs index b3b8dff826..0b6071505d 100644 --- a/src/Main/Base/Project/Src/Services/ProjectService/ParseableFileContentEnumerator.cs +++ b/src/Main/Base/Project/Src/Services/ProjectService/ParseableFileContentEnumerator.cs @@ -10,6 +10,7 @@ using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Services/ProjectService/ProjectLoader.cs b/src/Main/Base/Project/Src/Services/ProjectService/ProjectLoader.cs index ac2a2e4c0e..6987eec23e 100644 --- a/src/Main/Base/Project/Src/Services/ProjectService/ProjectLoader.cs +++ b/src/Main/Base/Project/Src/Services/ProjectService/ProjectLoader.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.Project { diff --git a/src/Main/Base/Project/Src/Services/ProjectService/ProjectService.cs b/src/Main/Base/Project/Src/Services/ProjectService/ProjectService.cs index 2dce123107..2dc648bb26 100644 --- a/src/Main/Base/Project/Src/Services/ProjectService/ProjectService.cs +++ b/src/Main/Base/Project/Src/Services/ProjectService/ProjectService.cs @@ -8,6 +8,7 @@ using System; using System.IO; using System.Text; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/FindReferencesAndRenameHelper.cs b/src/Main/Base/Project/Src/Services/RefactoringService/FindReferencesAndRenameHelper.cs index e7e6d6cef6..d64c39b28f 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/FindReferencesAndRenameHelper.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/FindReferencesAndRenameHelper.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Drawing; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/NamespaceRefactoringService.cs b/src/Main/Base/Project/Src/Services/RefactoringService/NamespaceRefactoringService.cs index ac454b4654..20ed3c9669 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/NamespaceRefactoringService.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/NamespaceRefactoringService.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringMenuBuilder.cs b/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringMenuBuilder.cs index 7fb23044cd..7deba91818 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringMenuBuilder.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringMenuBuilder.cs @@ -10,7 +10,6 @@ using System.Collections.Generic; using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.Bookmarks; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringService.cs b/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringService.cs index d80239fa69..e3e7f71646 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringService.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/RefactoringService.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Drawing; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/TextEditorDocument.cs b/src/Main/Base/Project/Src/Services/RefactoringService/TextEditorDocument.cs index ef51b1c481..4638bb1df8 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/TextEditorDocument.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/TextEditorDocument.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Drawing; + using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; using IDocumentLine = ICSharpCode.SharpDevelop.Dom.Refactoring.IDocumentLine; diff --git a/src/Main/Base/Project/Src/Services/StatusBar/StatusBarService.cs b/src/Main/Base/Project/Src/Services/StatusBar/StatusBarService.cs index 82b83e0e91..61b4126dbd 100644 --- a/src/Main/Base/Project/Src/Services/StatusBar/StatusBarService.cs +++ b/src/Main/Base/Project/Src/Services/StatusBar/StatusBarService.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using System.Drawing; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/Services/Tasks/Task.cs b/src/Main/Base/Project/Src/Services/Tasks/Task.cs index 49068a3a9c..c9c8277862 100644 --- a/src/Main/Base/Project/Src/Services/Tasks/Task.cs +++ b/src/Main/Base/Project/Src/Services/Tasks/Task.cs @@ -6,10 +6,7 @@ // using System; -using System.IO; -using System.Collections; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/Services/Tasks/TaskService.cs b/src/Main/Base/Project/Src/Services/Tasks/TaskService.cs index dff195f244..98061129c2 100644 --- a/src/Main/Base/Project/Src/Services/Tasks/TaskService.cs +++ b/src/Main/Base/Project/Src/Services/Tasks/TaskService.cs @@ -6,13 +6,13 @@ // using System; -using System.IO; using System.Collections.Generic; +using System.IO; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/Base/Project/Src/TextEditor/Actions.cs b/src/Main/Base/Project/Src/TextEditor/Actions.cs index 097d1d5476..da12b4b969 100644 --- a/src/Main/Base/Project/Src/TextEditor/Actions.cs +++ b/src/Main/Base/Project/Src/TextEditor/Actions.cs @@ -5,18 +5,13 @@ // $Revision$ // -using System.Drawing; -using System.Windows.Forms; using System; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Actions; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Actions; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Actions { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Bookmark.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Bookmark.cs index 748ee82349..c87c01cd7d 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Bookmark.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Bookmark.cs @@ -7,11 +7,6 @@ using System; using System.ComponentModel; -using System.Collections; -using System.Collections.Generic; -using System.Drawing; -using System.Text; -using ICSharpCode.Core; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkConverter.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkConverter.cs index eecf5a102d..624240bbf8 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkConverter.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkConverter.cs @@ -7,10 +7,8 @@ using System; using System.ComponentModel; -using System.Text; using System.Globalization; -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; +using System.Text; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkManager.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkManager.cs index b1640c69fd..abb4b83852 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkManager.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/BookmarkManager.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/ClassMemberBookmark.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/ClassMemberBookmark.cs index 86f65bebdc..b5e6533d70 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/ClassMemberBookmark.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/ClassMemberBookmark.cs @@ -6,15 +6,13 @@ // using System; -using System.Collections; -using System.Collections.Generic; using System.Drawing; -using System.Text; using System.Windows.Forms; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Commands/MenuCommands.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Commands/MenuCommands.cs index ad4f490434..2948cbbe99 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Commands/MenuCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Commands/MenuCommands.cs @@ -6,24 +6,9 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - -using ICSharpCode.Core; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Actions; using ICSharpCode.SharpDevelop.DefaultEditor.Commands; +using ICSharpCode.TextEditor.Actions; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPad.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPad.cs index 36ce791076..0abe26a8f8 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPad.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPad.cs @@ -6,20 +6,11 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Text; -using System.Threading; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Commands; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPadToolbarCommands.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPadToolbarCommands.cs index f51aaa3280..51d2a1eff2 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPadToolbarCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/BookmarkPadToolbarCommands.cs @@ -6,22 +6,9 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Text; -using System.Threading; -using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.DefaultEditor.Commands; -using ICSharpCode.SharpDevelop; -using ICSharpCode.TextEditor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor.Actions; namespace ICSharpCode.SharpDevelop.Bookmarks diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkFolderNode.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkFolderNode.cs index b8de72cc4c..d420676896 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkFolderNode.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkFolderNode.cs @@ -6,13 +6,14 @@ // using System; -using System.IO; -using System.Drawing; using System.Collections.Generic; +using System.Drawing; +using System.IO; using System.Windows.Forms; -using ICSharpCode.TextEditor.Document; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkNode.cs b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkNode.cs index 13d5aa906e..64494d764a 100644 --- a/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkNode.cs +++ b/src/Main/Base/Project/Src/TextEditor/Bookmarks/Pad/Nodes/BookmarkNode.cs @@ -7,12 +7,11 @@ using System; using System.Drawing; -using System.Collections.Generic; using System.Windows.Forms; -using ICSharpCode.Core; + +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.Bookmarks { diff --git a/src/Main/Base/Project/Src/TextEditor/Codons/AddInTreeSyntaxModeProvider.cs b/src/Main/Base/Project/Src/TextEditor/Codons/AddInTreeSyntaxModeProvider.cs index 8d2d084b57..615f9e236d 100644 --- a/src/Main/Base/Project/Src/TextEditor/Codons/AddInTreeSyntaxModeProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Codons/AddInTreeSyntaxModeProvider.cs @@ -6,11 +6,13 @@ // using System; +using System.Collections.Generic; using System.Diagnostics; using System.Xml; -using System.Collections.Generic; + using ICSharpCode.Core; using ICSharpCode.TextEditor.Document; + namespace ICSharpCode.SharpDevelop.DefaultEditor.Codons { /// diff --git a/src/Main/Base/Project/Src/TextEditor/Codons/EditActionDoozer.cs b/src/Main/Base/Project/Src/TextEditor/Codons/EditActionDoozer.cs index 357f5da8c0..380c2c271b 100644 --- a/src/Main/Base/Project/Src/TextEditor/Codons/EditActionDoozer.cs +++ b/src/Main/Base/Project/Src/TextEditor/Codons/EditActionDoozer.cs @@ -9,10 +9,8 @@ using System; using System.Collections; using System.Reflection; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Actions; +using ICSharpCode.Core; using ICSharpCode.TextEditor.Actions; namespace ICSharpCode.SharpDevelop.DefaultEditor.Codons diff --git a/src/Main/Base/Project/Src/TextEditor/Codons/SyntaxModeDoozer.cs b/src/Main/Base/Project/Src/TextEditor/Codons/SyntaxModeDoozer.cs index a336cd6fd3..52d089bc62 100644 --- a/src/Main/Base/Project/Src/TextEditor/Codons/SyntaxModeDoozer.cs +++ b/src/Main/Base/Project/Src/TextEditor/Codons/SyntaxModeDoozer.cs @@ -6,17 +6,12 @@ // using System; -using System.IO; using System.Collections; +using System.IO; using System.Reflection; -using System.Windows.Forms; using System.Xml; using ICSharpCode.Core; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Actions; -using ICSharpCode.TextEditor.Actions; using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Codons diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractClassImplementorCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractClassImplementorCodeGenerator.cs index 81864cdb13..3f913841b7 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractClassImplementorCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractClassImplementorCodeGenerator.cs @@ -8,11 +8,10 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.NRefactory.Ast; +using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.Refactoring; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractFieldCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractFieldCodeGenerator.cs index eddd842684..eb6cc77fa2 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractFieldCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractFieldCodeGenerator.cs @@ -6,7 +6,6 @@ // using System; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractPropertyCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractPropertyCodeGenerator.cs index 2accd80a8b..21d831f52a 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractPropertyCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/AbstractPropertyCodeGenerator.cs @@ -6,11 +6,6 @@ // using System; -using System.Collections; -using ICSharpCode.TextEditor; - -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGenerationForm.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGenerationForm.cs index d8976740dc..c8c452607f 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGenerationForm.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGenerationForm.cs @@ -9,9 +9,10 @@ using System; using System.Collections; using System.Drawing; using System.Windows.Forms; -using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.Dom; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGeneratorBase.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGeneratorBase.cs index 67d33f316d..8fa4fbbcf3 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGeneratorBase.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/CodeGeneratorBase.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.Refactoring; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ConstructorCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ConstructorCodeGenerator.cs index e8b68f19a8..79e32c79c0 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ConstructorCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ConstructorCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/EqualsCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/EqualsCodeGenerator.cs index 64dfb74a25..727918e94c 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/EqualsCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/EqualsCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; using ICSharpCode.SharpDevelop.Dom; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/GetterAndSetterCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/GetterAndSetterCodeGenerator.cs index cf890ee6eb..49189c439a 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/GetterAndSetterCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/GetterAndSetterCodeGenerator.cs @@ -8,6 +8,7 @@ using System; using System.Collections; using System.Collections.Generic; + using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/InterfaceImplementorCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/InterfaceImplementorCodeGenerator.cs index 29cce4bdf2..db0c904911 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/InterfaceImplementorCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/InterfaceImplementorCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.NRefactory.Ast; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OnXXXMethodsCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OnXXXMethodsCodeGenerator.cs index 14fc19b0c2..a98612b4f2 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OnXXXMethodsCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OnXXXMethodsCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.NRefactory.Ast; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverrideMethodsCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverrideMethodsCodeGenerator.cs index 2a7bd9ec9b..8e2a953be2 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverrideMethodsCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverrideMethodsCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.NRefactory.Ast; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverridePropertiesCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverridePropertiesCodeGenerator.cs index fc59d6a0f4..24a8437913 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverridePropertiesCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/OverridePropertiesCodeGenerator.cs @@ -9,7 +9,6 @@ using System; using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.NRefactory.Ast; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/SetterCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/SetterCodeGenerator.cs index a582e8c900..fc06e6517f 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/SetterCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/SetterCodeGenerator.cs @@ -8,6 +8,7 @@ using System; using System.Collections; using System.Collections.Generic; + using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ToStringCodeGenerator.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ToStringCodeGenerator.cs index 7ad1246485..4a37cf6439 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ToStringCodeGenerator.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CodeGenerators/ToStringCodeGenerator.cs @@ -10,7 +10,6 @@ using System.Collections; using System.Collections.Generic; using System.Text; -using ICSharpCode.Core; using ICSharpCode.NRefactory.Ast; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/CommentRegionCommand.cs b/src/Main/Base/Project/Src/TextEditor/Commands/CommentRegionCommand.cs index 36c4fd0e27..bfa1855bcd 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/CommentRegionCommand.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/CommentRegionCommand.cs @@ -6,19 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - using ICSharpCode.Core; - -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/FoldingCommands.cs b/src/Main/Base/Project/Src/TextEditor/Commands/FoldingCommands.cs index 0d9c90e8c2..89ea213622 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/FoldingCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/FoldingCommands.cs @@ -6,24 +6,7 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; -using System.Xml; -using System.Xml.Xsl; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; -using ICSharpCode.Core; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/GenerateCodeCommand.cs b/src/Main/Base/Project/Src/TextEditor/Commands/GenerateCodeCommand.cs index dc80469559..2f7debdb3b 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/GenerateCodeCommand.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/GenerateCodeCommand.cs @@ -6,23 +6,14 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Actions; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Actions; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/NavigationCommands.cs b/src/Main/Base/Project/Src/TextEditor/Commands/NavigationCommands.cs index 66e6949816..a1434eeaef 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/NavigationCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/NavigationCommands.cs @@ -6,8 +6,6 @@ // using System; - -using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Actions; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/SearchCommands.cs b/src/Main/Base/Project/Src/TextEditor/Commands/SearchCommands.cs index 85287cb720..3d08791713 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/SearchCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/SearchCommands.cs @@ -6,23 +6,10 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - using ICSharpCode.Core; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Actions; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; +using ICSharpCode.TextEditor.Actions; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/TextAreaContextmenuCommands.cs b/src/Main/Base/Project/Src/TextEditor/Commands/TextAreaContextmenuCommands.cs index d0b6dec1c1..3cb39172f8 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/TextAreaContextmenuCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/TextAreaContextmenuCommands.cs @@ -6,22 +6,14 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; using System.Collections; -using System.ComponentModel; using System.Windows.Forms; -using System.Diagnostics; -using System.Text; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor; using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Commands; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Commands/ToolCommands.cs b/src/Main/Base/Project/Src/TextEditor/Commands/ToolCommands.cs index 1a6529fad0..58064c9f04 100644 --- a/src/Main/Base/Project/Src/TextEditor/Commands/ToolCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/Commands/ToolCommands.cs @@ -6,25 +6,18 @@ // using System; -using System.IO; -using System.Threading; using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; +using System.IO; using System.Text; +using System.Windows.Forms; using System.Xml; using System.Xml.Xsl; -using System.Xml.XPath; using ICSharpCode.Core; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Commands { diff --git a/src/Main/Base/Project/Src/TextEditor/Conditions/TextContentCondition.cs b/src/Main/Base/Project/Src/TextEditor/Conditions/TextContentCondition.cs index 28dea4797c..3f8e511144 100644 --- a/src/Main/Base/Project/Src/TextEditor/Conditions/TextContentCondition.cs +++ b/src/Main/Base/Project/Src/TextEditor/Conditions/TextContentCondition.cs @@ -6,12 +6,7 @@ // using System; -using System.Xml; - - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.TextEditor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Conditions diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.cs index 54f2522be6..8a951144c1 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.cs @@ -8,21 +8,17 @@ using System; using System.Collections; using System.Collections.Generic; -using System.IO; using System.Drawing; -using System.ComponentModel; +using System.IO; using System.Windows.Forms; -using System.Resources; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Gui.CompletionWindow; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.SharpDevelop.Project; - using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.Gui.XmlForms; +using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.Gui { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CodeCompletionBinding.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CodeCompletionBinding.cs index 8a09009c12..71da92ba99 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CodeCompletionBinding.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CodeCompletionBinding.cs @@ -8,8 +8,8 @@ using System; using System.Collections; using System.IO; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AbstractCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AbstractCompletionDataProvider.cs index fb430a03b7..5b321c7104 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AbstractCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AbstractCompletionDataProvider.cs @@ -7,13 +7,11 @@ using System; using System.Collections; -using System.Collections.Specialized; using System.Windows.Forms; -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AttributesDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AttributesDataProvider.cs index 1c074a6943..eed7a74b05 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AttributesDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/AttributesDataProvider.cs @@ -6,14 +6,8 @@ // using System; -using System.Collections; -using System.Collections.Specialized; -using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor; using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CachedCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CachedCompletionDataProvider.cs index 35167762d9..35f8b48fd3 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CachedCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CachedCompletionDataProvider.cs @@ -6,14 +6,8 @@ // using System; -using System.Collections; -using System.Collections.Specialized; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionData.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionData.cs index 5e08a80a73..c7c1b80b81 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionData.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionData.cs @@ -7,14 +7,13 @@ using System; using System.Drawing; -using System.Xml; using System.Text; using System.Text.RegularExpressions; -using System.IO; +using System.Xml; +using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; -using ICSharpCode.Core; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataProvider.cs index 16a3ef7de9..070f13a76e 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataProvider.cs @@ -7,12 +7,9 @@ using System; using System.Diagnostics; - using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataUsageCache.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataUsageCache.cs index 5ec03d8121..5d6a6d934a 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataUsageCache.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CodeCompletionDataUsageCache.cs @@ -8,8 +8,8 @@ using System; using System.Collections.Generic; using System.IO; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Project; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CommentCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CommentCompletionDataProvider.cs index 3ac2a7c56c..518d217501 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CommentCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CommentCompletionDataProvider.cs @@ -6,17 +6,10 @@ // using System; -using System.Drawing; -using System.Windows.Forms; -using System.Reflection; using System.Collections; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor; - using ICSharpCode.SharpDevelop.Dom; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CtrlSpaceCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CtrlSpaceCompletionDataProvider.cs index 5c2b5941e4..865cbd9f70 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CtrlSpaceCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/CtrlSpaceCompletionDataProvider.cs @@ -6,13 +6,8 @@ // using System; -using System.Diagnostics; - -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/OverrideCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/OverrideCompletionDataProvider.cs index 0e8b8afa39..3363aa518b 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/OverrideCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/OverrideCompletionDataProvider.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom.Refactoring; using ICSharpCode.TextEditor; diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TemplateCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TemplateCompletionDataProvider.cs index 592b57ea9a..eac955e028 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TemplateCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TemplateCompletionDataProvider.cs @@ -6,14 +6,10 @@ // using System; -using System.Drawing; -using System.Windows.Forms; -using System.Reflection; using System.Collections; +using System.Windows.Forms; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Gui.CompletionWindow; diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TextCompletionDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TextCompletionDataProvider.cs index 34adacce1a..43ebbf8d54 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TextCompletionDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/CompletionWindow/TextCompletionDataProvider.cs @@ -6,12 +6,7 @@ // using System; -using System.Diagnostics; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Gui.CompletionWindow; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaControlProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaControlProvider.cs index 5ecd0c5ab3..93dec18a90 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaControlProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaControlProvider.cs @@ -6,13 +6,6 @@ // using System; -using System.Collections; -using System.Drawing; -using System.Drawing.Text; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaToolTipProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaToolTipProvider.cs index ca19f984a3..e8d3226aaa 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaToolTipProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ITextAreaToolTipProvider.cs @@ -6,8 +6,6 @@ // using System; - -using ICSharpCode.Core; using ICSharpCode.TextEditor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/IncrementalSearch.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/IncrementalSearch.cs index 456b13b6f9..516fc4c0d1 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/IncrementalSearch.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/IncrementalSearch.cs @@ -5,15 +5,14 @@ // $Revision$ // -using ICSharpCode.Core; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Gui; using System; -using System.IO; using System.Text; using System.Windows.Forms; +using ICSharpCode.Core; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; + namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { public class IncrementalSearch : IDisposable diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/IndexerInsightDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/IndexerInsightDataProvider.cs index 1dc979c860..b8d89e9f57 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/IndexerInsightDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/IndexerInsightDataProvider.cs @@ -6,20 +6,8 @@ // using System; -using System.Drawing; -using System.Windows.Forms; -using System.Reflection; -using System.Collections; -using System.Collections.Generic; - -using ICSharpCode.SharpDevelop.Internal.Templates; -using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Gui.InsightWindow; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; - +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/MethodInsightDataProvider.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/MethodInsightDataProvider.cs index 97feb423a6..7387f5878d 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/MethodInsightDataProvider.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/InsightWindow/MethodInsightDataProvider.cs @@ -6,18 +6,15 @@ // using System; -using System.Drawing; using System.Collections; using System.Collections.Generic; using ICSharpCode.Core; -using ICSharpCode.TextEditor.Document; using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Gui.InsightWindow; - namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor { public class MethodInsightDataProvider : IInsightDataProvider diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ParserFoldingStrategy.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ParserFoldingStrategy.cs index 73c521a625..f69e102fe6 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ParserFoldingStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/ParserFoldingStrategy.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/SharpDevelopTextAreaControl.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/SharpDevelopTextAreaControl.cs index 4320795d1b..9f432d081e 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/SharpDevelopTextAreaControl.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/SharpDevelopTextAreaControl.cs @@ -7,11 +7,6 @@ using System; using System.Collections.Generic; -using System.IO; -using System.Text; -using System.Collections; -using System.Drawing; -using System.Diagnostics; using System.Windows.Forms; using ICSharpCode.Core; diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextEditorDisplayBinding.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextEditorDisplayBinding.cs index 7a2fc6068b..1b2f055916 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextEditorDisplayBinding.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextEditorDisplayBinding.cs @@ -6,7 +6,6 @@ // using System; -using System.Drawing; using System.Drawing.Printing; using System.IO; using System.Windows.Forms; diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextNavigationPoint.cs b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextNavigationPoint.cs index 3e132d0507..446fa88f1f 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextNavigationPoint.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/Editor/TextNavigationPoint.cs @@ -9,8 +9,6 @@ using System; using System.Drawing; using System.IO; -using ICSharpCode.Core; - namespace ICSharpCode.SharpDevelop { /// diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs index 35e6d7175c..63902f9efd 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs @@ -6,17 +6,12 @@ // using System; -using System.IO; -using System.Collections; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Internal.Templates; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs index 2ad3f769bb..960df47b75 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs @@ -6,11 +6,7 @@ // using System; -using System.Text; using System.Windows.Forms; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Gui; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeTemplatePanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeTemplatePanel.cs index 4cec0bb8d8..47b603bb0a 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeTemplatePanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeTemplatePanel.cs @@ -6,17 +6,11 @@ // using System; -using System.IO; using System.Collections; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; -using ICSharpCode.SharpDevelop.Internal.Templates; - using ICSharpCode.Core; - -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; +using ICSharpCode.SharpDevelop.Internal.Templates; namespace ICSharpCode.SharpDevelop.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/GeneralTextEditorPanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/GeneralTextEditorPanel.cs index 56d8e68d44..4253d760da 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/GeneralTextEditorPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/GeneralTextEditorPanel.cs @@ -6,21 +6,14 @@ // using System; -using System.IO; -using System.Collections; -using System.Collections.Generic; using System.Drawing; -using System.Drawing.Text; using System.Text; using System.Windows.Forms; -using System.Threading; - -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs index 5bc8e418a6..4a0c873c8c 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs @@ -6,17 +6,12 @@ // using System; -using System.IO; -using System.Drawing; using System.Windows.Forms; - -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.Internal.ExternalTool; using ICSharpCode.Core; - +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchMainMenuCommands.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchMainMenuCommands.cs index e034b3de30..a107def6bb 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchMainMenuCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchMainMenuCommands.cs @@ -6,24 +6,9 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - using ICSharpCode.Core; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Actions; - -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.SharpDevelop; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchToolbarCommands.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchToolbarCommands.cs index 41c823f1fa..ecf0b18806 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchToolbarCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Commands/SearchToolbarCommands.cs @@ -6,22 +6,8 @@ // using System; -using System.IO; -using System.Threading; -using System.Drawing; -using System.Drawing.Printing; -using System.Collections; using System.Windows.Forms; -using System.Diagnostics; -using System.Text; - using ICSharpCode.Core; -using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Actions; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/AllOpenDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/AllOpenDocumentIterator.cs index b47d330419..53839e0f68 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/AllOpenDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/AllOpenDocumentIterator.cs @@ -6,10 +6,8 @@ // using System; -using System.Collections; - -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/CurrentDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/CurrentDocumentIterator.cs index 0ecf7f957d..642403a9dd 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/CurrentDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/CurrentDocumentIterator.cs @@ -6,12 +6,9 @@ // using System; -using System.Collections; - +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/DirectoryDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/DirectoryDocumentIterator.cs index 07e1da0a5a..eb5bb06ee6 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/DirectoryDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/DirectoryDocumentIterator.cs @@ -6,15 +6,12 @@ // using System; -using System.Collections; using System.Collections.Generic; using System.IO; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.Core; -using ICSharpCode.TextEditor; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/IDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/IDocumentIterator.cs index 28fb726dee..db75b398be 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/IDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/IDocumentIterator.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/ProvidedDocumentInformation.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/ProvidedDocumentInformation.cs index c636831386..b7fb0b059c 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/ProvidedDocumentInformation.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/ProvidedDocumentInformation.cs @@ -6,10 +6,6 @@ // using System; -using System.IO; -using System.Collections; - -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeProjectDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeProjectDocumentIterator.cs index eea7b03c5a..8fbc4c450a 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeProjectDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeProjectDocumentIterator.cs @@ -9,11 +9,10 @@ using System; using System.Collections; using System.IO; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.Core; -using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeSolutionDocumentIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeSolutionDocumentIterator.cs index c2af0141d3..5d60ce915e 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeSolutionDocumentIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/DocumentIterator/WholeSolutionDocumentIterator.cs @@ -9,11 +9,10 @@ using System; using System.Collections; using System.IO; +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.Core; -using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/ITextIteratorBuilder.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/ITextIteratorBuilder.cs index 42ab805ffd..cf74afc230 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/ITextIteratorBuilder.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/ITextIteratorBuilder.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/Search.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/Search.cs index 2505d82edb..e1e838c8ba 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/Search.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/Search.cs @@ -6,11 +6,8 @@ // using System; -using System.Collections; using System.Diagnostics; -using ICSharpCode.SharpDevelop.Gui; - namespace SearchAndReplace { public class Search diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceManager.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceManager.cs index 1ab06bd20c..2914e21c5e 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceManager.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceManager.cs @@ -6,17 +6,15 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Diagnostics; - -using ICSharpCode.SharpDevelop.Gui; using System.Windows.Forms; + +using ICSharpCode.Core; +using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceUtilities.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceUtilities.cs index 3404dc5116..256d80e1d2 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceUtilities.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchReplaceUtilities.cs @@ -10,8 +10,8 @@ using System.Collections; using System.IO; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BoyerMooreSearchStrategy.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BoyerMooreSearchStrategy.cs index 7c03950e2b..cbdd9c72b3 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BoyerMooreSearchStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BoyerMooreSearchStrategy.cs @@ -6,13 +6,8 @@ // using System; -using System.Drawing; -using System.Collections; using System.Collections.Generic; -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; - namespace SearchAndReplace { /// diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BruteForceSearchStrategy.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BruteForceSearchStrategy.cs index 857156e65d..8dde45f934 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BruteForceSearchStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/BruteForceSearchStrategy.cs @@ -6,9 +6,6 @@ // using System; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/ISearchStrategy.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/ISearchStrategy.cs index 6f2d4e061c..fdcd3c96cc 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/ISearchStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/ISearchStrategy.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/RegExSearchStrategy.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/RegExSearchStrategy.cs index 5f460e6537..31817f6831 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/RegExSearchStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/RegExSearchStrategy.cs @@ -7,9 +7,7 @@ using System; using System.Text.RegularExpressions; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/SearchResult.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/SearchResult.cs index 28371b5e07..8f93ae7729 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/SearchResult.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/SearchResult.cs @@ -6,11 +6,7 @@ // using System; -using System.IO; using System.Drawing; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/WildcardSearchStrategy.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/WildcardSearchStrategy.cs index ef2e0ccdce..1b24c24cdf 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/WildcardSearchStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/SearchStrategy/WildcardSearchStrategy.cs @@ -7,9 +7,6 @@ using System; using System.Collections; - -using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIterator.cs index 14ef268d22..9ac94ccf85 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIterator.cs @@ -7,7 +7,6 @@ using System; using System.Diagnostics; -using System.Collections; using ICSharpCode.TextEditor.Document; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIteratorBuilder.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIteratorBuilder.cs index 8185b1c772..1f3fcb3755 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIteratorBuilder.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ForwardTextIteratorBuilder.cs @@ -7,8 +7,6 @@ using System; using System.Diagnostics; -using System.Collections; -using ICSharpCode.TextEditor.Document; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ITextIterator.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ITextIterator.cs index 62a49119ca..a07d145a58 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ITextIterator.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Engine/TextIterator/ITextIterator.cs @@ -6,8 +6,8 @@ // using System; -using System.Collections; using ICSharpCode.TextEditor.Document; + namespace SearchAndReplace { /// diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Gui/SearchAndReplacePanel.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Gui/SearchAndReplacePanel.cs index 9f6cc5dc7e..7d9be38378 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Gui/SearchAndReplacePanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Gui/SearchAndReplacePanel.cs @@ -6,18 +6,12 @@ // using System; -using System.Text.RegularExpressions; -using System.IO; -using System.Drawing; -using System.ComponentModel; using System.Windows.Forms; - -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor.Document; using ICSharpCode.Core; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui.XmlForms; using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchResultNode.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchResultNode.cs index 2026ae886e..9d87bc186e 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchResultNode.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchResultNode.cs @@ -6,15 +6,15 @@ // using System; -using System.IO; using System.Drawing; -using System.Collections.Generic; +using System.IO; using System.Windows.Forms; -using ICSharpCode.SharpDevelop.Gui; + using ICSharpCode.Core; +using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.TextEditor; using ICSharpCode.TextEditor.Document; -using ICSharpCode.SharpDevelop; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchRootNode.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchRootNode.cs index 21fc84c3fb..437fd7b411 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchRootNode.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/Nodes/SearchRootNode.cs @@ -6,12 +6,12 @@ // using System; -using System.Drawing; using System.Collections.Generic; +using System.Drawing; using System.Windows.Forms; + using ICSharpCode.Core; using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.TextEditor.Document; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanel.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanel.cs index b3fce0c973..9c5401704c 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanel.cs @@ -6,18 +6,10 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Text; -using System.Threading; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; + using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui.OptionPanels; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Gui; namespace SearchAndReplace diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanelToolbarCommands.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanelToolbarCommands.cs index 5658343f0e..74493e2947 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanelToolbarCommands.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/Pad/SearchResultPanelToolbarCommands.cs @@ -6,19 +6,10 @@ // using System; -using System.Collections; -using System.Collections.Generic; -using System.Text; -using System.Threading; using System.Windows.Forms; -using System.Drawing; -using System.CodeDom.Compiler; -using System.IO; -using System.Diagnostics; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Gui; -using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop; +using ICSharpCode.SharpDevelop.Gui; namespace SearchAndReplace { diff --git a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/SearchOptions.cs b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/SearchOptions.cs index ee7e962fd4..d0f16d325f 100644 --- a/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/SearchOptions.cs +++ b/src/Main/Base/Project/Src/TextEditor/SearchAndReplace/SearchOptions.cs @@ -6,13 +6,8 @@ // using System; -using System.IO; -using System.Drawing; - using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Internal.Undo; - namespace SearchAndReplace { public enum SearchStrategyType { diff --git a/src/Main/Base/Project/Src/TextEditor/XmlFormattingStrategy.cs b/src/Main/Base/Project/Src/TextEditor/XmlFormattingStrategy.cs index cea7a52dac..5b07f57bff 100644 --- a/src/Main/Base/Project/Src/TextEditor/XmlFormattingStrategy.cs +++ b/src/Main/Base/Project/Src/TextEditor/XmlFormattingStrategy.cs @@ -7,18 +7,15 @@ using System; using System.Collections; -using System.Drawing; using System.Diagnostics; using System.IO; -using System.Windows.Forms; using System.Text; using System.Xml; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; -using ICSharpCode.TextEditor.Document; -using ICSharpCode.TextEditor.Actions; using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Actions; +using ICSharpCode.TextEditor.Document; namespace ICSharpCode.SharpDevelop.DefaultEditor { diff --git a/src/Main/Base/Project/Src/Util/OutputReader.cs b/src/Main/Base/Project/Src/Util/OutputReader.cs index e874fb15df..40a67956c2 100644 --- a/src/Main/Base/Project/Src/Util/OutputReader.cs +++ b/src/Main/Base/Project/Src/Util/OutputReader.cs @@ -6,7 +6,6 @@ // using System; -using System.Diagnostics; using System.IO; using System.Text; using System.Threading; diff --git a/src/Main/Base/Project/Src/Util/ProcessRunner.cs b/src/Main/Base/Project/Src/Util/ProcessRunner.cs index d1a3e27eeb..92faeac233 100644 --- a/src/Main/Base/Project/Src/Util/ProcessRunner.cs +++ b/src/Main/Base/Project/Src/Util/ProcessRunner.cs @@ -5,11 +5,12 @@ // $Revision$ // -using ICSharpCode.Core; using System; using System.Diagnostics; using System.Runtime.InteropServices; +using ICSharpCode.Core; + namespace ICSharpCode.SharpDevelop.Util { /// diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/AddIn.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/AddIn.cs index 11e03ac7e5..b0832829f8 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/AddIn.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/AddIn.cs @@ -6,9 +6,8 @@ // using System; -using System.Resources; -using System.IO; using System.Collections.Generic; +using System.IO; using System.Xml; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs index f556336360..5887b9b783 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs @@ -7,8 +7,8 @@ using System; using System.Collections.Generic; -using System.IO; using System.Diagnostics; +using System.IO; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/Codon.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/Codon.cs index 0404345735..39f77dac0d 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/Codon.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/Codon.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using System.Collections; using System.Collections.Generic; diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/ComplexCondition.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/ComplexCondition.cs index 91ee1feb52..3847678416 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/ComplexCondition.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/ComplexCondition.cs @@ -6,8 +6,8 @@ // using System; -using System.Text; using System.Diagnostics; +using System.Text; using System.Xml; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/CompareConditionEvaluator.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/CompareConditionEvaluator.cs index c197086068..9d79e8c25d 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/CompareConditionEvaluator.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/CompareConditionEvaluator.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/LazyConditionEvaluator.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/LazyConditionEvaluator.cs index e5cefcfa72..3ab355b2bb 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/LazyConditionEvaluator.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/LazyConditionEvaluator.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/OwnerStateConditionEvaluator.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/OwnerStateConditionEvaluator.cs index 9b7d0c75be..1d717b08f9 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/OwnerStateConditionEvaluator.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultConditionEvaluators/OwnerStateConditionEvaluator.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDescriptor.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDescriptor.cs index 7c91483691..99fb7186ae 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDescriptor.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDescriptor.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDoozer.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDoozer.cs index b9619351c2..df5d74651e 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDoozer.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/Icon/IconDoozer.cs @@ -7,8 +7,6 @@ using System; using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractCheckableMenuCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractCheckableMenuCommand.cs index 3705396239..b374aebeca 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractCheckableMenuCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractCheckableMenuCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractMenuCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractMenuCommand.cs index 0abe1a54d8..4784a91c34 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractMenuCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/AbstractMenuCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/Menu.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/Menu.cs index d407f46c4d..d0bbfbf0a0 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/Menu.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/Menu.cs @@ -7,10 +7,6 @@ using System; using System.Collections; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCheckBox.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCheckBox.cs index fec0e53919..312c4e3065 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCheckBox.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCheckBox.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCommand.cs index 9f4c9dcb49..b02638e884 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuCommand.cs @@ -7,9 +7,6 @@ using System; using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuSeparator.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuSeparator.cs index 4ba373fd15..fd2b58f503 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuSeparator.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/Gui/MenuSeparator.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ICheckableMenuCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ICheckableMenuCommand.cs index 1f3de2404a..c1fa4dee88 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ICheckableMenuCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ICheckableMenuCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/IMenuCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/IMenuCommand.cs index 49d057850c..4157c67a7d 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/IMenuCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/IMenuCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ISubmenuBuilder.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ISubmenuBuilder.cs index d3830287f0..9ddecf46c1 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ISubmenuBuilder.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/ISubmenuBuilder.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/MenuItemDoozer.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/MenuItemDoozer.cs index 2998fbc75e..7d8b5bb81c 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/MenuItemDoozer.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/MenuItem/MenuItemDoozer.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; using System.Collections; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractComboBoxCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractComboBoxCommand.cs index 64f331fa4f..ce538a5b8c 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractComboBoxCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractComboBoxCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractTextBoxCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractTextBoxCommand.cs index 6ae9049aba..654d8c19e3 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractTextBoxCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/AbstractTextBoxCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarComboBox.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarComboBox.cs index a3ebb9f22c..7bcb0832cf 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarComboBox.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarComboBox.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarLabel.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarLabel.cs index 09d4b337d8..b0bd65d65b 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarLabel.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarLabel.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSeparator.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSeparator.cs index 3a6dbc81ed..e6d2e2c99d 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSeparator.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSeparator.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSplitButton.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSplitButton.cs index ac17bf778e..f86720c1de 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSplitButton.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarSplitButton.cs @@ -6,8 +6,8 @@ // using System; -using System.Drawing; using System.Collections; +using System.Drawing; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarTextBox.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarTextBox.cs index 834f1a0e89..ebb687473c 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarTextBox.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/Gui/ToolBarTextBox.cs @@ -6,10 +6,6 @@ // using System; -using System.Drawing; -using System.Diagnostics; -using System.Drawing.Text; -using System.Drawing.Imaging; using System.Windows.Forms; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/IComboBoxCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/IComboBoxCommand.cs index c32254fd85..62fc6985ce 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/IComboBoxCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/IComboBoxCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ITextBoxCommand.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ITextBoxCommand.cs index 69ac7eac29..afe20b55c9 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ITextBoxCommand.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ITextBoxCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ToolBarItemDoozer.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ToolBarItemDoozer.cs index 633085efbd..6c5633323a 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ToolBarItemDoozer.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/DefaultDoozers/ToolBarItem/ToolBarItemDoozer.cs @@ -6,7 +6,6 @@ // using System; -using System.Windows.Forms; using System.Collections; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/ExtensionPath.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/ExtensionPath.cs index 461bbfc7f7..b4e3f53eff 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/ExtensionPath.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/ExtensionPath.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using System.Collections.Generic; using System.Xml; diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs index 3747f23aae..ab9cdaf553 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs @@ -6,9 +6,9 @@ // using System; -using System.Reflection; -using System.IO; using System.Collections.Generic; +using System.IO; +using System.Reflection; using System.Xml; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/AddInTree/AddInManager.cs b/src/Main/Core/Project/Src/AddInTree/AddInManager.cs index f7e3ad58fd..046bb5f4e1 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddInManager.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddInManager.cs @@ -8,8 +8,8 @@ using System; using System.Collections.Generic; using System.IO; -using System.Xml; using System.Text; +using System.Xml; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddInTree.cs b/src/Main/Core/Project/Src/AddInTree/AddInTree.cs index 0b30e3cf7c..00e693a0f7 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddInTree.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddInTree.cs @@ -6,11 +6,10 @@ // using System; -using System.Resources; -using System.IO; -using System.Reflection; using System.Collections; using System.Collections.Generic; +using System.IO; +using System.Resources; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/AddInTree/AddInTreeNode.cs b/src/Main/Core/Project/Src/AddInTree/AddInTreeNode.cs index 40dae63507..039a72162f 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddInTreeNode.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddInTreeNode.cs @@ -6,7 +6,6 @@ // using System; -using System.IO; using System.Collections; using System.Collections.Generic; diff --git a/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorChooseDialog.cs b/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorChooseDialog.cs index d2fc3e4cf7..a422f4c789 100644 --- a/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorChooseDialog.cs +++ b/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorChooseDialog.cs @@ -6,9 +6,9 @@ // using System; +using System.Drawing; using System.IO; using System.Windows.Forms; -using System.Drawing; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorInformDialog.cs b/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorInformDialog.cs index 164074f724..aab537f222 100644 --- a/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorInformDialog.cs +++ b/src/Main/Core/Project/Src/Services/FileUtility/SaveErrorInformDialog.cs @@ -6,9 +6,9 @@ // using System; +using System.Drawing; using System.IO; using System.Windows.Forms; -using System.Drawing; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Services/LoggingService/LoggingService.cs b/src/Main/Core/Project/Src/Services/LoggingService/LoggingService.cs index b1886a9be0..930aa1d7ec 100644 --- a/src/Main/Core/Project/Src/Services/LoggingService/LoggingService.cs +++ b/src/Main/Core/Project/Src/Services/LoggingService/LoggingService.cs @@ -8,7 +8,6 @@ using System; using System.IO; using log4net; -using log4net.Core; using log4net.Config; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/Services/MenuService/MenuService.cs b/src/Main/Core/Project/Src/Services/MenuService/MenuService.cs index 09481fbe8f..95bece9e89 100644 --- a/src/Main/Core/Project/Src/Services/MenuService/MenuService.cs +++ b/src/Main/Core/Project/Src/Services/MenuService/MenuService.cs @@ -6,15 +6,9 @@ // using System; -using System.IO; -using System.Windows.Forms; using System.Collections; -using System.Threading; -using System.Resources; using System.Drawing; -using System.Diagnostics; -using System.Reflection; -using System.Xml; +using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Services/PropertyService/Properties.cs b/src/Main/Core/Project/Src/Services/PropertyService/Properties.cs index 8d660b2de1..c8b858c209 100644 --- a/src/Main/Core/Project/Src/Services/PropertyService/Properties.cs +++ b/src/Main/Core/Project/Src/Services/PropertyService/Properties.cs @@ -6,11 +6,11 @@ // using System; -using System.IO; -using System.ComponentModel; -using System.Text; using System.Collections; using System.Collections.Generic; +using System.ComponentModel; +using System.IO; +using System.Text; using System.Xml; namespace ICSharpCode.Core diff --git a/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs b/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs index 1a059bd7d2..cc8256f370 100644 --- a/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs +++ b/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.IO; using System.Text; using System.Xml; diff --git a/src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs b/src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs index 6674e0ed04..42b1b37bb2 100644 --- a/src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs +++ b/src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs @@ -6,18 +6,14 @@ // using System; -using System.IO; -using System.Windows.Forms; using System.Collections; using System.Collections.Generic; -using System.Threading; -using System.Resources; using System.Drawing; -using System.Diagnostics; +using System.IO; using System.Reflection; -using System.Xml; - -using ICSharpCode.Core; +using System.Resources; +using System.Threading; +using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Services/StringParser/IStringTagProvider.cs b/src/Main/Core/Project/Src/Services/StringParser/IStringTagProvider.cs index b7c1ef3005..c623b61270 100644 --- a/src/Main/Core/Project/Src/Services/StringParser/IStringTagProvider.cs +++ b/src/Main/Core/Project/Src/Services/StringParser/IStringTagProvider.cs @@ -6,13 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Reflection; -using System.Text; -using System.Text.RegularExpressions; - -using ICSharpCode.Core; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Services/StringParser/StringParser.cs b/src/Main/Core/Project/Src/Services/StringParser/StringParser.cs index 710bfcebd4..7633cdbe27 100644 --- a/src/Main/Core/Project/Src/Services/StringParser/StringParser.cs +++ b/src/Main/Core/Project/Src/Services/StringParser/StringParser.cs @@ -10,9 +10,6 @@ using System.Collections.Generic; using System.Diagnostics; using System.Reflection; using System.Text; -using System.Text.RegularExpressions; - -using ICSharpCode.Core; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Util/AbstractCommand.cs b/src/Main/Core/Project/Src/Util/AbstractCommand.cs index aacfde7e18..52c61d18b7 100644 --- a/src/Main/Core/Project/Src/Util/AbstractCommand.cs +++ b/src/Main/Core/Project/Src/Util/AbstractCommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Util/ClipboardWrapper.cs b/src/Main/Core/Project/Src/Util/ClipboardWrapper.cs index e41b0e0861..f7c5d1422b 100644 --- a/src/Main/Core/Project/Src/Util/ClipboardWrapper.cs +++ b/src/Main/Core/Project/Src/Util/ClipboardWrapper.cs @@ -6,8 +6,8 @@ // using System; -using System.Windows.Forms; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/Core/Project/Src/Util/ICommand.cs b/src/Main/Core/Project/Src/Util/ICommand.cs index 05d66a82d4..d9aa34ac11 100644 --- a/src/Main/Core/Project/Src/Util/ICommand.cs +++ b/src/Main/Core/Project/Src/Util/ICommand.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.CodeDom.Compiler; -using System.Windows.Forms; namespace ICSharpCode.Core { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Configuration/AssemblyInfo.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Configuration/AssemblyInfo.cs index f21f861496..c0c433a20b 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Configuration/AssemblyInfo.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Configuration/AssemblyInfo.cs @@ -9,7 +9,6 @@ using System; using System.Reflection; using System.Runtime.CompilerServices; using System.Security.Permissions; -using System.Diagnostics.CodeAnalysis; [assembly: CLSCompliant(true)] [assembly: StringFreezing()] diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Ambience.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Ambience.cs index ab8625851e..ab05881463 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Ambience.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Ambience.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/CecilReader.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/CecilReader.cs index b413da200f..a6d1836440 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/CecilReader.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/CecilReader.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.IO; + using Mono.Cecil; using AssemblyName = System.Reflection.AssemblyName; diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FoldingRegion.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FoldingRegion.cs index 0ddc2aab5d..1b9838ece9 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FoldingRegion.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FoldingRegion.cs @@ -6,9 +6,6 @@ // using System; -using System.Collections; -using System.Diagnostics; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FusionNative.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FusionNative.cs index 9ab3de2339..937fa89124 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FusionNative.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/FusionNative.cs @@ -6,9 +6,9 @@ // using System; -using System.Text; using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; +using System.Text; namespace MSjogren.GacTool.FusionNative { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/GacInterop.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/GacInterop.cs index 79edf40b91..9c7f0fb624 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/GacInterop.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/GacInterop.cs @@ -9,6 +9,7 @@ using System; using System.Collections.Generic; using System.Reflection; using System.Text; + using MSjogren.GacTool.FusionNative; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IComment.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IComment.cs index f22634c5db..4fd56df6ab 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IComment.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IComment.cs @@ -5,7 +5,6 @@ // $Revision$ // -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IParser.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IParser.cs index 77f7eae5fc..c198b43bd7 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IParser.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IParser.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IResolver.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IResolver.cs index 92db0d7226..91c302efe0 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IResolver.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/IResolver.cs @@ -7,7 +7,6 @@ using System; using System.Collections; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractDecoration.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractDecoration.cs index e6cf113c3e..d7045482e9 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractDecoration.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractDecoration.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractNamedEntity.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractNamedEntity.cs index 3a5e67be80..31ad39e419 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractNamedEntity.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/AbstractNamedEntity.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/CompoundClass.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/CompoundClass.cs index f557b30bd7..34e71f15fc 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/CompoundClass.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/CompoundClass.cs @@ -6,9 +6,6 @@ // using System; -using System.Diagnostics; -using System.Reflection; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultAttribute.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultAttribute.cs index 0aed81e66f..7af148071f 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultAttribute.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultAttribute.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultClass.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultClass.cs index 4f31736ee2..4470c2258e 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultClass.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultClass.cs @@ -6,9 +6,6 @@ // using System; -using System.Diagnostics; -using System.Reflection; -using System.Collections; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultComment.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultComment.cs index c176309886..3ee8efe2c5 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultComment.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultComment.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultCompilationUnit.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultCompilationUnit.cs index edfb7e3766..877f5a0e54 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultCompilationUnit.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultCompilationUnit.cs @@ -6,9 +6,8 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Collections.Generic; +using System.Diagnostics; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultEvent.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultEvent.cs index f428cb6d7c..1c4e2a80f1 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultEvent.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultEvent.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultField.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultField.cs index 66fdfcf61b..eebc5f20c9 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultField.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultField.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultMethod.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultMethod.cs index 568331bcc6..967971199e 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultMethod.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultMethod.cs @@ -6,9 +6,8 @@ // using System; -using System.Text; -using System.Reflection; using System.Collections.Generic; +using System.Text; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultParameter.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultParameter.cs index 8a5d18f699..f8b09bfa96 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultParameter.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultParameter.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultProperty.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultProperty.cs index 6320284c76..e51e1813be 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultProperty.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultProperty.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultUsing.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultUsing.cs index dbaf78d55d..ec5b67bb37 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultUsing.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/DefaultUsing.cs @@ -6,8 +6,8 @@ // using System; -using System.Text; using System.Collections.Generic; +using System.Text; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/GetClassReturnType.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/GetClassReturnType.cs index ec3d8f1b51..2ee45cdf5c 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/GetClassReturnType.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Implementations/GetClassReturnType.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IAttribute.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IAttribute.cs index cc8945f7b8..4544a06f2d 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IAttribute.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IAttribute.cs @@ -6,7 +6,6 @@ // using System; -using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IClass.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IClass.cs index 0fdceb24d0..9cd5185856 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IClass.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IClass.cs @@ -6,9 +6,7 @@ // using System; -using System.Collections; using System.Collections.Generic; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IDecoration.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IDecoration.cs index cfdaa40223..71c71e7755 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IDecoration.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IDecoration.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IEvent.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IEvent.cs index 0a056ea78f..8157e70f01 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IEvent.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IEvent.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IField.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IField.cs index ea8755be29..939a1fd8bf 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IField.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IField.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMember.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMember.cs index 92e5c56e6a..b4520f6714 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMember.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMember.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMethod.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMethod.cs index 1c203317aa..6c538890da 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMethod.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IMethod.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IParameter.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IParameter.cs index e6c2463e2b..b2fa8520a0 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IParameter.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IParameter.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IProperty.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IProperty.cs index 0406648a0a..151735c77f 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IProperty.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/IProperty.cs @@ -6,8 +6,6 @@ // using System; -using System.Collections.Generic; -using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/ITypeParameter.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/ITypeParameter.cs index 57e885e73f..fb8a3c1b97 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/ITypeParameter.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Interfaces/ITypeParameter.cs @@ -6,7 +6,6 @@ // using System; -using System.Reflection; using System.Collections.Generic; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryASTConvertVisitor.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryASTConvertVisitor.cs index f6b918f501..200471627b 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryASTConvertVisitor.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryASTConvertVisitor.cs @@ -7,15 +7,14 @@ // created on 04.08.2003 at 17:49 using System; -using System.Text; -using System.Diagnostics; using System.Collections; using System.Collections.Generic; +using System.Diagnostics; +using System.Text; +using ICSharpCode.NRefactory.Visitors; using AST = ICSharpCode.NRefactory.Ast; using RefParser = ICSharpCode.NRefactory; -using ICSharpCode.NRefactory.Visitors; -using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.Dom.NRefactoryResolver { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryInformationProvider.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryInformationProvider.cs index ba3e4dce57..459dae90b7 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryInformationProvider.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/NRefactoryResolver/NRefactoryInformationProvider.cs @@ -6,13 +6,7 @@ // using System; -using System.Collections; -using System.Collections.Generic; - using ICSharpCode.NRefactory; -using ICSharpCode.NRefactory.PrettyPrinter; - -using ICSharpCode.SharpDevelop.Dom; namespace ICSharpCode.SharpDevelop.Dom.NRefactoryResolver { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ProjectContentRegistry.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ProjectContentRegistry.cs index 6641f56c9b..17323a2f47 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ProjectContentRegistry.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ProjectContentRegistry.cs @@ -13,9 +13,6 @@ using System.Text; using System.Threading; using System.Xml; -using ICSharpCode.SharpDevelop.Dom; -using ICSharpCode.SharpDevelop.Dom.ReflectionLayer; - namespace ICSharpCode.SharpDevelop.Dom { /// diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ReflectionProjectContent.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ReflectionProjectContent.cs index ea0889df2a..4b3d0da93b 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ReflectionProjectContent.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ProjectContent/ReflectionProjectContent.cs @@ -6,11 +6,8 @@ // using System; -using System.IO; -using System.Threading; -using System.Collections; using System.Collections.Generic; -using System.Diagnostics; +using System.IO; using System.Reflection; using ICSharpCode.SharpDevelop.Dom.ReflectionLayer; diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Refactoring/CodeGenerator.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Refactoring/CodeGenerator.cs index f7a70da860..28ea7f15b0 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Refactoring/CodeGenerator.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/Refactoring/CodeGenerator.cs @@ -10,7 +10,6 @@ using System.Collections.Generic; using System.Text; using ICSharpCode.NRefactory.Ast; -using ICSharpCode.SharpDevelop.Dom; using NR = ICSharpCode.NRefactory.Ast; namespace ICSharpCode.SharpDevelop.Dom.Refactoring diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/DomPersistence.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/DomPersistence.cs index 72077d6356..3b5ca23a3b 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/DomPersistence.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/DomPersistence.cs @@ -8,8 +8,8 @@ using System; using System.Collections.Generic; using System.Globalization; -using System.Reflection; using System.IO; +using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionClass.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionClass.cs index 9ed4b9a7f7..4815aae6e8 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionClass.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionClass.cs @@ -6,9 +6,8 @@ // using System; -using System.Collections; -using System.Reflection; using System.Collections.Generic; +using System.Reflection; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionEvent.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionEvent.cs index 82475633f4..ffeb0d31d7 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionEvent.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionEvent.cs @@ -6,9 +6,7 @@ // using System; -using System.Collections; using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionField.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionField.cs index 2d89cb3ce2..694a8f6a08 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionField.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionField.cs @@ -6,10 +6,7 @@ // using System; -using System.Collections; -using System.Diagnostics; using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionMethod.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionMethod.cs index 909aa218f4..861f400f0d 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionMethod.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionMethod.cs @@ -6,11 +6,7 @@ // using System; -using System.Text; -using System.Collections; -using System.Collections.Generic; using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionParameter.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionParameter.cs index a882959817..d35b3c8d73 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionParameter.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionParameter.cs @@ -7,7 +7,6 @@ using System; using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionProperty.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionProperty.cs index e4314aa4b6..4a2a3ce0b7 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionProperty.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/ReflectionLayer/ReflectionProperty.cs @@ -6,9 +6,7 @@ // using System; -using System.Collections; using System.Reflection; -using System.Xml; namespace ICSharpCode.SharpDevelop.Dom.ReflectionLayer { diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/XmlDoc.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/XmlDoc.cs index 97e138947b..c0d5bc2060 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/XmlDoc.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/XmlDoc.cs @@ -6,8 +6,8 @@ // using System; -using System.IO; using System.Collections.Generic; +using System.IO; using System.Xml; namespace ICSharpCode.SharpDevelop.Dom diff --git a/src/Main/ICSharpCode.SharpDevelop.Sda/Configuration/AssemblyInfo.cs b/src/Main/ICSharpCode.SharpDevelop.Sda/Configuration/AssemblyInfo.cs index 76b1a7ebc7..2fec792bbf 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Sda/Configuration/AssemblyInfo.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Sda/Configuration/AssemblyInfo.cs @@ -9,7 +9,6 @@ using System; using System.Reflection; using System.Runtime.CompilerServices; using System.Security.Permissions; -using System.Diagnostics.CodeAnalysis; [assembly: CLSCompliant(true)] [assembly: StringFreezing()] diff --git a/src/Main/ICSharpCode.SharpDevelop.Sda/Src/ExceptionBox.cs b/src/Main/ICSharpCode.SharpDevelop.Sda/Src/ExceptionBox.cs index 681c516f9a..75bfe278e9 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Sda/Src/ExceptionBox.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Sda/Src/ExceptionBox.cs @@ -9,9 +9,7 @@ using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; -using System.Drawing; using System.Globalization; -using System.Resources; using System.Threading; using System.Windows.Forms; diff --git a/src/Main/ICSharpCode.SharpDevelop.Sda/Src/SharpDevelopHost.cs b/src/Main/ICSharpCode.SharpDevelop.Sda/Src/SharpDevelopHost.cs index 6ae39f9f2a..43e5261a99 100644 --- a/src/Main/ICSharpCode.SharpDevelop.Sda/Src/SharpDevelopHost.cs +++ b/src/Main/ICSharpCode.SharpDevelop.Sda/Src/SharpDevelopHost.cs @@ -7,8 +7,8 @@ using System; using System.Collections.ObjectModel; -using System.IO; using System.Diagnostics.CodeAnalysis; +using System.IO; using System.Reflection; namespace ICSharpCode.SharpDevelop.Sda diff --git a/src/Main/StartUp/Project/Dialogs/SplashScreen.cs b/src/Main/StartUp/Project/Dialogs/SplashScreen.cs index 38199e63f0..6b33220428 100644 --- a/src/Main/StartUp/Project/Dialogs/SplashScreen.cs +++ b/src/Main/StartUp/Project/Dialogs/SplashScreen.cs @@ -7,11 +7,8 @@ using System; using System.Collections.Generic; -using System.IO; -using System.Windows.Forms; using System.Drawing; -using System.Reflection; -using System.Resources; +using System.Windows.Forms; namespace ICSharpCode.SharpDevelop { diff --git a/src/Main/StartUp/Project/SharpDevelopMain.cs b/src/Main/StartUp/Project/SharpDevelopMain.cs index 84085da4be..3f05424e09 100644 --- a/src/Main/StartUp/Project/SharpDevelopMain.cs +++ b/src/Main/StartUp/Project/SharpDevelopMain.cs @@ -12,7 +12,6 @@ using System.Reflection; using System.Windows.Forms; using ICSharpCode.Core; -using ICSharpCode.SharpDevelop.Commands; using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Sda;