[Monodevelop-patches-list] r2005 - in trunk/MonoDevelop/Core/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/ILAsmBinding AddIns/BackendBindings/JavaBinding AddIns/BackendBindings/NemerleBinding AddIns/DisplayBindings/SourceEditor AddIns/Misc/AddInManager AddIns/Nunit Libraries/CsVbRefactory Libraries/MonoDevelop.Core Libraries/MonoDevelop.Gui.Utils Libraries/MonoDevelop.Gui.Widgets Libraries/SharpAssembly Libraries/SharpRefactory Main/Base Main/StartUp

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu Oct 28 12:31:06 EDT 2004


Author: tberman
Date: 2004-10-28 12:31:06 -0400 (Thu, 28 Oct 2004)
New Revision: 2005

Modified:
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/ILAsmBinding/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/JavaBinding/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/Misc/AddInManager/Makefile.am
   trunk/MonoDevelop/Core/src/AddIns/Nunit/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/CsVbRefactory/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Core/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/SharpAssembly/Makefile.am
   trunk/MonoDevelop/Core/src/Libraries/SharpRefactory/Makefile.am
   trunk/MonoDevelop/Core/src/Main/Base/Makefile.am
   trunk/MonoDevelop/Core/src/Main/StartUp/Makefile.am
Log:
Remove a bunch of ./ from the Makefile.ams as it was expanding into
././ which has bothered me for no appreciable reason for a long time.


Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -9,31 +9,31 @@
 	$(BASE_DEPENDENCIES_LIBS)
 
 FILES = \
-./Gui/ChooseRuntimePanel.cs \
-./Gui/OutputOptionsPanel.cs \
-./Gui/CodeGenerationPanel.cs \
-./Parser/SharpDevelopTree/Event.cs \
-./Parser/SharpDevelopTree/Indexer.cs \
-./Parser/SharpDevelopTree/Constructor.cs \
-./Parser/SharpDevelopTree/Method.cs \
-./Parser/SharpDevelopTree/Class.cs \
-./Parser/SharpDevelopTree/Parameter.cs \
-./Parser/SharpDevelopTree/AttributeSection.cs \
-./Parser/SharpDevelopTree/CompilationUnit.cs \
-./Parser/SharpDevelopTree/Property.cs \
-./Parser/SharpDevelopTree/Field.cs \
-./Parser/SharpDevelopTree/ReturnType.cs \
-./Parser/TypeVisitor.cs \
-./Parser/CSharpVisitor.cs \
-./Parser/Resolver.cs \
-./Parser/Parser.cs \
-./Parser/ExpressionFinder.cs \
-./CSharpAmbience.cs \
-./Project/CSharpProject.cs \
-./Project/CSharpCompilerParameters.cs \
-./CSharpLanguageBinding.cs \
-./FormattingStrategy/CSharpFormattingStrategy.cs \
-./CSharpBindingCompilerManager.cs
+Gui/ChooseRuntimePanel.cs \
+Gui/OutputOptionsPanel.cs \
+Gui/CodeGenerationPanel.cs \
+Parser/SharpDevelopTree/Event.cs \
+Parser/SharpDevelopTree/Indexer.cs \
+Parser/SharpDevelopTree/Constructor.cs \
+Parser/SharpDevelopTree/Method.cs \
+Parser/SharpDevelopTree/Class.cs \
+Parser/SharpDevelopTree/Parameter.cs \
+Parser/SharpDevelopTree/AttributeSection.cs \
+Parser/SharpDevelopTree/CompilationUnit.cs \
+Parser/SharpDevelopTree/Property.cs \
+Parser/SharpDevelopTree/Field.cs \
+Parser/SharpDevelopTree/ReturnType.cs \
+Parser/TypeVisitor.cs \
+Parser/CSharpVisitor.cs \
+Parser/Resolver.cs \
+Parser/Parser.cs \
+Parser/ExpressionFinder.cs \
+CSharpAmbience.cs \
+Project/CSharpProject.cs \
+Project/CSharpCompilerParameters.cs \
+CSharpLanguageBinding.cs \
+FormattingStrategy/CSharpFormattingStrategy.cs \
+CSharpBindingCompilerManager.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES)) CSharpBindingExecutionManager.cs
 

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/ILAsmBinding/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/ILAsmBinding/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/ILAsmBinding/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -8,14 +8,14 @@
 	$(BASE_DEPENDENCIES_LIBS)
 
 FILES = \
-./Gui/CompilerParametersPanel.cs \
-./Project/CompilationTarget.cs \
-./Project/ILAsmProject.cs \
-./Project/ILAsmCompilerParameters.cs \
-./ILAsmCompilerManager.cs \
-./AssemblyInfo.cs \
-./ILAsmLanguageBinding.cs \
-./ILAsmExecutionManager.cs
+Gui/CompilerParametersPanel.cs \
+Project/CompilationTarget.cs \
+Project/ILAsmProject.cs \
+Project/ILAsmCompilerParameters.cs \
+ILAsmCompilerManager.cs \
+AssemblyInfo.cs \
+ILAsmLanguageBinding.cs \
+ILAsmExecutionManager.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/JavaBinding/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/JavaBinding/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/JavaBinding/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -8,15 +8,16 @@
 	/r:../../../../build/bin/MonoDevelop.Gui.Widgets.dll \
 	$(BASE_DEPENDENCIES_LIBS)
 
-FILES = ./Gui/ProjectConfigurationPropertyPanel.cs \
-./Project/JavaCompilerParameters.cs \
-./Project/JavaProject.cs \
-./JavaBindingCompilerServices.cs \
-./JavaCompiler.cs \
-./JavaLanguageBinding.cs \
-./FormatingStrategy/JavaFormattingStrategy.cs \
-./JavaBindingExecutionServices.cs \
-./ProjectTreeBuilder/JavaNodeBuilder.cs
+FILES = \
+Gui/ProjectConfigurationPropertyPanel.cs \
+Project/JavaCompilerParameters.cs \
+Project/JavaProject.cs \
+JavaBindingCompilerServices.cs \
+JavaCompiler.cs \
+JavaLanguageBinding.cs \
+FormatingStrategy/JavaFormattingStrategy.cs \
+JavaBindingExecutionServices.cs \
+ProjectTreeBuilder/JavaNodeBuilder.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -10,12 +10,12 @@
 	$(BASE_DEPENDENCIES_LIBS)
 
 FILES = \
-./Gui/CodeGenerationPanel.cs \
-./Gui/OutputPanel.cs \
-./Project/NemerleParameters.cs \
-./Project/NemerleProject.cs \
-./NemerleBindingCompilerServices.cs \
-./NemerleLanguageBinding.cs 
+Gui/CodeGenerationPanel.cs \
+Gui/OutputPanel.cs \
+Project/NemerleParameters.cs \
+Project/NemerleProject.cs \
+NemerleBindingCompilerServices.cs \
+NemerleLanguageBinding.cs 
 
 build_sources = $(addprefix $(srcdir)/, $(FILES)) NemerleBindingExecutionServices.cs
 

Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,78 +1,79 @@
 DLL = MonoDevelop.SourceEditor.dll
 
-FILES = ./AssemblyInfo.cs \
-./CodeCompletion/CodeCompletionData.cs \
-./CodeCompletion/ICompletionData.cs \
-./CodeCompletion/CompletionWindow.cs \
-./CodeCompletion/CompletionListWindow.cs \
-./CodeCompletion/ListWindow.cs \
-./CodeCompletion/TextUtilities.cs \
-./CodeCompletion/TemplateCompletionDataProvider.cs \
-./CodeCompletion/CommentCompletionDataProvider.cs \
-./CodeCompletion/ICompletionDataProvider.cs \
-./CodeCompletion/DeclarationViewWindow.cs \
-./CodeCompletion/CodeCompletionDataProvider.cs \
-./Gui/SourceEditorWidget.cs \
-./Gui/SourceEditorBuffer.cs \
-./Gui/SourceEditorView.cs \
-./Gui/SourceEditorDisplayBinding.cs \
-./Gui/Pads/CompilerMessageView.cs \
-./Gui/OptionPanels/BehaviorTextEditorPanel.cs \
-./Gui/OptionPanels/MarkersTextEditorPanel.cs \
-./Gui/OptionPanels/CodeTemplatePanel.cs \
-./Gui/OptionPanels/GeneralTextEditorPanel.cs \
-./Gui/Dialogs/EditTemplateGroupDialog.cs \
-./Gui/Dialogs/ExportProjectToHtmlDialog.cs \
-./Gui/Dialogs/GotoLineNumberDialog.cs \
-./Gui/Dialogs/ReplaceDialog.cs \
-./Gui/Dialogs/ReplaceInFilesDialog.cs \
-./InsightWindow/IndexerInsightDataProvider.cs \
-./InsightWindow/MethodInsightDataProvider.cs \
-./InsightWindow/InsightWindow.cs \
-./InsightWindow/IInsightDataProvider.cs \
-./Commands/CommentRegionCommand.cs \
-./Commands/BookmarkCommands.cs \
-./Commands/CodeActions.cs \
-./Commands/IEditAction.cs \
-./Commands/ToolCommands.cs \
-./Commands/FoldingCommands.cs \
-./Commands/SearchCommands.cs \
-./Commands/ProjectCommands.cs \
-./Commands/FormatCommands.cs \
-./Commands/TextAreaContextmenuCommands.cs \
-./Properties/TextEditorProperties.cs \
-./FormattingStrategy/DefaultFormattingStrategy.cs \
-./FormattingStrategy/IndentStyle.cs \
-./FormattingStrategy/IFormattingStrategy.cs \
-./FormattingStrategy/IFormattableDocument.cs \
-./Codons/EditActionCodon.cs \
-./Search/DocumentIterator/IDocumentInformation.cs \
-./Search/DocumentIterator/EditorDocumentInformation.cs \
-./Search/DocumentIterator/FileDocumentInformation.cs \
-./Search/DocumentIterator/DirectoryDocumentIterator.cs \
-./Search/DocumentIterator/AllOpenDocumentIterator.cs \
-./Search/DocumentIterator/IDocumentIterator.cs \
-./Search/DocumentIterator/ReverseDocumentIterator.cs \
-./Search/DocumentIterator/WholeProjectDocumentIterator.cs \
-./Search/DocumentIterator/CurrentDocumentIterator.cs \
-./Search/SearchStrategy/KMPSearchStrategy.cs \
-./Search/SearchStrategy/ISearchStrategy.cs \
-./Search/SearchStrategy/BruteForceSearchStrategy.cs \
-./Search/SearchStrategy/RegExSearchStrategy.cs \
-./Search/SearchStrategy/WildcardSearchStrategy.cs \
-./Search/SearchReplaceManager.cs \
-./Search/DefaultFind.cs \
-./Search/SearchResult/DefaultSearchResult.cs \
-./Search/SearchResult/ISearchResult.cs \
-./Search/SearchOptions.cs \
-./Search/SearchReplaceInFilesManager.cs \
-./Search/SearchReplaceUtilities.cs \
-./Search/IFind.cs \
-./Search/TextIterator/ITextIterator.cs \
-./Search/TextIterator/ForwardTextFileIterator.cs \
-./Search/TextIterator/ForwardTextIterator.cs \
-./Search/TextIterator/ExtendedStreamReader.cs \
-./Search/ITextBufferStrategy.cs
+FILES = \
+AssemblyInfo.cs \
+CodeCompletion/CodeCompletionData.cs \
+CodeCompletion/ICompletionData.cs \
+CodeCompletion/CompletionWindow.cs \
+CodeCompletion/CompletionListWindow.cs \
+CodeCompletion/ListWindow.cs \
+CodeCompletion/TextUtilities.cs \
+CodeCompletion/TemplateCompletionDataProvider.cs \
+CodeCompletion/CommentCompletionDataProvider.cs \
+CodeCompletion/ICompletionDataProvider.cs \
+CodeCompletion/DeclarationViewWindow.cs \
+CodeCompletion/CodeCompletionDataProvider.cs \
+Gui/SourceEditorWidget.cs \
+Gui/SourceEditorBuffer.cs \
+Gui/SourceEditorView.cs \
+Gui/SourceEditorDisplayBinding.cs \
+Gui/Pads/CompilerMessageView.cs \
+Gui/OptionPanels/BehaviorTextEditorPanel.cs \
+Gui/OptionPanels/MarkersTextEditorPanel.cs \
+Gui/OptionPanels/CodeTemplatePanel.cs \
+Gui/OptionPanels/GeneralTextEditorPanel.cs \
+Gui/Dialogs/EditTemplateGroupDialog.cs \
+Gui/Dialogs/ExportProjectToHtmlDialog.cs \
+Gui/Dialogs/GotoLineNumberDialog.cs \
+Gui/Dialogs/ReplaceDialog.cs \
+Gui/Dialogs/ReplaceInFilesDialog.cs \
+InsightWindow/IndexerInsightDataProvider.cs \
+InsightWindow/MethodInsightDataProvider.cs \
+InsightWindow/InsightWindow.cs \
+InsightWindow/IInsightDataProvider.cs \
+Commands/CommentRegionCommand.cs \
+Commands/BookmarkCommands.cs \
+Commands/CodeActions.cs \
+Commands/IEditAction.cs \
+Commands/ToolCommands.cs \
+Commands/FoldingCommands.cs \
+Commands/SearchCommands.cs \
+Commands/ProjectCommands.cs \
+Commands/FormatCommands.cs \
+Commands/TextAreaContextmenuCommands.cs \
+Properties/TextEditorProperties.cs \
+FormattingStrategy/DefaultFormattingStrategy.cs \
+FormattingStrategy/IndentStyle.cs \
+FormattingStrategy/IFormattingStrategy.cs \
+FormattingStrategy/IFormattableDocument.cs \
+Codons/EditActionCodon.cs \
+Search/DocumentIterator/IDocumentInformation.cs \
+Search/DocumentIterator/EditorDocumentInformation.cs \
+Search/DocumentIterator/FileDocumentInformation.cs \
+Search/DocumentIterator/DirectoryDocumentIterator.cs \
+Search/DocumentIterator/AllOpenDocumentIterator.cs \
+Search/DocumentIterator/IDocumentIterator.cs \
+Search/DocumentIterator/ReverseDocumentIterator.cs \
+Search/DocumentIterator/WholeProjectDocumentIterator.cs \
+Search/DocumentIterator/CurrentDocumentIterator.cs \
+Search/SearchStrategy/KMPSearchStrategy.cs \
+Search/SearchStrategy/ISearchStrategy.cs \
+Search/SearchStrategy/BruteForceSearchStrategy.cs \
+Search/SearchStrategy/RegExSearchStrategy.cs \
+Search/SearchStrategy/WildcardSearchStrategy.cs \
+Search/SearchReplaceManager.cs \
+Search/DefaultFind.cs \
+Search/SearchResult/DefaultSearchResult.cs \
+Search/SearchResult/ISearchResult.cs \
+Search/SearchOptions.cs \
+Search/SearchReplaceInFilesManager.cs \
+Search/SearchReplaceUtilities.cs \
+Search/IFind.cs \
+Search/TextIterator/ITextIterator.cs \
+Search/TextIterator/ForwardTextFileIterator.cs \
+Search/TextIterator/ForwardTextIterator.cs \
+Search/TextIterator/ExtendedStreamReader.cs \
+Search/ITextBufferStrategy.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/AddIns/Misc/AddInManager/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/Misc/AddInManager/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/Misc/AddInManager/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -8,9 +8,9 @@
 	/r:../../../../build/bin/MonoDevelop.Base.dll
 
 FILES = \
-./AssemblyInfo.cs \
-./Commands/ShowDialog.cs \
-./Gui/AddInManagerDialog.cs
+AssemblyInfo.cs \
+Commands/ShowDialog.cs \
+Gui/AddInManagerDialog.cs
 
 addindir = $(libdir)/monodevelop/AddIns
 addin_DATA = $(ADDIN) $(ASSEMBLY)

Modified: trunk/MonoDevelop/Core/src/AddIns/Nunit/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/Nunit/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/AddIns/Nunit/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -7,23 +7,24 @@
 	/r:../../../build/bin/MonoDevelop.Base.dll \
 	$(BASE_DEPENDENCIES_LIBS)
 
-FILES = AssemblyInfo.cs \
-./Commands/NunitCommands.cs \
-./Gui/NunitTestTree.cs \
-./Gui/NunitResultTree.cs \
-./Services/AssemblyStore.cs \
-./Services/CancelTestsException.cs \
-./Services/CircleRenderer.cs \
-./Services/Delegates.cs \
-./Services/FixtureAddedEventArgs.cs \
-./Services/FixtureLoadErrorEventArgs.cs \
-./Services/NunitService.cs \
-./Services/QueuedEvent.cs \
-./Services/QueuedSuiteFinish.cs \
-./Services/QueuedSuiteStart.cs \
-./Services/QueuedTestEvent.cs \
-./Services/QueuedTestFinish.cs \
-./Services/QueuedTestStart.cs
+FILES = \
+AssemblyInfo.cs \
+Commands/NunitCommands.cs \
+Gui/NunitTestTree.cs \
+Gui/NunitResultTree.cs \
+Services/AssemblyStore.cs \
+Services/CancelTestsException.cs \
+Services/CircleRenderer.cs \
+Services/Delegates.cs \
+Services/FixtureAddedEventArgs.cs \
+Services/FixtureLoadErrorEventArgs.cs \
+Services/NunitService.cs \
+Services/QueuedEvent.cs \
+Services/QueuedSuiteFinish.cs \
+Services/QueuedSuiteStart.cs \
+Services/QueuedTestEvent.cs \
+Services/QueuedTestFinish.cs \
+Services/QueuedTestStart.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Libraries/CsVbRefactory/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/CsVbRefactory/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/CsVbRefactory/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,47 +1,48 @@
 
 ASSEMBLY = CsVbRefactory.dll
 
-FILES = ./CsVbRefactory/AssemblyInfo.cs \
-./CsVbRefactory/Parser/AST/Expressions/ArrayInitializerExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/TypeReferenceExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/BinaryOperatorExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/FieldReferenceExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/ArrayCreateExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/ParenthesizedExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/TypeOfExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/AssignmentExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/PrimitiveExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/InvocationExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/UnaryOperatorExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/Expression.cs \
-./CsVbRefactory/Parser/AST/Expressions/ThisReferenceExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/IdentifierExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/BaseReferenceExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/CastExpression.cs \
-./CsVbRefactory/Parser/AST/Expressions/ObjectCreateExpression.cs \
-./CsVbRefactory/Parser/AST/INode.cs \
-./CsVbRefactory/Parser/AST/AbstractASTVisitor.cs \
-./CsVbRefactory/Parser/AST/Statements/BlockStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/ForStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/LockStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/StatementExpression.cs \
-./CsVbRefactory/Parser/AST/Statements/DoWhileStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/SwitchStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/ThrowStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/ForeachStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/IfElseStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/WhileStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/GotoStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/Statement.cs \
-./CsVbRefactory/Parser/AST/Statements/LabelStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/ReturnStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/TryCatchStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/BreakStatement.cs \
-./CsVbRefactory/Parser/AST/Statements/LocalVariableDeclaration.cs \
-./CsVbRefactory/Parser/AST/IASTVisitor.cs \
-./CsVbRefactory/Parser/AST/GlobalScope/TypeReference.cs \
-./CsVbRefactory/Parser/AST/Enums.cs \
-./CsVbRefactory/Parser/AST/AbstractNode.cs
+FILES = \
+CsVbRefactory/AssemblyInfo.cs \
+CsVbRefactory/Parser/AST/Expressions/ArrayInitializerExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/TypeReferenceExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/BinaryOperatorExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/FieldReferenceExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/ArrayCreateExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/ParenthesizedExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/TypeOfExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/AssignmentExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/PrimitiveExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/InvocationExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/UnaryOperatorExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/Expression.cs \
+CsVbRefactory/Parser/AST/Expressions/ThisReferenceExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/IdentifierExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/BaseReferenceExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/CastExpression.cs \
+CsVbRefactory/Parser/AST/Expressions/ObjectCreateExpression.cs \
+CsVbRefactory/Parser/AST/INode.cs \
+CsVbRefactory/Parser/AST/AbstractASTVisitor.cs \
+CsVbRefactory/Parser/AST/Statements/BlockStatement.cs \
+CsVbRefactory/Parser/AST/Statements/ForStatement.cs \
+CsVbRefactory/Parser/AST/Statements/LockStatement.cs \
+CsVbRefactory/Parser/AST/Statements/StatementExpression.cs \
+CsVbRefactory/Parser/AST/Statements/DoWhileStatement.cs \
+CsVbRefactory/Parser/AST/Statements/SwitchStatement.cs \
+CsVbRefactory/Parser/AST/Statements/ThrowStatement.cs \
+CsVbRefactory/Parser/AST/Statements/ForeachStatement.cs \
+CsVbRefactory/Parser/AST/Statements/IfElseStatement.cs \
+CsVbRefactory/Parser/AST/Statements/WhileStatement.cs \
+CsVbRefactory/Parser/AST/Statements/GotoStatement.cs \
+CsVbRefactory/Parser/AST/Statements/Statement.cs \
+CsVbRefactory/Parser/AST/Statements/LabelStatement.cs \
+CsVbRefactory/Parser/AST/Statements/ReturnStatement.cs \
+CsVbRefactory/Parser/AST/Statements/TryCatchStatement.cs \
+CsVbRefactory/Parser/AST/Statements/BreakStatement.cs \
+CsVbRefactory/Parser/AST/Statements/LocalVariableDeclaration.cs \
+CsVbRefactory/Parser/AST/IASTVisitor.cs \
+CsVbRefactory/Parser/AST/GlobalScope/TypeReference.cs \
+CsVbRefactory/Parser/AST/Enums.cs \
+CsVbRefactory/Parser/AST/AbstractNode.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Core/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Core/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Core/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,61 +1,61 @@
 FILES= \
-./Properties/CharacterEncodings.cs \
-./Properties/DefaultProperties.cs \
-./Properties/UnknownPropertyNodeException.cs \
-./Properties/PropertyEventArgs.cs \
-./Properties/IProperties.cs \
-./Properties/PropertyFileLoadException.cs \
-./Properties/IXmlConvertable.cs \
-./Services/FileUtilityService.cs \
-./Services/SaveErrorInformDialog.cs \
-./Services/AbstractService.cs \
-./Services/IMessageService.cs \
-./Services/StringParserService.cs \
-./Services/PropertyService.cs \
-./Services/ServiceManager.cs \
-./Services/IService.cs \
-./Services/IStringTagProvider.cs \
-./Services/SaveErrorChooseDialog.cs \
-./AssemblyInfo.cs \
-./AddIns/Conditions/DuplicateConditionException.cs \
-./AddIns/Conditions/ConditionCollection.cs \
-./AddIns/Conditions/ICondition.cs \
-./AddIns/Conditions/CompareCondition.cs \
-./AddIns/Conditions/ConditionWithoutRequiredAttributesException.cs \
-./AddIns/Conditions/ConditionBuilder.cs \
-./AddIns/Conditions/ConditionNotFoundException.cs \
-./AddIns/Conditions/ConditionAttribute.cs \
-./AddIns/Conditions/ConditionBuilderCollection.cs \
-./AddIns/Conditions/ConditionFactory.cs \
-./AddIns/Conditions/AbstractCondition.cs \
-./AddIns/Conditions/ComplexConditions.cs \
-./AddIns/PathAttribute.cs \
-./AddIns/Codons/CodonBuilder.cs \
-./AddIns/Codons/CodonNameAttribute.cs \
-./AddIns/Codons/ClassCodon.cs \
-./AddIns/Codons/CodonNotFoundException.cs \
-./AddIns/Codons/AbstractCodon.cs \
-./AddIns/Codons/CodonFactory.cs \
-./AddIns/Codons/IconCodon.cs \
-./AddIns/Codons/AbstractCommand.cs \
-./AddIns/Codons/DuplicateCodonException.cs \
-./AddIns/Codons/ICommand.cs \
-./AddIns/Codons/ICodon.cs \
-./AddIns/AddInLoadException.cs \
-./AddIns/TreePathNotFoundException.cs \
-./AddIns/DefaultAddInTreeNode.cs \
-./AddIns/AddIn.cs \
-./AddIns/IAddInTree.cs \
-./AddIns/DefaultAddInTree.cs \
-./AddIns/IAddInTreeNode.cs \
-./AddIns/AddInTreeSingleton.cs \
-./AddIns/XmlMemberAttributeAttribute.cs \
-./AddIns/XmlMemberArraryAttribute.cs \
-./AddIns/AddInTreeFormatException.cs \
-./AddIns/TypeNotFoundException.cs \
-./AddIns/AddInInitializeException.cs \
-./AddIns/AddInCollection.cs \
-./AddIns/AddInSignatureException.cs
+Properties/CharacterEncodings.cs \
+Properties/DefaultProperties.cs \
+Properties/UnknownPropertyNodeException.cs \
+Properties/PropertyEventArgs.cs \
+Properties/IProperties.cs \
+Properties/PropertyFileLoadException.cs \
+Properties/IXmlConvertable.cs \
+Services/FileUtilityService.cs \
+Services/SaveErrorInformDialog.cs \
+Services/AbstractService.cs \
+Services/IMessageService.cs \
+Services/StringParserService.cs \
+Services/PropertyService.cs \
+Services/ServiceManager.cs \
+Services/IService.cs \
+Services/IStringTagProvider.cs \
+Services/SaveErrorChooseDialog.cs \
+AssemblyInfo.cs \
+AddIns/Conditions/DuplicateConditionException.cs \
+AddIns/Conditions/ConditionCollection.cs \
+AddIns/Conditions/ICondition.cs \
+AddIns/Conditions/CompareCondition.cs \
+AddIns/Conditions/ConditionWithoutRequiredAttributesException.cs \
+AddIns/Conditions/ConditionBuilder.cs \
+AddIns/Conditions/ConditionNotFoundException.cs \
+AddIns/Conditions/ConditionAttribute.cs \
+AddIns/Conditions/ConditionBuilderCollection.cs \
+AddIns/Conditions/ConditionFactory.cs \
+AddIns/Conditions/AbstractCondition.cs \
+AddIns/Conditions/ComplexConditions.cs \
+AddIns/PathAttribute.cs \
+AddIns/Codons/CodonBuilder.cs \
+AddIns/Codons/CodonNameAttribute.cs \
+AddIns/Codons/ClassCodon.cs \
+AddIns/Codons/CodonNotFoundException.cs \
+AddIns/Codons/AbstractCodon.cs \
+AddIns/Codons/CodonFactory.cs \
+AddIns/Codons/IconCodon.cs \
+AddIns/Codons/AbstractCommand.cs \
+AddIns/Codons/DuplicateCodonException.cs \
+AddIns/Codons/ICommand.cs \
+AddIns/Codons/ICodon.cs \
+AddIns/AddInLoadException.cs \
+AddIns/TreePathNotFoundException.cs \
+AddIns/DefaultAddInTreeNode.cs \
+AddIns/AddIn.cs \
+AddIns/IAddInTree.cs \
+AddIns/DefaultAddInTree.cs \
+AddIns/IAddInTreeNode.cs \
+AddIns/AddInTreeSingleton.cs \
+AddIns/XmlMemberAttributeAttribute.cs \
+AddIns/XmlMemberArraryAttribute.cs \
+AddIns/AddInTreeFormatException.cs \
+AddIns/TypeNotFoundException.cs \
+AddIns/AddInInitializeException.cs \
+AddIns/AddInCollection.cs \
+AddIns/AddInSignatureException.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES)) Services/GettextCatalog.cs
 

Modified: trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -4,16 +4,17 @@
 	/r:ICSharpCode.SharpZipLib \
 	$(BASE_DEPENDENCIES_LIBS)
 
-FILES = ./FileIcons/FileIconLoader.cs \
-./AssemblyInfo.cs \
-./VFS/Vfs.cs \
-./ReportingStream/ReportingStream.cs \
-./DirectoryArchive/Decompressor.cs \
-./DirectoryArchive/TarDecompressor.cs \
-./DirectoryArchive/ZipDecompressor.cs \
-./DirectoryArchive/Bz2Support.cs \
-./DirectoryArchive/GzSupport.cs \
-./Glue.cs
+FILES = \
+FileIcons/FileIconLoader.cs \
+AssemblyInfo.cs \
+VFS/Vfs.cs \
+ReportingStream/ReportingStream.cs \
+DirectoryArchive/Decompressor.cs \
+DirectoryArchive/TarDecompressor.cs \
+DirectoryArchive/ZipDecompressor.cs \
+DirectoryArchive/Bz2Support.cs \
+DirectoryArchive/GzSupport.cs \
+Glue.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -6,23 +6,24 @@
 	/r:../../../build/bin/MonoDevelop.Gui.Utils.dll \
 	$(BASE_DEPENDENCIES_LIBS)
 
-FILES = ./Tree/TreeView.cs \
-./Tree/TreeNodeCollection.cs \
-./Tree/TreeNode.cs \
-./Dock/Docker.cs \
-./Dock/DockingManager.cs \
-./IconView/IconView.cs \
-./AssemblyInfo.cs \
-./FileBrowser/FileBrowser.cs \
-./FileSelector/FileSelector.cs \
-./FolderDialog/FolderDialog.cs \
-./FolderDialog/BaseFileEntry.cs \
-./FolderDialog/FolderEntry.cs \
-./FolderDialog/FileEntry.cs \
-./Navbar/Navbar.cs \
-./TabLabel/TabLabel.cs \
-./GladeWidgetExtract/GladeWidgetExtract.cs \
-./DragNotebook/DragNotebook.cs
+FILES = \
+Tree/TreeView.cs \
+Tree/TreeNodeCollection.cs \
+Tree/TreeNode.cs \
+Dock/Docker.cs \
+Dock/DockingManager.cs \
+IconView/IconView.cs \
+AssemblyInfo.cs \
+FileBrowser/FileBrowser.cs \
+FileSelector/FileSelector.cs \
+FolderDialog/FolderDialog.cs \
+FolderDialog/BaseFileEntry.cs \
+FolderDialog/FolderEntry.cs \
+FolderDialog/FileEntry.cs \
+Navbar/Navbar.cs \
+TabLabel/TabLabel.cs \
+GladeWidgetExtract/GladeWidgetExtract.cs \
+DragNotebook/DragNotebook.cs
 
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))

Modified: trunk/MonoDevelop/Core/src/Libraries/SharpAssembly/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/SharpAssembly/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/SharpAssembly/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,70 +1,70 @@
 FILES= \
-./src/SharpAssembly/PE/SectionTable.cs \
-./src/SharpAssembly/PE/IAT.cs \
-./src/SharpAssembly/PE/NameTable.cs \
-./src/SharpAssembly/PE/CLIHeader.cs \
-./src/SharpAssembly/PE/StandardFields.cs \
-./src/SharpAssembly/PE/DataDirectories.cs \
-./src/SharpAssembly/PE/ImportTable.cs \
-./src/SharpAssembly/PE/StreamHeader.cs \
-./src/SharpAssembly/PE/PEFileHeader.cs \
-./src/SharpAssembly/PE/NTSpecificFields.cs \
-./src/SharpAssembly/AssemblyReader.cs \
-./src/SharpAssembly/SharpAssemblyName.cs \
-./src/SharpAssembly/AssemblyMetadataTables.cs \
-./src/SharpAssembly/FusionNative.cs \
-./src/SharpAssembly/SharpAssembly.cs \
-./src/SharpAssembly/Metadata/Rows/Param.cs \
-./src/SharpAssembly/Metadata/Rows/TypeDef.cs \
-./src/SharpAssembly/Metadata/Rows/ModuleRef.cs \
-./src/SharpAssembly/Metadata/Rows/ClassLayout.cs \
-./src/SharpAssembly/Metadata/Rows/DeclSecurity.cs \
-./src/SharpAssembly/Metadata/Rows/TypeRef.cs \
-./src/SharpAssembly/Metadata/Rows/AssemblyProcessor.cs \
-./src/SharpAssembly/Metadata/Rows/FieldLayout.cs \
-./src/SharpAssembly/Metadata/Rows/Module.cs \
-./src/SharpAssembly/Metadata/Rows/Event.cs \
-./src/SharpAssembly/Metadata/Rows/AssemblyRefProcessor.cs \
-./src/SharpAssembly/Metadata/Rows/MethodSemantics.cs \
-./src/SharpAssembly/Metadata/Rows/AbstractRow.cs \
-./src/SharpAssembly/Metadata/Rows/AssemblyOS.cs \
-./src/SharpAssembly/Metadata/Rows/FieldMarshal.cs \
-./src/SharpAssembly/Metadata/Rows/ImplMap.cs \
-./src/SharpAssembly/Metadata/Rows/StandAloneSig.cs \
-./src/SharpAssembly/Metadata/Rows/Method.cs \
-./src/SharpAssembly/Metadata/Rows/ENCMap.cs \
-./src/SharpAssembly/Metadata/Rows/ENCLog.cs \
-./src/SharpAssembly/Metadata/Rows/FieldRVA.cs \
-./src/SharpAssembly/Metadata/Rows/AssemblyRefOS.cs \
-./src/SharpAssembly/Metadata/Rows/FieldPtr.cs \
-./src/SharpAssembly/Metadata/Rows/EventMap.cs \
-./src/SharpAssembly/Metadata/Rows/ManifestResource.cs \
-./src/SharpAssembly/Metadata/Rows/EventPtr.cs \
-./src/SharpAssembly/Metadata/Rows/PropertyMap.cs \
-./src/SharpAssembly/Metadata/Rows/Constant.cs \
-./src/SharpAssembly/Metadata/Rows/PropertyPtr.cs \
-./src/SharpAssembly/Metadata/Rows/File.cs \
-./src/SharpAssembly/Metadata/Rows/MemberRef.cs \
-./src/SharpAssembly/Metadata/Rows/Assembly.cs \
-./src/SharpAssembly/Metadata/Rows/Property.cs \
-./src/SharpAssembly/Metadata/Rows/ExportedType.cs \
-./src/SharpAssembly/Metadata/Rows/TypeSpec.cs \
-./src/SharpAssembly/Metadata/Rows/InterfaceImpl.cs \
-./src/SharpAssembly/Metadata/Rows/NestedClass.cs \
-./src/SharpAssembly/Metadata/Rows/AssemblyRef.cs \
-./src/SharpAssembly/Metadata/Rows/MethodPtr.cs \
-./src/SharpAssembly/Metadata/Rows/CodedIndex.cs \
-./src/SharpAssembly/Metadata/Rows/CustomAttribute.cs \
-./src/SharpAssembly/Metadata/Rows/ParamPtr.cs \
-./src/SharpAssembly/Metadata/Rows/Field.cs \
-./src/SharpAssembly/Metadata/Rows/MethodImpl.cs \
-./src/SharpAssembly/Metadata/AssemblyMetaData.cs \
-./src/SharpAssembly/Metadata/MetadataTable.cs \
-./src/SharpAssembly/Metadata/Signatures/DataTypes.cs \
-./src/SharpAssembly/Metadata/Signatures/CallingConventions.cs \
-./src/SharpAssembly/Metadata/MethodBody.cs \
-./src/SharpAssembly/AssemblyInfo.cs \
-./src/SharpAssembly/AssemblyNameNotFoundException.cs 
+src/SharpAssembly/PE/SectionTable.cs \
+src/SharpAssembly/PE/IAT.cs \
+src/SharpAssembly/PE/NameTable.cs \
+src/SharpAssembly/PE/CLIHeader.cs \
+src/SharpAssembly/PE/StandardFields.cs \
+src/SharpAssembly/PE/DataDirectories.cs \
+src/SharpAssembly/PE/ImportTable.cs \
+src/SharpAssembly/PE/StreamHeader.cs \
+src/SharpAssembly/PE/PEFileHeader.cs \
+src/SharpAssembly/PE/NTSpecificFields.cs \
+src/SharpAssembly/AssemblyReader.cs \
+src/SharpAssembly/SharpAssemblyName.cs \
+src/SharpAssembly/AssemblyMetadataTables.cs \
+src/SharpAssembly/FusionNative.cs \
+src/SharpAssembly/SharpAssembly.cs \
+src/SharpAssembly/Metadata/Rows/Param.cs \
+src/SharpAssembly/Metadata/Rows/TypeDef.cs \
+src/SharpAssembly/Metadata/Rows/ModuleRef.cs \
+src/SharpAssembly/Metadata/Rows/ClassLayout.cs \
+src/SharpAssembly/Metadata/Rows/DeclSecurity.cs \
+src/SharpAssembly/Metadata/Rows/TypeRef.cs \
+src/SharpAssembly/Metadata/Rows/AssemblyProcessor.cs \
+src/SharpAssembly/Metadata/Rows/FieldLayout.cs \
+src/SharpAssembly/Metadata/Rows/Module.cs \
+src/SharpAssembly/Metadata/Rows/Event.cs \
+src/SharpAssembly/Metadata/Rows/AssemblyRefProcessor.cs \
+src/SharpAssembly/Metadata/Rows/MethodSemantics.cs \
+src/SharpAssembly/Metadata/Rows/AbstractRow.cs \
+src/SharpAssembly/Metadata/Rows/AssemblyOS.cs \
+src/SharpAssembly/Metadata/Rows/FieldMarshal.cs \
+src/SharpAssembly/Metadata/Rows/ImplMap.cs \
+src/SharpAssembly/Metadata/Rows/StandAloneSig.cs \
+src/SharpAssembly/Metadata/Rows/Method.cs \
+src/SharpAssembly/Metadata/Rows/ENCMap.cs \
+src/SharpAssembly/Metadata/Rows/ENCLog.cs \
+src/SharpAssembly/Metadata/Rows/FieldRVA.cs \
+src/SharpAssembly/Metadata/Rows/AssemblyRefOS.cs \
+src/SharpAssembly/Metadata/Rows/FieldPtr.cs \
+src/SharpAssembly/Metadata/Rows/EventMap.cs \
+src/SharpAssembly/Metadata/Rows/ManifestResource.cs \
+src/SharpAssembly/Metadata/Rows/EventPtr.cs \
+src/SharpAssembly/Metadata/Rows/PropertyMap.cs \
+src/SharpAssembly/Metadata/Rows/Constant.cs \
+src/SharpAssembly/Metadata/Rows/PropertyPtr.cs \
+src/SharpAssembly/Metadata/Rows/File.cs \
+src/SharpAssembly/Metadata/Rows/MemberRef.cs \
+src/SharpAssembly/Metadata/Rows/Assembly.cs \
+src/SharpAssembly/Metadata/Rows/Property.cs \
+src/SharpAssembly/Metadata/Rows/ExportedType.cs \
+src/SharpAssembly/Metadata/Rows/TypeSpec.cs \
+src/SharpAssembly/Metadata/Rows/InterfaceImpl.cs \
+src/SharpAssembly/Metadata/Rows/NestedClass.cs \
+src/SharpAssembly/Metadata/Rows/AssemblyRef.cs \
+src/SharpAssembly/Metadata/Rows/MethodPtr.cs \
+src/SharpAssembly/Metadata/Rows/CodedIndex.cs \
+src/SharpAssembly/Metadata/Rows/CustomAttribute.cs \
+src/SharpAssembly/Metadata/Rows/ParamPtr.cs \
+src/SharpAssembly/Metadata/Rows/Field.cs \
+src/SharpAssembly/Metadata/Rows/MethodImpl.cs \
+src/SharpAssembly/Metadata/AssemblyMetaData.cs \
+src/SharpAssembly/Metadata/MetadataTable.cs \
+src/SharpAssembly/Metadata/Signatures/DataTypes.cs \
+src/SharpAssembly/Metadata/Signatures/CallingConventions.cs \
+src/SharpAssembly/Metadata/MethodBody.cs \
+src/SharpAssembly/AssemblyInfo.cs \
+src/SharpAssembly/AssemblyNameNotFoundException.cs 
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Libraries/SharpRefactory/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Libraries/SharpRefactory/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Libraries/SharpRefactory/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,111 +1,111 @@
 FILES = \
-./src/Lexer/Reader/IReader.cs \
-./src/Lexer/Reader/FileReader.cs \
-./src/Lexer/Reader/StringReader.cs \
-./src/Lexer/Lexer.cs \
-./src/Lexer/Specials/CommentType.cs \
-./src/Lexer/Specials/PreProcessingDirective.cs \
-./src/Lexer/Specials/SpecialType.cs \
-./src/Lexer/Specials/Comment.cs \
-./src/Lexer/Specials/SpecialTracker.cs \
-./src/Lexer/Specials/BlankLine.cs \
-./src/Parser/AST/DebugASTVisitor.cs \
-./src/Parser/AST/Expressions/BaseReferenceExpression.cs \
-./src/Parser/AST/Expressions/ParenthesizedExpression.cs \
-./src/Parser/AST/Expressions/PointerReferenceExpression.cs \
-./src/Parser/AST/Expressions/InvocationExpression.cs \
-./src/Parser/AST/Expressions/SizeOfExpression.cs \
-./src/Parser/AST/Expressions/ArrayInitializerExpression.cs \
-./src/Parser/AST/Expressions/AssignmentExpression.cs \
-./src/Parser/AST/Expressions/ThisReferenceExpression.cs \
-./src/Parser/AST/Expressions/TypeReferenceExpression.cs \
-./src/Parser/AST/Expressions/UnaryOperatorExpression.cs \
-./src/Parser/AST/Expressions/UncheckedExpression.cs \
-./src/Parser/AST/Expressions/PrimitiveExpression.cs \
-./src/Parser/AST/Expressions/ObjectCreateExpression.cs \
-./src/Parser/AST/Expressions/StackAllocExpression.cs \
-./src/Parser/AST/Expressions/CheckedExpression.cs \
-./src/Parser/AST/Expressions/TypeOfExpression.cs \
-./src/Parser/AST/Expressions/IdentifierExpression.cs \
-./src/Parser/AST/Expressions/DirectionExpression.cs \
-./src/Parser/AST/Expressions/IndexerExpression.cs \
-./src/Parser/AST/Expressions/Expression.cs \
-./src/Parser/AST/Expressions/BinaryOperatorExpression.cs \
-./src/Parser/AST/Expressions/FieldReferenceExpression.cs \
-./src/Parser/AST/Expressions/ArrayCreateExpression.cs \
-./src/Parser/AST/Expressions/CastExpression.cs \
-./src/Parser/AST/Expressions/ConditionalExpression.cs \
-./src/Parser/AST/Enums.cs \
-./src/Parser/AST/IASTVisitor.cs \
-./src/Parser/AST/Modifier.cs \
-./src/Parser/AST/LookupTableVisitor.cs \
-./src/Parser/AST/AbstractNode.cs \
-./src/Parser/AST/Statements/BreakStatement.cs \
-./src/Parser/AST/Statements/UnsafeStatement.cs \
-./src/Parser/AST/Statements/CheckedStatement.cs \
-./src/Parser/AST/Statements/LockStatement.cs \
-./src/Parser/AST/Statements/FixedStatement.cs \
-./src/Parser/AST/Statements/BlockStatement.cs \
-./src/Parser/AST/Statements/SwitchStatement.cs \
-./src/Parser/AST/Statements/ContinueStatement.cs \
-./src/Parser/AST/Statements/GotoCaseStatement.cs \
-./src/Parser/AST/Statements/IfElseStatement.cs \
-./src/Parser/AST/Statements/StatementExpression.cs \
-./src/Parser/AST/Statements/LocalVariableDeclaration.cs \
-./src/Parser/AST/Statements/EmptyStatement.cs \
-./src/Parser/AST/Statements/LabelStatement.cs \
-./src/Parser/AST/Statements/ForStatement.cs \
-./src/Parser/AST/Statements/ReturnStatement.cs \
-./src/Parser/AST/Statements/GotoStatement.cs \
-./src/Parser/AST/Statements/ForeachStatement.cs \
-./src/Parser/AST/Statements/Statement.cs \
-./src/Parser/AST/Statements/TryCatchStatement.cs \
-./src/Parser/AST/Statements/ThrowStatement.cs \
-./src/Parser/AST/Statements/UncheckedStatement.cs \
-./src/Parser/AST/Statements/IfStatement.cs \
-./src/Parser/AST/Statements/WhileStatement.cs \
-./src/Parser/AST/Statements/UsingStatement.cs \
-./src/Parser/AST/Statements/DoWhileStatement.cs \
-./src/Parser/AST/GlobalScope/UsingAliasDeclaration.cs \
-./src/Parser/AST/GlobalScope/UsingDeclaration.cs \
-./src/Parser/AST/GlobalScope/NamespaceDeclaration.cs \
-./src/Parser/AST/GlobalScope/TypeDeclaration.cs \
-./src/Parser/AST/GlobalScope/AttributeSection.cs \
-./src/Parser/AST/GlobalScope/DelegateDeclaration.cs \
-./src/Parser/AST/CompilationUnit.cs \
-./src/Parser/AST/AttributeTargets.cs \
-./src/Parser/AST/TypeLevel/EventAddRegion.cs \
-./src/Parser/AST/TypeLevel/TypeReference.cs \
-./src/Parser/AST/TypeLevel/ConstructorDeclaration.cs \
-./src/Parser/AST/TypeLevel/PropertySetRegion.cs \
-./src/Parser/AST/TypeLevel/ParameterDeclarationExpression.cs \
-./src/Parser/AST/TypeLevel/IndexerDeclaration.cs \
-./src/Parser/AST/TypeLevel/PropertyGetRegion.cs \
-./src/Parser/AST/TypeLevel/VariableDeclaration.cs \
-./src/Parser/AST/TypeLevel/OperatorDeclaration.cs \
-./src/Parser/AST/TypeLevel/MethodDeclaration.cs \
-./src/Parser/AST/TypeLevel/FieldDeclaration.cs \
-./src/Parser/AST/TypeLevel/PropertyDeclaration.cs \
-./src/Parser/AST/TypeLevel/EventRemoveRegion.cs \
-./src/Parser/AST/TypeLevel/EventDeclaration.cs \
-./src/Parser/AST/TypeLevel/DestructorDeclaration.cs \
-./src/Parser/AST/AbstractASTVisitor.cs \
-./src/Parser/AST/INode.cs \
-./src/Parser/generated/ParserUtil.cs \
-./src/Parser/generated/Modifiers.cs \
-./src/Parser/generated/Parser.cs \
-./src/Parser/generated/Error.cs \
-./src/Parser/generated/keywordlist/Tokens.cs \
-./src/Parser/generated/keywordlist/Keywords.cs \
-./src/PrettyPrinter/OutputFormatter.cs \
-./src/PrettyPrinter/PrettyPrintVisitor.cs \
-./src/PrettyPrinter/PrettyPrintUtil.cs \
-./src/PrettyPrinter/PrettyPrintData.cs \
-./src/PrettyPrinter/SpecialVisitor.cs \
-./src/CodeDOM/CodeDOMVisitor.cs \
-./src/VBConverter/VBNetRefactory.cs \
-./src/VBConverter/VBNetVisitor.cs \
-./src/AssemblyInfo.cs
+src/Lexer/Reader/IReader.cs \
+src/Lexer/Reader/FileReader.cs \
+src/Lexer/Reader/StringReader.cs \
+src/Lexer/Lexer.cs \
+src/Lexer/Specials/CommentType.cs \
+src/Lexer/Specials/PreProcessingDirective.cs \
+src/Lexer/Specials/SpecialType.cs \
+src/Lexer/Specials/Comment.cs \
+src/Lexer/Specials/SpecialTracker.cs \
+src/Lexer/Specials/BlankLine.cs \
+src/Parser/AST/DebugASTVisitor.cs \
+src/Parser/AST/Expressions/BaseReferenceExpression.cs \
+src/Parser/AST/Expressions/ParenthesizedExpression.cs \
+src/Parser/AST/Expressions/PointerReferenceExpression.cs \
+src/Parser/AST/Expressions/InvocationExpression.cs \
+src/Parser/AST/Expressions/SizeOfExpression.cs \
+src/Parser/AST/Expressions/ArrayInitializerExpression.cs \
+src/Parser/AST/Expressions/AssignmentExpression.cs \
+src/Parser/AST/Expressions/ThisReferenceExpression.cs \
+src/Parser/AST/Expressions/TypeReferenceExpression.cs \
+src/Parser/AST/Expressions/UnaryOperatorExpression.cs \
+src/Parser/AST/Expressions/UncheckedExpression.cs \
+src/Parser/AST/Expressions/PrimitiveExpression.cs \
+src/Parser/AST/Expressions/ObjectCreateExpression.cs \
+src/Parser/AST/Expressions/StackAllocExpression.cs \
+src/Parser/AST/Expressions/CheckedExpression.cs \
+src/Parser/AST/Expressions/TypeOfExpression.cs \
+src/Parser/AST/Expressions/IdentifierExpression.cs \
+src/Parser/AST/Expressions/DirectionExpression.cs \
+src/Parser/AST/Expressions/IndexerExpression.cs \
+src/Parser/AST/Expressions/Expression.cs \
+src/Parser/AST/Expressions/BinaryOperatorExpression.cs \
+src/Parser/AST/Expressions/FieldReferenceExpression.cs \
+src/Parser/AST/Expressions/ArrayCreateExpression.cs \
+src/Parser/AST/Expressions/CastExpression.cs \
+src/Parser/AST/Expressions/ConditionalExpression.cs \
+src/Parser/AST/Enums.cs \
+src/Parser/AST/IASTVisitor.cs \
+src/Parser/AST/Modifier.cs \
+src/Parser/AST/LookupTableVisitor.cs \
+src/Parser/AST/AbstractNode.cs \
+src/Parser/AST/Statements/BreakStatement.cs \
+src/Parser/AST/Statements/UnsafeStatement.cs \
+src/Parser/AST/Statements/CheckedStatement.cs \
+src/Parser/AST/Statements/LockStatement.cs \
+src/Parser/AST/Statements/FixedStatement.cs \
+src/Parser/AST/Statements/BlockStatement.cs \
+src/Parser/AST/Statements/SwitchStatement.cs \
+src/Parser/AST/Statements/ContinueStatement.cs \
+src/Parser/AST/Statements/GotoCaseStatement.cs \
+src/Parser/AST/Statements/IfElseStatement.cs \
+src/Parser/AST/Statements/StatementExpression.cs \
+src/Parser/AST/Statements/LocalVariableDeclaration.cs \
+src/Parser/AST/Statements/EmptyStatement.cs \
+src/Parser/AST/Statements/LabelStatement.cs \
+src/Parser/AST/Statements/ForStatement.cs \
+src/Parser/AST/Statements/ReturnStatement.cs \
+src/Parser/AST/Statements/GotoStatement.cs \
+src/Parser/AST/Statements/ForeachStatement.cs \
+src/Parser/AST/Statements/Statement.cs \
+src/Parser/AST/Statements/TryCatchStatement.cs \
+src/Parser/AST/Statements/ThrowStatement.cs \
+src/Parser/AST/Statements/UncheckedStatement.cs \
+src/Parser/AST/Statements/IfStatement.cs \
+src/Parser/AST/Statements/WhileStatement.cs \
+src/Parser/AST/Statements/UsingStatement.cs \
+src/Parser/AST/Statements/DoWhileStatement.cs \
+src/Parser/AST/GlobalScope/UsingAliasDeclaration.cs \
+src/Parser/AST/GlobalScope/UsingDeclaration.cs \
+src/Parser/AST/GlobalScope/NamespaceDeclaration.cs \
+src/Parser/AST/GlobalScope/TypeDeclaration.cs \
+src/Parser/AST/GlobalScope/AttributeSection.cs \
+src/Parser/AST/GlobalScope/DelegateDeclaration.cs \
+src/Parser/AST/CompilationUnit.cs \
+src/Parser/AST/AttributeTargets.cs \
+src/Parser/AST/TypeLevel/EventAddRegion.cs \
+src/Parser/AST/TypeLevel/TypeReference.cs \
+src/Parser/AST/TypeLevel/ConstructorDeclaration.cs \
+src/Parser/AST/TypeLevel/PropertySetRegion.cs \
+src/Parser/AST/TypeLevel/ParameterDeclarationExpression.cs \
+src/Parser/AST/TypeLevel/IndexerDeclaration.cs \
+src/Parser/AST/TypeLevel/PropertyGetRegion.cs \
+src/Parser/AST/TypeLevel/VariableDeclaration.cs \
+src/Parser/AST/TypeLevel/OperatorDeclaration.cs \
+src/Parser/AST/TypeLevel/MethodDeclaration.cs \
+src/Parser/AST/TypeLevel/FieldDeclaration.cs \
+src/Parser/AST/TypeLevel/PropertyDeclaration.cs \
+src/Parser/AST/TypeLevel/EventRemoveRegion.cs \
+src/Parser/AST/TypeLevel/EventDeclaration.cs \
+src/Parser/AST/TypeLevel/DestructorDeclaration.cs \
+src/Parser/AST/AbstractASTVisitor.cs \
+src/Parser/AST/INode.cs \
+src/Parser/generated/ParserUtil.cs \
+src/Parser/generated/Modifiers.cs \
+src/Parser/generated/Parser.cs \
+src/Parser/generated/Error.cs \
+src/Parser/generated/keywordlist/Tokens.cs \
+src/Parser/generated/keywordlist/Keywords.cs \
+src/PrettyPrinter/OutputFormatter.cs \
+src/PrettyPrinter/PrettyPrintVisitor.cs \
+src/PrettyPrinter/PrettyPrintUtil.cs \
+src/PrettyPrinter/PrettyPrintData.cs \
+src/PrettyPrinter/SpecialVisitor.cs \
+src/CodeDOM/CodeDOMVisitor.cs \
+src/VBConverter/VBNetRefactory.cs \
+src/VBConverter/VBNetVisitor.cs \
+src/AssemblyInfo.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Main/Base/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Main/Base/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -11,362 +11,362 @@
 	$(BASE_DEPENDENCIES_LIBS)
 
 FILES= \
-./Gui/Pads/ProjectBrowser/ProjectBrowserView.cs \
-./Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs \
-./Gui/Pads/ProjectBrowser/NodeBuilder/IProjectNodeBuilder.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/ProjectBrowserNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/FolderNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/AbstractBrowserNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/FileNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/ReferenceNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/CombineBrowserNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/DragDropUtil.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/DirectoryNode.cs \
-./Gui/Pads/ProjectBrowser/BrowserNode/NamedFolderNode.cs \
-./Gui/Pads/OpenTaskView.cs \
-./Gui/Pads/TreeViewMemento.cs \
-./Gui/Pads/FileScout/FileList.cs \
-./Gui/Pads/FileScout/FileListItem.cs \
-./Gui/Pads/FileScout/FileScout.cs \
-./Gui/Pads/PropertyPad/PropertyPadCommands.cs \
-./Gui/Pads/PropertyPad/PropertyPad.cs \
-./Gui/Pads/ClassScout/ClassScout.cs \
-./Gui/Pads/ClassScout/NodeBuilder/DefaultDotNetClassScoutNodeBuilder.cs \
-./Gui/Pads/ClassScout/NodeBuilder/IClassScoutNodeBuilder.cs \
-./Gui/Pads/ClassScout/BrowserNode/AbstractClassScoutNode.cs \
-./Gui/Pads/HelpBrowser/MonodocTreePad.cs \
-./Gui/Pads/HelpBrowser/HelpViewer.cs \
-./Gui/Pads/SideBarView.cs \
-./Gui/AbstractPadContent.cs \
-./Gui/ISecondaryViewContent.cs \
-./Gui/IViewContent.cs \
-./Gui/AbstractViewContent.cs \
-./Gui/Components/SdMenuSeparator.cs \
-./Gui/Components/SharpMessageBox.cs \
-./Gui/Components/StatusBar/AxStatusBar.cs \
-./Gui/Components/StatusBar/SdStatusBar.cs \
-./Gui/Components/StatusBar/AxStatusBarPanel.cs \
-./Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs \
-./Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs \
-./Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs \
-./Gui/Components/SideBar/AxSideTabItem.cs \
-./Gui/Components/SideBar/AxSideTab.cs \
-./Gui/Components/SideBar/SharpDevelopSideTabItem.cs \
-./Gui/Components/SideBar/SharpDevelopSideBar.cs \
-./Gui/Components/SideBar/AxSideBar.cs \
-./Gui/Components/SdMenu.cs \
-./Gui/Components/SdMenuCheckBox.cs \
-./Gui/Components/SdMenuCommand.cs \
-./Gui/Components/SdToolbarCommand.cs \
-./Gui/IProgressMonitor.cs \
-./Gui/WorkbenchWindowCollection.cs \
-./Gui/WorkbenchSingleton.cs \
-./Gui/IMementoCapable.cs \
-./Gui/Dialogs/ViewGPLDialog.cs \
-./Gui/Dialogs/CommonAboutDialog.cs \
-./Gui/Dialogs/OptionPanels/ProjectOptions/CompileFileProjectOptions.cs \
-./Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs \
-./Gui/Dialogs/OptionPanels/ProjectOptions/GeneralProjectOptions.cs \
-./Gui/Dialogs/OptionPanels/IDEOptions/BuildPanel.cs \
-./Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs \
-./Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs \
-./Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs \
-./Gui/Dialogs/OptionPanels/EditTemplateDialog.cs \
-./Gui/Dialogs/OptionPanels/ExternalToolPanel.cs \
-./Gui/Dialogs/OptionPanels/PropertyGridPanel.cs \
-./Gui/Dialogs/TreeViewOptions.cs \
-./Gui/Dialogs/WordCountDialog.cs \
-./Gui/Dialogs/SharpDevelopAboutPanels.cs \
-./Gui/Dialogs/SplashScreen.cs \
-./Gui/Dialogs/Wizard/WizardDialog.cs \
-./Gui/Dialogs/Wizard/CurrentPanelPanel.cs \
-./Gui/Dialogs/Wizard/StatusPanel.cs \
-./Gui/Dialogs/Wizard/IWizardPanel.cs \
-./Gui/Dialogs/Wizard/AbstractWizardPanel.cs \
-./Gui/Dialogs/CombineConfiguration/CombineConfigurationPanel.cs \
-./Gui/Dialogs/CombineConfiguration/CombineDependencyPanel.cs \
-./Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs \
-./Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs \
-./Gui/Dialogs/CombineConfiguration/ConfigurationManager.cs \
-./Gui/Dialogs/FusionNative.cs \
-./Gui/Dialogs/NewProjectDialog.cs \
-./Gui/Dialogs/AbstractOptionPanel.cs \
-./Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs \
-./Gui/Dialogs/ReferenceDialog/WebReference.cs \
-./Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs \
-./Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs \
-./Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs \
-./Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs \
-./Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs \
-./Gui/Dialogs/TabbedOptions.cs \
-./Gui/Dialogs/DirtyFilesDialog.cs \
-./Gui/Dialogs/TipOfTheDay.cs \
-./Gui/Dialogs/InputBox.cs \
-./Gui/Dialogs/NewFileDialog.cs \
-./Gui/Dialogs/ProjectOptionsDialog.cs \
-./Gui/Dialogs/NewLayoutDialog.cs \
-./Gui/ContentInterfaces/IBookmarkOperations.cs \
-./Gui/ContentInterfaces/IClipboardHandler.cs \
-./Gui/ContentInterfaces/IPrintable.cs \
-./Gui/ContentInterfaces/IPositionable.cs \
-./Gui/ContentInterfaces/ICustomizedCommands.cs \
-./Gui/ContentInterfaces/IEditable.cs \
-./Gui/ContentInterfaces/IParseInformationListener.cs \
-./Gui/ContentInterfaces/IParsableContent.cs \
-./Gui/XmlForms/SharpDevelopStringValueFilter.cs \
-./Gui/XmlForms/BaseSharpDevelopForm.cs \
-./Gui/XmlForms/SharpDevelopPropertyValueCreator.cs \
-./Gui/XmlForms/BaseSharpDevelopUserControl.cs \
-./Gui/XmlForms/SharpDevelopObjectCreator.cs \
-./Gui/IBaseViewContent.cs \
-./Gui/ErrorDialogs/LoadingError.cs \
-./Gui/IWorkbenchLayout.cs \
-./Gui/ErrorHandlers/GenericError.cs \
-./Gui/ErrorHandlers/CombineLoadError.cs \
-./Gui/IWorkbench.cs \
-./Gui/BrowserDisplayBinding/AxSHDocVw.cs \
-./Gui/BrowserDisplayBinding/HtmlViewPane.cs \
-./Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs \
-./Gui/BrowserDisplayBinding/HTMLInterfaces.cs \
-./Gui/BrowserDisplayBinding/SHDocVw.cs \
-./Gui/IPadContent.cs \
-./Gui/AbstractBaseViewContent.cs \
-./Gui/PadContentCollection.cs \
-./Gui/PixbufList.cs \
-./Gui/AbstractSecondaryViewContent.cs \
-./Gui/ViewContentCollection.cs \
-./Gui/IWorkbenchWindow.cs \
-./Gui/HtmlControl/IHTMLDocument2.cs \
-./Gui/HtmlControl/IHTMLElement.cs \
-./Gui/HtmlControl/IWebBrowser.cs \
-./Gui/HtmlControl/MozillaControl.cs \
-./Gui/Workbench/Layouts/SdiWorkspaceWindow.cs \
-./Gui/Workbench/Layouts/SdiWorkspaceLayout.cs \
-./Gui/Workbench/WorkbenchMemento.cs \
-./Gui/Workbench/DefaultWorkbench.cs \
-./Commands/ClassBrowserCommands/ClassBrowserCommands.cs \
-./Commands/FileCommands.cs \
-./Commands/HelpCommands.cs \
-./Commands/CustomStringTagProvider.cs \
-./Commands/RunCommands.cs \
-./Commands/ProjectBrowserCommands/FolderNodeCommands.cs \
-./Commands/ProjectBrowserCommands/ReferenceFolderNodeCommands.cs \
-./Commands/ProjectBrowserCommands/GeneralNodeCommands.cs \
-./Commands/ProjectBrowserCommands/CombineNodeCommands.cs \
-./Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs \
-./Commands/ProjectBrowserCommands/ProjectNodeCommands.cs \
-./Commands/ProjectCommands.cs \
-./Commands/VBConverter/ConvertProject.cs \
-./Commands/VBConverter/ConvertBuffer.cs \
-./Commands/SideBarCommands.cs \
-./Commands/ProjectOptionsCommands.cs \
-./Commands/EditCommands.cs \
-./Commands/WindowCommands.cs \
-./Commands/AutostartCommands.cs \
-./Commands/ToolsCommands.cs \
-./Commands/MenuItemBuilders.cs \
-./Services/File/IFileService.cs \
-./Services/File/DefaultFileService.cs \
-./Services/File/FileEventArgs.cs \
-./Services/File/RecentFiles.cs \
-./Services/File/RecentOpen.cs \
-./Services/MenuService/MenuService.cs \
-./Services/DisplayBinding/DisplayBindingService.cs \
-./Services/LanguageBinding/LanguageBindingService.cs \
-./Services/Tasks/TaskService.cs \
-./Services/Tasks/Task.cs \
-./Services/AmbienceService/AmbienceService.cs \
-./Services/AmbienceService/AmbienceReflectionDecorator.cs \
-./Services/AmbienceService/AbstractAmbience.cs \
-./Services/AmbienceService/CodeDOMGeneratorUtility.cs \
-./Services/AmbienceService/NetAmbience.cs \
-./Services/AmbienceService/IAmbience.cs \
-./Services/Project/ProjectEventArgs.cs \
-./Services/Project/IProjectService.cs \
-./Services/Project/ProjectRenameEventArgs.cs \
-./Services/Project/DefaultProjectService.cs \
-./Services/Project/ParseInformationEventHandler.cs \
-./Services/Project/CombineEventArgs.cs \
-./Services/IconService.cs \
-./Services/StatusBar/DefaultStatusBarService.cs \
-./Services/StatusBar/IStatusBarService.cs \
-./Services/Language/LanguageService.cs \
-./Services/Language/Language.cs \
-./Services/ClassBrowserIcons/ClassBrowserIconsService.cs \
-./Services/ResourceNotFoundException.cs \
-./Services/ParserService/DefaultParserService.cs \
-./Services/ParserService/CodeCompletionDatabase.cs \
-./Services/ParserService/ClassProxyCollection.cs \
-./Services/ParserService/IParserService.cs \
-./Services/ParserService/ClassProxy.cs \
-./Services/ParserService/AssemblyInformation.cs \
-./Services/ParserService/ParseInformation.cs \
-./Services/ParserService/ClassInformationEventHandler.cs \
-./Services/ResourceService.cs \
-./Services/StockIcons.cs \
-./Services/MessageService.cs \
-./Services/Toolbar/ToolbarService.cs \
-./Services/MonodocService.cs \
-./Services/IDebuggerService.cs \
-./Services/SystemAssemblyService.cs \
-./Services/DispatchService/DispatchService.cs \
-./Internal/Undo/IUndoableOperation.cs \
-./Internal/Undo/UndoStack.cs \
-./Internal/Undo/UndoQueue.cs \
-./Internal/Conditions/OwnerStateCondition.cs \
-./Internal/Conditions/ProjectActiveCondition.cs \
-./Internal/Conditions/WindowActiveCondition.cs \
-./Internal/Conditions/WindowOpenCondition.cs \
-./Internal/Conditions/CombineOpenCondition.cs \
-./Internal/Conditions/ProjectOpenCondition.cs \
-./Internal/Conditions/WorkbenchContextCondition.cs \
-./Internal/Codons/DisplayBinding/IDisplayBinding.cs \
-./Internal/Codons/DisplayBinding/ISubDisplayBinding.cs \
-./Internal/Codons/DisplayBinding/DisplayBindingCodon.cs \
-./Internal/Codons/LanguageBinding/ICompilerResult.cs \
-./Internal/Codons/LanguageBinding/FileFilterCodon.cs \
-./Internal/Codons/LanguageBinding/ILanguageBinding.cs \
-./Internal/Codons/LanguageBinding/LanguageBindingCodon.cs \
-./Internal/Codons/LanguageBinding/DefaultCompilerResult.cs \
-./Internal/Codons/DefaultDialogPanelDescriptor.cs \
-./Internal/Codons/Toolbars/ToolbarItemCodon.cs \
-./Internal/Codons/IDialogPanel.cs \
-./Internal/Codons/DialogPanelCodon.cs \
-./Internal/Codons/IDialogPanelDescriptor.cs \
-./Internal/Codons/MenuItems/AbstractCheckableMenuCommand.cs \
-./Internal/Codons/MenuItems/ISubmenuBuilder.cs \
-./Internal/Codons/MenuItems/IMenuCommand.cs \
-./Internal/Codons/MenuItems/AbstractMenuCommand.cs \
-./Internal/Codons/MenuItems/ICheckableMenuCommand.cs \
-./Internal/Codons/MenuItems/MenuItemCodon.cs \
-./Internal/Codons/Templates/FileTemplateCodon.cs \
-./Internal/Codons/Templates/ProjectTemplateCodon.cs \
-./Internal/DataStructures/PriorityQueue.cs \
-./Internal/Parser/IRegion.cs \
-./Internal/Parser/ICompilationUnitBase.cs \
-./Internal/Parser/IEvent.cs \
-./Internal/Parser/Collections/PropertyCollection.cs \
-./Internal/Parser/Collections/TypedCSharpCollection.cs \
-./Internal/Parser/Collections/IUsingCollection.cs \
-./Internal/Parser/Collections/TagCollection.cs \
-./Internal/Parser/Collections/ClassCollection.cs \
-./Internal/Parser/Collections/EventCollection.cs \
-./Internal/Parser/Collections/AttributeCollection.cs \
-./Internal/Parser/Collections/MethodCollection.cs \
-./Internal/Parser/Collections/CommentCollection.cs \
-./Internal/Parser/Collections/ParameterCollection.cs \
-./Internal/Parser/Collections/FieldCollection.cs \
-./Internal/Parser/Collections/AttributeSectionCollection.cs \
-./Internal/Parser/ParameterModifier.cs \
-./Internal/Parser/ClassType.cs \
-./Internal/Parser/IParser.cs \
-./Internal/Parser/Implementations/AbstractField.cs \
-./Internal/Parser/Implementations/AbstractDecoration.cs \
-./Internal/Parser/Implementations/AbstractCompilationUnit.cs \
-./Internal/Parser/Implementations/AbstractParameter.cs \
-./Internal/Parser/Implementations/AbstractProperty.cs \
-./Internal/Parser/Implementations/AbstractIndexer.cs \
-./Internal/Parser/Implementations/AbstractAttribute.cs \
-./Internal/Parser/Implementations/AbstractEvent.cs \
-./Internal/Parser/Implementations/DefaultRegion.cs \
-./Internal/Parser/Implementations/AbstractComment.cs \
-./Internal/Parser/Implementations/AbstractNamedEntity.cs \
-./Internal/Parser/Implementations/AbstractMember.cs \
-./Internal/Parser/Implementations/AbstractUsing.cs \
-./Internal/Parser/Implementations/AbstractClass.cs \
-./Internal/Parser/Implementations/AbstractMethod.cs \
-./Internal/Parser/Implementations/AbstractReturnType.cs \
-./Internal/Parser/Tag.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyMethod.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyAttribute.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyReturnType.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyClass.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyField.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyIndexer.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyEvent.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyParameter.cs \
-./Internal/Parser/SharpAssemblyLayer/SharpAssemblyProperty.cs \
-./Internal/Parser/IReturnType.cs \
-./Internal/Parser/IUsing.cs \
-./Internal/Parser/IClass.cs \
-./Internal/Parser/IParameter.cs \
-./Internal/Parser/IIndexer.cs \
-./Internal/Parser/IAttribute.cs \
-./Internal/Parser/ReflectionLayer/ReflectionReturnType.cs \
-./Internal/Parser/ReflectionLayer/ReflectionProperty.cs \
-./Internal/Parser/ReflectionLayer/ReflectionClass.cs \
-./Internal/Parser/ReflectionLayer/ReflectionIndexer.cs \
-./Internal/Parser/ReflectionLayer/ReflectionMethod.cs \
-./Internal/Parser/ReflectionLayer/ReflectionField.cs \
-./Internal/Parser/ReflectionLayer/ReflectionParameter.cs \
-./Internal/Parser/ReflectionLayer/ReflectionEvent.cs \
-./Internal/Parser/IDecoration.cs \
-./Internal/Parser/Comment.cs \
-./Internal/Parser/ModifierEnum.cs \
-./Internal/Parser/IMember.cs \
-./Internal/Parser/IExpressionFinder.cs \
-./Internal/Parser/IField.cs \
-./Internal/Parser/IProperty.cs \
-./Internal/Parser/PersistenceLayer/PersistentIndexer.cs \
-./Internal/Parser/PersistenceLayer/PersistentField.cs \
-./Internal/Parser/PersistenceLayer/PersistentMethod.cs \
-./Internal/Parser/PersistenceLayer/PersistentReturnType.cs \
-./Internal/Parser/PersistenceLayer/PersistentEvent.cs \
-./Internal/Parser/PersistenceLayer/PersistentProperty.cs \
-./Internal/Parser/PersistenceLayer/PersistentParameter.cs \
-./Internal/Parser/PersistenceLayer/PersistentClass.cs \
-./Internal/Parser/IMethod.cs \
-./Internal/Parser/IComment.cs \
-./Internal/Parser/ICompilationUnit.cs \
-./Internal/Project/Attributes/XmlNodeNameAttribute.cs \
-./Internal/Project/Attributes/ConvertToRelativePathAttribute.cs \
-./Internal/Project/Attributes/XmlSetAttribute.cs \
-./Internal/Project/Attributes/XmlAttributeAttribute.cs \
-./Internal/Project/Project/Deployment/DeployInformation.cs \
-./Internal/Project/Project/Deployment/AssemblyDeploy.cs \
-./Internal/Project/Project/Deployment/ScriptDeploy.cs \
-./Internal/Project/Project/Deployment/IDeploymentStrategy.cs \
-./Internal/Project/Project/Deployment/FileDeploy.cs \
-./Internal/Project/Project/Collections/ProjectFileCollection.cs \
-./Internal/Project/Project/Collections/ProjectReferenceCollection.cs \
-./Internal/Project/Project/UnknownProjectVersionException.cs \
-./Internal/Project/Project/TypelibImporter.cs \
-./Internal/Project/Project/AbstractProjectConfiguration.cs \
-./Internal/Project/Project/AbstractProject.cs \
-./Internal/Project/Project/ProjectReference.cs \
-./Internal/Project/Project/ProjectReferenceEventArgs.cs \
-./Internal/Project/Project/ConvertXml.cs \
-./Internal/Project/Project/IncludeFilesDialog.cs \
-./Internal/Project/Project/IConfiguration.cs \
-./Internal/Project/Project/ProjectFile.cs \
-./Internal/Project/Project/ProjectFileEventArgs.cs \
-./Internal/Project/Project/AbstractConfiguration.cs \
-./Internal/Project/Project/IProject.cs \
-./Internal/Project/Combine/Combine.cs \
-./Internal/Project/Combine/CombineExecuteDefinition.cs \
-./Internal/Project/Combine/CyclicBuildOrderException.cs \
-./Internal/Project/Combine/CombineConfiguration.cs \
-./Internal/Project/Combine/NoStartupCombineDefinedException.cs \
-./Internal/Project/Combine/CombineEntry.cs \
-./Internal/Project/Combine/CombineEntryEventArgs.cs \
-./Internal/Templates/FileDescriptionTemplate.cs \
-./Internal/Templates/CodeTemplate.cs \
-./Internal/Templates/CodeTemplateGroup.cs \
-./Internal/Templates/FileTemplate.cs \
-./Internal/Templates/TextTemplate.cs \
-./Internal/Templates/CodeTemplateLoader.cs \
-./Internal/Templates/INewFileCreator.cs \
-./Internal/Templates/ProjectTemplates/ProjectTemplate.cs \
-./Internal/Templates/ProjectTemplates/ProjectDescriptor.cs \
-./Internal/Templates/ProjectTemplates/CombineDescriptor.cs \
-./Internal/Templates/ProjectTemplates/ProjectCreateInformation.cs \
-./Internal/CollectionUtilities/DiffUtility.cs \
-./Internal/CollectionUtilities/SortUtilityBase.cs \
-./Internal/CollectionUtilities/SortUtility.cs \
-./Internal/CollectionUtilities/Comparers.cs \
-./Internal/ExternalTool/ToolLoader.cs \
-./Internal/ExternalTool/ExternalTool.cs \
-./AssemblyInfo.cs
+Gui/Pads/ProjectBrowser/ProjectBrowserView.cs \
+Gui/Pads/ProjectBrowser/NodeBuilder/DefaultDotNetNodeBuilder.cs \
+Gui/Pads/ProjectBrowser/NodeBuilder/IProjectNodeBuilder.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/ProjectBrowserNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/FolderNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/AbstractBrowserNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/FileNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/ReferenceNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/CombineBrowserNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/DragDropUtil.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/DirectoryNode.cs \
+Gui/Pads/ProjectBrowser/BrowserNode/NamedFolderNode.cs \
+Gui/Pads/OpenTaskView.cs \
+Gui/Pads/TreeViewMemento.cs \
+Gui/Pads/FileScout/FileList.cs \
+Gui/Pads/FileScout/FileListItem.cs \
+Gui/Pads/FileScout/FileScout.cs \
+Gui/Pads/PropertyPad/PropertyPadCommands.cs \
+Gui/Pads/PropertyPad/PropertyPad.cs \
+Gui/Pads/ClassScout/ClassScout.cs \
+Gui/Pads/ClassScout/NodeBuilder/DefaultDotNetClassScoutNodeBuilder.cs \
+Gui/Pads/ClassScout/NodeBuilder/IClassScoutNodeBuilder.cs \
+Gui/Pads/ClassScout/BrowserNode/AbstractClassScoutNode.cs \
+Gui/Pads/HelpBrowser/MonodocTreePad.cs \
+Gui/Pads/HelpBrowser/HelpViewer.cs \
+Gui/Pads/SideBarView.cs \
+Gui/AbstractPadContent.cs \
+Gui/ISecondaryViewContent.cs \
+Gui/IViewContent.cs \
+Gui/AbstractViewContent.cs \
+Gui/Components/SdMenuSeparator.cs \
+Gui/Components/SharpMessageBox.cs \
+Gui/Components/StatusBar/AxStatusBar.cs \
+Gui/Components/StatusBar/SdStatusBar.cs \
+Gui/Components/StatusBar/AxStatusBarPanel.cs \
+Gui/Components/LocalizedPropertyGrid/LocalizedPropertyDescriptor.cs \
+Gui/Components/LocalizedPropertyGrid/LocalizedObject.cs \
+Gui/Components/LocalizedPropertyGrid/LocalizedPropertyAttribute.cs \
+Gui/Components/SideBar/AxSideTabItem.cs \
+Gui/Components/SideBar/AxSideTab.cs \
+Gui/Components/SideBar/SharpDevelopSideTabItem.cs \
+Gui/Components/SideBar/SharpDevelopSideBar.cs \
+Gui/Components/SideBar/AxSideBar.cs \
+Gui/Components/SdMenu.cs \
+Gui/Components/SdMenuCheckBox.cs \
+Gui/Components/SdMenuCommand.cs \
+Gui/Components/SdToolbarCommand.cs \
+Gui/IProgressMonitor.cs \
+Gui/WorkbenchWindowCollection.cs \
+Gui/WorkbenchSingleton.cs \
+Gui/IMementoCapable.cs \
+Gui/Dialogs/ViewGPLDialog.cs \
+Gui/Dialogs/CommonAboutDialog.cs \
+Gui/Dialogs/OptionPanels/ProjectOptions/CompileFileProjectOptions.cs \
+Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs \
+Gui/Dialogs/OptionPanels/ProjectOptions/GeneralProjectOptions.cs \
+Gui/Dialogs/OptionPanels/IDEOptions/BuildPanel.cs \
+Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs \
+Gui/Dialogs/OptionPanels/IDEOptions/SelectStylePanel.cs \
+Gui/Dialogs/OptionPanels/IDEOptions/CodeGenerationPanel.cs \
+Gui/Dialogs/OptionPanels/EditTemplateDialog.cs \
+Gui/Dialogs/OptionPanels/ExternalToolPanel.cs \
+Gui/Dialogs/OptionPanels/PropertyGridPanel.cs \
+Gui/Dialogs/TreeViewOptions.cs \
+Gui/Dialogs/WordCountDialog.cs \
+Gui/Dialogs/SharpDevelopAboutPanels.cs \
+Gui/Dialogs/SplashScreen.cs \
+Gui/Dialogs/Wizard/WizardDialog.cs \
+Gui/Dialogs/Wizard/CurrentPanelPanel.cs \
+Gui/Dialogs/Wizard/StatusPanel.cs \
+Gui/Dialogs/Wizard/IWizardPanel.cs \
+Gui/Dialogs/Wizard/AbstractWizardPanel.cs \
+Gui/Dialogs/CombineConfiguration/CombineConfigurationPanel.cs \
+Gui/Dialogs/CombineConfiguration/CombineDependencyPanel.cs \
+Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs \
+Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs \
+Gui/Dialogs/CombineConfiguration/ConfigurationManager.cs \
+Gui/Dialogs/FusionNative.cs \
+Gui/Dialogs/NewProjectDialog.cs \
+Gui/Dialogs/AbstractOptionPanel.cs \
+Gui/Dialogs/ReferenceDialog/COMReferencePanel.cs \
+Gui/Dialogs/ReferenceDialog/WebReference.cs \
+Gui/Dialogs/ReferenceDialog/AssemblyReferencePanel.cs \
+Gui/Dialogs/ReferenceDialog/GacReferencePanel.cs \
+Gui/Dialogs/ReferenceDialog/AddWebReferenceDialog.cs \
+Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs \
+Gui/Dialogs/ReferenceDialog/ProjectReferencePanel.cs \
+Gui/Dialogs/TabbedOptions.cs \
+Gui/Dialogs/DirtyFilesDialog.cs \
+Gui/Dialogs/TipOfTheDay.cs \
+Gui/Dialogs/InputBox.cs \
+Gui/Dialogs/NewFileDialog.cs \
+Gui/Dialogs/ProjectOptionsDialog.cs \
+Gui/Dialogs/NewLayoutDialog.cs \
+Gui/ContentInterfaces/IBookmarkOperations.cs \
+Gui/ContentInterfaces/IClipboardHandler.cs \
+Gui/ContentInterfaces/IPrintable.cs \
+Gui/ContentInterfaces/IPositionable.cs \
+Gui/ContentInterfaces/ICustomizedCommands.cs \
+Gui/ContentInterfaces/IEditable.cs \
+Gui/ContentInterfaces/IParseInformationListener.cs \
+Gui/ContentInterfaces/IParsableContent.cs \
+Gui/XmlForms/SharpDevelopStringValueFilter.cs \
+Gui/XmlForms/BaseSharpDevelopForm.cs \
+Gui/XmlForms/SharpDevelopPropertyValueCreator.cs \
+Gui/XmlForms/BaseSharpDevelopUserControl.cs \
+Gui/XmlForms/SharpDevelopObjectCreator.cs \
+Gui/IBaseViewContent.cs \
+Gui/ErrorDialogs/LoadingError.cs \
+Gui/IWorkbenchLayout.cs \
+Gui/ErrorHandlers/GenericError.cs \
+Gui/ErrorHandlers/CombineLoadError.cs \
+Gui/IWorkbench.cs \
+Gui/BrowserDisplayBinding/AxSHDocVw.cs \
+Gui/BrowserDisplayBinding/HtmlViewPane.cs \
+Gui/BrowserDisplayBinding/BrowserDisplayBinding.cs \
+Gui/BrowserDisplayBinding/HTMLInterfaces.cs \
+Gui/BrowserDisplayBinding/SHDocVw.cs \
+Gui/IPadContent.cs \
+Gui/AbstractBaseViewContent.cs \
+Gui/PadContentCollection.cs \
+Gui/PixbufList.cs \
+Gui/AbstractSecondaryViewContent.cs \
+Gui/ViewContentCollection.cs \
+Gui/IWorkbenchWindow.cs \
+Gui/HtmlControl/IHTMLDocument2.cs \
+Gui/HtmlControl/IHTMLElement.cs \
+Gui/HtmlControl/IWebBrowser.cs \
+Gui/HtmlControl/MozillaControl.cs \
+Gui/Workbench/Layouts/SdiWorkspaceWindow.cs \
+Gui/Workbench/Layouts/SdiWorkspaceLayout.cs \
+Gui/Workbench/WorkbenchMemento.cs \
+Gui/Workbench/DefaultWorkbench.cs \
+Commands/ClassBrowserCommands/ClassBrowserCommands.cs \
+Commands/FileCommands.cs \
+Commands/HelpCommands.cs \
+Commands/CustomStringTagProvider.cs \
+Commands/RunCommands.cs \
+Commands/ProjectBrowserCommands/FolderNodeCommands.cs \
+Commands/ProjectBrowserCommands/ReferenceFolderNodeCommands.cs \
+Commands/ProjectBrowserCommands/GeneralNodeCommands.cs \
+Commands/ProjectBrowserCommands/CombineNodeCommands.cs \
+Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs \
+Commands/ProjectBrowserCommands/ProjectNodeCommands.cs \
+Commands/ProjectCommands.cs \
+Commands/VBConverter/ConvertProject.cs \
+Commands/VBConverter/ConvertBuffer.cs \
+Commands/SideBarCommands.cs \
+Commands/ProjectOptionsCommands.cs \
+Commands/EditCommands.cs \
+Commands/WindowCommands.cs \
+Commands/AutostartCommands.cs \
+Commands/ToolsCommands.cs \
+Commands/MenuItemBuilders.cs \
+Services/File/IFileService.cs \
+Services/File/DefaultFileService.cs \
+Services/File/FileEventArgs.cs \
+Services/File/RecentFiles.cs \
+Services/File/RecentOpen.cs \
+Services/MenuService/MenuService.cs \
+Services/DisplayBinding/DisplayBindingService.cs \
+Services/LanguageBinding/LanguageBindingService.cs \
+Services/Tasks/TaskService.cs \
+Services/Tasks/Task.cs \
+Services/AmbienceService/AmbienceService.cs \
+Services/AmbienceService/AmbienceReflectionDecorator.cs \
+Services/AmbienceService/AbstractAmbience.cs \
+Services/AmbienceService/CodeDOMGeneratorUtility.cs \
+Services/AmbienceService/NetAmbience.cs \
+Services/AmbienceService/IAmbience.cs \
+Services/Project/ProjectEventArgs.cs \
+Services/Project/IProjectService.cs \
+Services/Project/ProjectRenameEventArgs.cs \
+Services/Project/DefaultProjectService.cs \
+Services/Project/ParseInformationEventHandler.cs \
+Services/Project/CombineEventArgs.cs \
+Services/IconService.cs \
+Services/StatusBar/DefaultStatusBarService.cs \
+Services/StatusBar/IStatusBarService.cs \
+Services/Language/LanguageService.cs \
+Services/Language/Language.cs \
+Services/ClassBrowserIcons/ClassBrowserIconsService.cs \
+Services/ResourceNotFoundException.cs \
+Services/ParserService/DefaultParserService.cs \
+Services/ParserService/CodeCompletionDatabase.cs \
+Services/ParserService/ClassProxyCollection.cs \
+Services/ParserService/IParserService.cs \
+Services/ParserService/ClassProxy.cs \
+Services/ParserService/AssemblyInformation.cs \
+Services/ParserService/ParseInformation.cs \
+Services/ParserService/ClassInformationEventHandler.cs \
+Services/ResourceService.cs \
+Services/StockIcons.cs \
+Services/MessageService.cs \
+Services/Toolbar/ToolbarService.cs \
+Services/MonodocService.cs \
+Services/IDebuggerService.cs \
+Services/SystemAssemblyService.cs \
+Services/DispatchService/DispatchService.cs \
+Internal/Undo/IUndoableOperation.cs \
+Internal/Undo/UndoStack.cs \
+Internal/Undo/UndoQueue.cs \
+Internal/Conditions/OwnerStateCondition.cs \
+Internal/Conditions/ProjectActiveCondition.cs \
+Internal/Conditions/WindowActiveCondition.cs \
+Internal/Conditions/WindowOpenCondition.cs \
+Internal/Conditions/CombineOpenCondition.cs \
+Internal/Conditions/ProjectOpenCondition.cs \
+Internal/Conditions/WorkbenchContextCondition.cs \
+Internal/Codons/DisplayBinding/IDisplayBinding.cs \
+Internal/Codons/DisplayBinding/ISubDisplayBinding.cs \
+Internal/Codons/DisplayBinding/DisplayBindingCodon.cs \
+Internal/Codons/LanguageBinding/ICompilerResult.cs \
+Internal/Codons/LanguageBinding/FileFilterCodon.cs \
+Internal/Codons/LanguageBinding/ILanguageBinding.cs \
+Internal/Codons/LanguageBinding/LanguageBindingCodon.cs \
+Internal/Codons/LanguageBinding/DefaultCompilerResult.cs \
+Internal/Codons/DefaultDialogPanelDescriptor.cs \
+Internal/Codons/Toolbars/ToolbarItemCodon.cs \
+Internal/Codons/IDialogPanel.cs \
+Internal/Codons/DialogPanelCodon.cs \
+Internal/Codons/IDialogPanelDescriptor.cs \
+Internal/Codons/MenuItems/AbstractCheckableMenuCommand.cs \
+Internal/Codons/MenuItems/ISubmenuBuilder.cs \
+Internal/Codons/MenuItems/IMenuCommand.cs \
+Internal/Codons/MenuItems/AbstractMenuCommand.cs \
+Internal/Codons/MenuItems/ICheckableMenuCommand.cs \
+Internal/Codons/MenuItems/MenuItemCodon.cs \
+Internal/Codons/Templates/FileTemplateCodon.cs \
+Internal/Codons/Templates/ProjectTemplateCodon.cs \
+Internal/DataStructures/PriorityQueue.cs \
+Internal/Parser/IRegion.cs \
+Internal/Parser/ICompilationUnitBase.cs \
+Internal/Parser/IEvent.cs \
+Internal/Parser/Collections/PropertyCollection.cs \
+Internal/Parser/Collections/TypedCSharpCollection.cs \
+Internal/Parser/Collections/IUsingCollection.cs \
+Internal/Parser/Collections/TagCollection.cs \
+Internal/Parser/Collections/ClassCollection.cs \
+Internal/Parser/Collections/EventCollection.cs \
+Internal/Parser/Collections/AttributeCollection.cs \
+Internal/Parser/Collections/MethodCollection.cs \
+Internal/Parser/Collections/CommentCollection.cs \
+Internal/Parser/Collections/ParameterCollection.cs \
+Internal/Parser/Collections/FieldCollection.cs \
+Internal/Parser/Collections/AttributeSectionCollection.cs \
+Internal/Parser/ParameterModifier.cs \
+Internal/Parser/ClassType.cs \
+Internal/Parser/IParser.cs \
+Internal/Parser/Implementations/AbstractField.cs \
+Internal/Parser/Implementations/AbstractDecoration.cs \
+Internal/Parser/Implementations/AbstractCompilationUnit.cs \
+Internal/Parser/Implementations/AbstractParameter.cs \
+Internal/Parser/Implementations/AbstractProperty.cs \
+Internal/Parser/Implementations/AbstractIndexer.cs \
+Internal/Parser/Implementations/AbstractAttribute.cs \
+Internal/Parser/Implementations/AbstractEvent.cs \
+Internal/Parser/Implementations/DefaultRegion.cs \
+Internal/Parser/Implementations/AbstractComment.cs \
+Internal/Parser/Implementations/AbstractNamedEntity.cs \
+Internal/Parser/Implementations/AbstractMember.cs \
+Internal/Parser/Implementations/AbstractUsing.cs \
+Internal/Parser/Implementations/AbstractClass.cs \
+Internal/Parser/Implementations/AbstractMethod.cs \
+Internal/Parser/Implementations/AbstractReturnType.cs \
+Internal/Parser/Tag.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyMethod.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyAttribute.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyReturnType.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyClass.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyField.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyIndexer.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyEvent.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyParameter.cs \
+Internal/Parser/SharpAssemblyLayer/SharpAssemblyProperty.cs \
+Internal/Parser/IReturnType.cs \
+Internal/Parser/IUsing.cs \
+Internal/Parser/IClass.cs \
+Internal/Parser/IParameter.cs \
+Internal/Parser/IIndexer.cs \
+Internal/Parser/IAttribute.cs \
+Internal/Parser/ReflectionLayer/ReflectionReturnType.cs \
+Internal/Parser/ReflectionLayer/ReflectionProperty.cs \
+Internal/Parser/ReflectionLayer/ReflectionClass.cs \
+Internal/Parser/ReflectionLayer/ReflectionIndexer.cs \
+Internal/Parser/ReflectionLayer/ReflectionMethod.cs \
+Internal/Parser/ReflectionLayer/ReflectionField.cs \
+Internal/Parser/ReflectionLayer/ReflectionParameter.cs \
+Internal/Parser/ReflectionLayer/ReflectionEvent.cs \
+Internal/Parser/IDecoration.cs \
+Internal/Parser/Comment.cs \
+Internal/Parser/ModifierEnum.cs \
+Internal/Parser/IMember.cs \
+Internal/Parser/IExpressionFinder.cs \
+Internal/Parser/IField.cs \
+Internal/Parser/IProperty.cs \
+Internal/Parser/PersistenceLayer/PersistentIndexer.cs \
+Internal/Parser/PersistenceLayer/PersistentField.cs \
+Internal/Parser/PersistenceLayer/PersistentMethod.cs \
+Internal/Parser/PersistenceLayer/PersistentReturnType.cs \
+Internal/Parser/PersistenceLayer/PersistentEvent.cs \
+Internal/Parser/PersistenceLayer/PersistentProperty.cs \
+Internal/Parser/PersistenceLayer/PersistentParameter.cs \
+Internal/Parser/PersistenceLayer/PersistentClass.cs \
+Internal/Parser/IMethod.cs \
+Internal/Parser/IComment.cs \
+Internal/Parser/ICompilationUnit.cs \
+Internal/Project/Attributes/XmlNodeNameAttribute.cs \
+Internal/Project/Attributes/ConvertToRelativePathAttribute.cs \
+Internal/Project/Attributes/XmlSetAttribute.cs \
+Internal/Project/Attributes/XmlAttributeAttribute.cs \
+Internal/Project/Project/Deployment/DeployInformation.cs \
+Internal/Project/Project/Deployment/AssemblyDeploy.cs \
+Internal/Project/Project/Deployment/ScriptDeploy.cs \
+Internal/Project/Project/Deployment/IDeploymentStrategy.cs \
+Internal/Project/Project/Deployment/FileDeploy.cs \
+Internal/Project/Project/Collections/ProjectFileCollection.cs \
+Internal/Project/Project/Collections/ProjectReferenceCollection.cs \
+Internal/Project/Project/UnknownProjectVersionException.cs \
+Internal/Project/Project/TypelibImporter.cs \
+Internal/Project/Project/AbstractProjectConfiguration.cs \
+Internal/Project/Project/AbstractProject.cs \
+Internal/Project/Project/ProjectReference.cs \
+Internal/Project/Project/ProjectReferenceEventArgs.cs \
+Internal/Project/Project/ConvertXml.cs \
+Internal/Project/Project/IncludeFilesDialog.cs \
+Internal/Project/Project/IConfiguration.cs \
+Internal/Project/Project/ProjectFile.cs \
+Internal/Project/Project/ProjectFileEventArgs.cs \
+Internal/Project/Project/AbstractConfiguration.cs \
+Internal/Project/Project/IProject.cs \
+Internal/Project/Combine/Combine.cs \
+Internal/Project/Combine/CombineExecuteDefinition.cs \
+Internal/Project/Combine/CyclicBuildOrderException.cs \
+Internal/Project/Combine/CombineConfiguration.cs \
+Internal/Project/Combine/NoStartupCombineDefinedException.cs \
+Internal/Project/Combine/CombineEntry.cs \
+Internal/Project/Combine/CombineEntryEventArgs.cs \
+Internal/Templates/FileDescriptionTemplate.cs \
+Internal/Templates/CodeTemplate.cs \
+Internal/Templates/CodeTemplateGroup.cs \
+Internal/Templates/FileTemplate.cs \
+Internal/Templates/TextTemplate.cs \
+Internal/Templates/CodeTemplateLoader.cs \
+Internal/Templates/INewFileCreator.cs \
+Internal/Templates/ProjectTemplates/ProjectTemplate.cs \
+Internal/Templates/ProjectTemplates/ProjectDescriptor.cs \
+Internal/Templates/ProjectTemplates/CombineDescriptor.cs \
+Internal/Templates/ProjectTemplates/ProjectCreateInformation.cs \
+Internal/CollectionUtilities/DiffUtility.cs \
+Internal/CollectionUtilities/SortUtilityBase.cs \
+Internal/CollectionUtilities/SortUtility.cs \
+Internal/CollectionUtilities/Comparers.cs \
+Internal/ExternalTool/ToolLoader.cs \
+Internal/ExternalTool/ExternalTool.cs \
+AssemblyInfo.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 

Modified: trunk/MonoDevelop/Core/src/Main/StartUp/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/Main/StartUp/Makefile.am	2004-10-27 21:43:38 UTC (rev 2004)
+++ trunk/MonoDevelop/Core/src/Main/StartUp/Makefile.am	2004-10-28 16:31:06 UTC (rev 2005)
@@ -1,11 +1,11 @@
 BASEDIR=$(srcdir)/../../..
 
 FILES= \
-./MonoDevelopMain.cs \
-./MonoDevelopOptions.cs \
-./Dialogs/AddInTreeSettingsHandler.cs \
-./Dialogs/ExceptionBox.cs \
-./AssemblyInfo.cs
+MonoDevelopMain.cs \
+MonoDevelopOptions.cs \
+Dialogs/AddInTreeSettingsHandler.cs \
+Dialogs/ExceptionBox.cs \
+AssemblyInfo.cs
 
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 




More information about the Monodevelop-patches-list mailing list