[Monodevelop-patches-list] r1820 - in trunk/MonoDevelop: . src src/AddIns/BackendBindings/CSharpBinding src/AddIns/BackendBindings/ILAsmBinding src/AddIns/BackendBindings/JavaBinding src/AddIns/BackendBindings/NemerleBinding src/AddIns/DisplayBindings/SourceEditor src/AddIns/DisplayBindings/SourceEditor/Gui/Pads src/AddIns/Misc/StartPage src/AddIns/prj2make-sharp-lib src/Libraries/Gdl src/Libraries/MonoDevelop.Core src/Libraries/MonoDevelop.Gui.Utils src/Libraries/SharpAssembly src/Libraries/SharpRefactory src/Main/Base src/Main/Base/Gui/Workbench/Layouts src/Main/StartUp

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu Jun 24 18:44:48 EDT 2004


Author: jluke
Date: 2004-06-24 18:44:48 -0400 (Thu, 24 Jun 2004)
New Revision: 1820

Modified:
   trunk/MonoDevelop/ChangeLog
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Makefile.CSharpBinding
   trunk/MonoDevelop/src/AddIns/BackendBindings/ILAsmBinding/Makefile.ILAsmBinding
   trunk/MonoDevelop/src/AddIns/BackendBindings/JavaBinding/Makefile.JavaBinding
   trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/Makefile.NemerleBinding
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Pads/CompilerMessageView.cs
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Makefile.SourceEditor
   trunk/MonoDevelop/src/AddIns/Misc/StartPage/Makefile.StartPage
   trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/Prj2MakeSharp.prjx
   trunk/MonoDevelop/src/Libraries/Gdl/Makefile.Gdl
   trunk/MonoDevelop/src/Libraries/MonoDevelop.Core/Makefile.MonoDevelop.Core
   trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.MonoDevelop.Gui.Utils
   trunk/MonoDevelop/src/Libraries/SharpAssembly/Makefile.SharpAssembly
   trunk/MonoDevelop/src/Libraries/SharpRefactory/Makefile.SharpRefactory
   trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs
   trunk/MonoDevelop/src/Main/Base/Makefile.MonoDevelop.Base
   trunk/MonoDevelop/src/Main/Base/MonoDevelop.Base.prjx
   trunk/MonoDevelop/src/Main/StartUp/Makefile.MonoDevelop
   trunk/MonoDevelop/src/Makefile.solution.MonoDevelop
Log:
fix the project files


Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/ChangeLog	2004-06-24 22:44:48 UTC (rev 1820)
@@ -1,3 +1,8 @@
+2004-06-24  John Luke  <jluke at cfl.rr.com>
+
+	fix all the projects and generated makefiles
+	(add/remove needed files, add refs)
+
 2004-06-23  Todd Berman  <tberman at off.net>
 
 	* *.cs: Lots of changes to reflect the ServiceManager change.

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Makefile.CSharpBinding
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Makefile.CSharpBinding	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Makefile.CSharpBinding	2004-06-24 22:44:48 UTC (rev 1820)
@@ -58,7 +58,7 @@
 
 CSharpBinding.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"CSharpBinding.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "CSharpBinding.dll" ../../../build/bin
+	&& cp "CSharpBinding.dll" ../../../build/bin/.
 
 clean:
 	rm -f CSharpBinding.dll

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/ILAsmBinding/Makefile.ILAsmBinding
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/ILAsmBinding/Makefile.ILAsmBinding	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/ILAsmBinding/Makefile.ILAsmBinding	2004-06-24 22:44:48 UTC (rev 1820)
@@ -32,7 +32,7 @@
 
 ILAsmBinding.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"ILAsmBinding.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "ILAsmBinding.dll" ../../../build/bin
+	&& cp "ILAsmBinding.dll" ../../../build/bin/.
 
 clean:
 	rm -f ILAsmBinding.dll

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/JavaBinding/Makefile.JavaBinding
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/JavaBinding/Makefile.JavaBinding	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/JavaBinding/Makefile.JavaBinding	2004-06-24 22:44:48 UTC (rev 1820)
@@ -57,7 +57,7 @@
 
 JavaBinding.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"JavaBinding.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "JavaBinding.dll" ../../../build/bin
+	&& cp "JavaBinding.dll" ../../../build/bin/.
 
 clean:
 	rm -f JavaBinding.dll

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/Makefile.NemerleBinding
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/Makefile.NemerleBinding	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/Makefile.NemerleBinding	2004-06-24 22:44:48 UTC (rev 1820)
@@ -39,7 +39,7 @@
 
 NemerleBinding.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"NemerleBinding.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "NemerleBinding.dll" ../../../build/bin
+	&& cp "NemerleBinding.dll" ../../../build/bin/.
 
 clean:
 	rm -f NemerleBinding.dll

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Pads/CompilerMessageView.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Pads/CompilerMessageView.cs	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Pads/CompilerMessageView.cs	2004-06-24 22:44:48 UTC (rev 1820)
@@ -153,12 +153,14 @@
 				TitleChanged(this, e);
 			}
 		}
+
 		protected virtual void OnIconChanged(EventArgs e)
 		{
 			if (IconChanged != null) {
 				IconChanged(this, e);
 			}
 		}
+
 		public event EventHandler TitleChanged;
 		public event EventHandler IconChanged;
 

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Makefile.SourceEditor
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Makefile.SourceEditor	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Makefile.SourceEditor	2004-06-24 22:44:48 UTC (rev 1820)
@@ -104,7 +104,7 @@
 
 MonoDevelop.SourceEditor.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"MonoDevelop.SourceEditor.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.SourceEditor.dll" ../../../build/bin
+	&& cp "MonoDevelop.SourceEditor.dll" ../../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.SourceEditor.dll

Modified: trunk/MonoDevelop/src/AddIns/Misc/StartPage/Makefile.StartPage
===================================================================
--- trunk/MonoDevelop/src/AddIns/Misc/StartPage/Makefile.StartPage	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/Misc/StartPage/Makefile.StartPage	2004-06-24 22:44:48 UTC (rev 1820)
@@ -34,7 +34,7 @@
 
 MonoDevelop.StartPage.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"MonoDevelop.StartPage.dll" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.StartPage.dll" ../../../build/bin
+	&& cp "MonoDevelop.StartPage.dll" ../../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.StartPage.dll

Modified: trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/Prj2MakeSharp.prjx
===================================================================
--- trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/Prj2MakeSharp.prjx	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/Prj2MakeSharp.prjx	2004-06-24 22:44:48 UTC (rev 1820)
@@ -17,12 +17,12 @@
   <References>
     <Reference type="Gac" refto="System.Xml, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" localcopy="True" />
     <Reference type="Gac" refto="System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" localcopy="True" />
-    <Reference type="Assembly" refto="../../../../../usr/lib/monodevelop/bin/MonoDevelop.Base.dll" localcopy="True" />
-    <Reference type="Assembly" refto="../../../../../usr/lib/monodevelop/bin/MonoDevelop.Core.dll" localcopy="True" />
     <Reference type="Gac" refto="gtk-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" localcopy="True" />
     <Reference type="Gac" refto="glib-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" localcopy="True" />
     <Reference type="Gac" refto="gdk-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" localcopy="True" />
     <Reference type="Gac" refto="pango-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" localcopy="True" />
+    <Reference type="Project" refto="MonoDevelop.Core" localcopy="True" />
+    <Reference type="Project" refto="MonoDevelop.Base" localcopy="True" />
   </References>
   <DeploymentInformation target="" script="" strategy="File" />
   <Configuration runwithwarnings="False" name="Debug">

Modified: trunk/MonoDevelop/src/Libraries/Gdl/Makefile.Gdl
===================================================================
--- trunk/MonoDevelop/src/Libraries/Gdl/Makefile.Gdl	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Libraries/Gdl/Makefile.Gdl	2004-06-24 22:44:48 UTC (rev 1820)
@@ -33,7 +33,7 @@
 
 Gdl.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"Gdl.dll" $(PKG_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "Gdl.dll" ./build/bin/.
+	&& cp "Gdl.dll" ../../build/bin/.
 
 clean:
 	rm -f Gdl.dll

Modified: trunk/MonoDevelop/src/Libraries/MonoDevelop.Core/Makefile.MonoDevelop.Core
===================================================================
--- trunk/MonoDevelop/src/Libraries/MonoDevelop.Core/Makefile.MonoDevelop.Core	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Libraries/MonoDevelop.Core/Makefile.MonoDevelop.Core	2004-06-24 22:44:48 UTC (rev 1820)
@@ -75,7 +75,7 @@
 
 MonoDevelop.Core.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"MonoDevelop.Core.dll" $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.Core.dll" ../../build/bin
+	&& cp "MonoDevelop.Core.dll" ../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.Core.dll

Modified: trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.MonoDevelop.Gui.Utils
===================================================================
--- trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.MonoDevelop.Gui.Utils	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.MonoDevelop.Gui.Utils	2004-06-24 22:44:48 UTC (rev 1820)
@@ -35,7 +35,7 @@
 
 MonoDevelop.Gui.Utils.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"MonoDevelop.Gui.Utils.dll" $(PKG_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.Gui.Utils.dll" ../../build/bin
+	&& cp "MonoDevelop.Gui.Utils.dll" ../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.Gui.Utils.dll

Modified: trunk/MonoDevelop/src/Libraries/SharpAssembly/Makefile.SharpAssembly
===================================================================
--- trunk/MonoDevelop/src/Libraries/SharpAssembly/Makefile.SharpAssembly	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Libraries/SharpAssembly/Makefile.SharpAssembly	2004-06-24 22:44:48 UTC (rev 1820)
@@ -75,7 +75,7 @@
 
 ICSharpCode.SharpAssembly.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"ICSharpCode.SharpAssembly.dll" $(SOURCES) \
-	&& cp "ICSharpCode.SharpAssembly.dll" ../../build/bin
+	&& cp "ICSharpCode.SharpAssembly.dll" ../../build/bin/.
 
 clean:
 	rm -f ICSharpCode.SharpAssembly.dll

Modified: trunk/MonoDevelop/src/Libraries/SharpRefactory/Makefile.SharpRefactory
===================================================================
--- trunk/MonoDevelop/src/Libraries/SharpRefactory/Makefile.SharpRefactory	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Libraries/SharpRefactory/Makefile.SharpRefactory	2004-06-24 22:44:48 UTC (rev 1820)
@@ -123,7 +123,7 @@
 
 ICSharpCode.SharpRefactory.dll: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"ICSharpCode.SharpRefactory.dll" $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "ICSharpCode.SharpRefactory.dll" ../../build/bin
+	&& cp "ICSharpCode.SharpRefactory.dll" ../../build/bin/.
 
 clean:
 	rm -f ICSharpCode.SharpRefactory.dll

Modified: trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs	2004-06-24 22:44:48 UTC (rev 1820)
@@ -16,7 +16,6 @@
 
 using Gtk;
 using Gdl;
-using GdlSharp;
 using MonoDevelop.Gui.Widgets;
 using MonoDevelop.Gui.Utils;
 

Modified: trunk/MonoDevelop/src/Main/Base/Makefile.MonoDevelop.Base
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Makefile.MonoDevelop.Base	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Main/Base/Makefile.MonoDevelop.Base	2004-06-24 22:44:48 UTC (rev 1820)
@@ -47,14 +47,6 @@
 ./Gui/BrowserDisplayBinding/HTMLInterfaces.cs \
 ./Gui/BrowserDisplayBinding/HtmlViewPane.cs \
 ./Gui/BrowserDisplayBinding/SHDocVw.cs \
-./Gui/CompletionDatabaseWizard/CreateDBGenerator.cs \
-./Gui/CompletionDatabaseWizard/CreatingGenerator.cs \
-./Gui/CompletionDatabaseWizard/DownloadGenerator.cs \
-./Gui/CompletionDatabaseWizard/Exceptions.cs \
-./Gui/CompletionDatabaseWizard/GenerateDatabase.cs \
-./Gui/CompletionDatabaseWizard/IDatabaseGenerator.cs \
-./Gui/CompletionDatabaseWizard/UseExistingGenerator.cs \
-./Gui/CompletionDatabaseWizard/druid.cs \
 ./Gui/Components/SdMenu.cs \
 ./Gui/Components/SdMenuCheckBox.cs \
 ./Gui/Components/SdMenuCommand.cs \
@@ -137,7 +129,6 @@
 ./Gui/HtmlControl/MozillaControl.cs \
 ./Gui/Pads/OpenTaskView.cs \
 ./Gui/Pads/SideBarView.cs \
-./Gui/Pads/TerminalPad.cs \
 ./Gui/Pads/TreeViewMemento.cs \
 ./Gui/Pads/ClassScout/ClassScout.cs \
 ./Gui/Pads/ClassScout/BrowserNode/AbstractClassScoutNode.cs \
@@ -371,7 +362,8 @@
 ./Services/Tasks/Task.cs \
 ./Services/Tasks/TaskService.cs \
 ./Services/Toolbar/ToolbarService.cs \
-./Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs
+./Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs \
+./Services/DispatchService/DispatchService.cs
 
 RESOURCES = \
 ../../../data/resources/glade/Base.glade
@@ -403,7 +395,11 @@
 
 PROJECT_REFERENCES = \
 "../../Libraries/MonoDevelop.Core/MonoDevelop.Core.dll" \
-"../../Libraries/MonoDevelop.Gui.Widgets/MonoDevelop.Gui.Widgets.dll"
+"../../Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll" \
+"../../Libraries/MonoDevelop.Gui.Widgets/MonoDevelop.Gui.Widgets.dll" \
+"../../Libraries/Gdl/Gdl.dll" \
+"../../Libraries/SharpAssembly/ICSharpCode.SharpAssembly.dll" \
+"../../Libraries/SharpRefactory/ICSharpCode.SharpRefactory.dll"
 
 PROJECT_REFERENCES_BUILD = $(addprefix -r:, $(PROJECT_REFERENCES))
 
@@ -413,7 +409,7 @@
 
 MonoDevelop.Base.dll: $(SOURCES) $(RESOURCES)
 	mcs $(MCS_OPTIONS) -target:library -out:"MonoDevelop.Base.dll" $(RESOURCES_BUILD) $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.Base.dll" ../../build/bin
+	&& cp "MonoDevelop.Base.dll" ../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.Base.dll

Modified: trunk/MonoDevelop/src/Main/Base/MonoDevelop.Base.prjx
===================================================================
--- trunk/MonoDevelop/src/Main/Base/MonoDevelop.Base.prjx	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Main/Base/MonoDevelop.Base.prjx	2004-06-24 22:44:48 UTC (rev 1820)
@@ -48,14 +48,6 @@
     <File name="./Gui/BrowserDisplayBinding/HTMLInterfaces.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/BrowserDisplayBinding/HtmlViewPane.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/BrowserDisplayBinding/SHDocVw.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/CreateDBGenerator.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/CreatingGenerator.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/DownloadGenerator.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/Exceptions.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/GenerateDatabase.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/IDatabaseGenerator.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/UseExistingGenerator.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/CompletionDatabaseWizard/druid.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Components/SdMenu.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Components/SdMenuCheckBox.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Components/SdMenuCommand.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
@@ -141,7 +133,6 @@
     <File name="./Gui/HtmlControl/TODO" subtype="Code" buildaction="Exclude" dependson="" data="" />
     <File name="./Gui/Pads/OpenTaskView.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Pads/SideBarView.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
-    <File name="./Gui/Pads/TerminalPad.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Pads/TreeViewMemento.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Pads/ClassScout/ClassScout.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="./Gui/Pads/ClassScout/BrowserNode/AbstractClassScoutNode.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
@@ -381,6 +372,7 @@
     <File name="./Services/Toolbar/ToolbarService.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
     <File name="../../../data/resources/glade/Base.glade" subtype="Code" buildaction="EmbedAsResource" dependson="" data="" />
     <File name="./Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
+    <File name="./Services/DispatchService/DispatchService.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
   </Contents>
   <References>
     <Reference type="Gac" refto="System.Web.Services, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" localcopy="True" />
@@ -398,7 +390,11 @@
     <Reference type="Gac" refto="pango-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" localcopy="True" />
     <Reference type="Gac" refto="ICSharpCode.SharpZipLib, Version=0.6.0.0, Culture=neutral, PublicKeyToken=1b03e6acf1164f73" localcopy="True" />
     <Reference type="Project" refto="MonoDevelop.Core" localcopy="True" />
+    <Reference type="Project" refto="MonoDevelop.Gui.Utils" localcopy="True" />
     <Reference type="Project" refto="MonoDevelop.Gui.Widgets" localcopy="True" />
+    <Reference type="Project" refto="Gdl" localcopy="True" />
+    <Reference type="Project" refto="SharpAssembly" localcopy="True" />
+    <Reference type="Project" refto="SharpRefactory" localcopy="True" />
   </References>
   <DeploymentInformation target="" script="" strategy="File" />
   <Configuration runwithwarnings="False" name="Debug">

Modified: trunk/MonoDevelop/src/Main/StartUp/Makefile.MonoDevelop
===================================================================
--- trunk/MonoDevelop/src/Main/StartUp/Makefile.MonoDevelop	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Main/StartUp/Makefile.MonoDevelop	2004-06-24 22:44:48 UTC (rev 1820)
@@ -34,7 +34,7 @@
 
 MonoDevelop.exe: $(SOURCES)
 	mcs $(MCS_OPTIONS) -target:exe -out:"MonoDevelop.exe" $(PKG_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SYSTEM_REFERENCES_BUILD) $(SOURCES) \
-	&& cp "MonoDevelop.exe" ../../build/bin
+	&& cp "MonoDevelop.exe" ../../build/bin/.
 
 clean:
 	rm -f MonoDevelop.exe

Modified: trunk/MonoDevelop/src/Makefile.solution.MonoDevelop
===================================================================
--- trunk/MonoDevelop/src/Makefile.solution.MonoDevelop	2004-06-24 17:00:06 UTC (rev 1819)
+++ trunk/MonoDevelop/src/Makefile.solution.MonoDevelop	2004-06-24 22:44:48 UTC (rev 1820)
@@ -3,14 +3,14 @@
 
 OUTPUTDIR := ./build/bin
 
-all: depcheck __init Makefile.SharpAssembly.all Makefile.SharpRefactory.all Makefile.MonoDevelop.Core.all Makefile.MonoDevelop.Gui.Utils.all Makefile.MonoDevelop.Gui.Widgets.all Makefile.MonoDevelop.Base.all Makefile.MonoDevelop.all Makefile.SourceEditor.all Makefile.CSharpBinding.all Makefile.JavaBinding.all Makefile.NemerleBinding.all Makefile.ILAsmBinding.all Makefile.StartPage.all Makefile.Prj2MakeSharp.all Makefile.Gdl.all 
+all: depcheck __init Makefile.SharpAssembly.all Makefile.SharpRefactory.all Makefile.MonoDevelop.Core.all Makefile.MonoDevelop.Gui.Utils.all Makefile.MonoDevelop.Gui.Widgets.all Makefile.Gdl.all Makefile.MonoDevelop.Base.all Makefile.MonoDevelop.all Makefile.SourceEditor.all Makefile.CSharpBinding.all Makefile.JavaBinding.all Makefile.NemerleBinding.all Makefile.ILAsmBinding.all Makefile.StartPage.all Makefile.Prj2MakeSharp.all 
 
 __init:
 	mkdir -p $(OUTPUTDIR)
 
-clean: Makefile.SharpAssembly.clean Makefile.SharpRefactory.clean Makefile.MonoDevelop.Core.clean Makefile.MonoDevelop.Gui.Utils.clean Makefile.MonoDevelop.Gui.Widgets.clean Makefile.MonoDevelop.Base.clean Makefile.MonoDevelop.clean Makefile.SourceEditor.clean Makefile.CSharpBinding.clean Makefile.JavaBinding.clean Makefile.NemerleBinding.clean Makefile.ILAsmBinding.clean Makefile.StartPage.clean Makefile.Prj2MakeSharp.clean Makefile.Gdl.clean 
+clean: Makefile.SharpAssembly.clean Makefile.SharpRefactory.clean Makefile.MonoDevelop.Core.clean Makefile.MonoDevelop.Gui.Utils.clean Makefile.MonoDevelop.Gui.Widgets.clean Makefile.Gdl.clean Makefile.MonoDevelop.Base.clean Makefile.MonoDevelop.clean Makefile.SourceEditor.clean Makefile.CSharpBinding.clean Makefile.JavaBinding.clean Makefile.NemerleBinding.clean Makefile.ILAsmBinding.clean Makefile.StartPage.clean Makefile.Prj2MakeSharp.clean 
 
-depcheck: Makefile.SharpAssembly.depcheck Makefile.SharpRefactory.depcheck Makefile.MonoDevelop.Core.depcheck Makefile.MonoDevelop.Gui.Utils.depcheck Makefile.MonoDevelop.Gui.Widgets.depcheck Makefile.MonoDevelop.Base.depcheck Makefile.MonoDevelop.depcheck Makefile.SourceEditor.depcheck Makefile.CSharpBinding.depcheck Makefile.JavaBinding.depcheck Makefile.NemerleBinding.depcheck Makefile.ILAsmBinding.depcheck Makefile.StartPage.depcheck Makefile.Prj2MakeSharp.depcheck Makefile.Gdl.depcheck 
+depcheck: Makefile.SharpAssembly.depcheck Makefile.SharpRefactory.depcheck Makefile.MonoDevelop.Core.depcheck Makefile.MonoDevelop.Gui.Utils.depcheck Makefile.MonoDevelop.Gui.Widgets.depcheck Makefile.Gdl.depcheck Makefile.MonoDevelop.Base.depcheck Makefile.MonoDevelop.depcheck Makefile.SourceEditor.depcheck Makefile.CSharpBinding.depcheck Makefile.JavaBinding.depcheck Makefile.NemerleBinding.depcheck Makefile.ILAsmBinding.depcheck Makefile.StartPage.depcheck Makefile.Prj2MakeSharp.depcheck 
 
 run: all
 	cd $(OUTPUTDIR) && mono MonoDevelop.exe
@@ -30,6 +30,9 @@
 Makefile.MonoDevelop.Gui.Widgets.%:
 	@cd ./Libraries/MonoDevelop.Gui.Widgets && $(MAKE) -f $(subst .$*,,$@) $*
 
+Makefile.Gdl.%:
+	@cd ./Libraries/Gdl && $(MAKE) -f $(subst .$*,,$@) $*
+
 Makefile.MonoDevelop.Base.%:
 	@cd ./Main/Base && $(MAKE) -f $(subst .$*,,$@) $*
 
@@ -57,6 +60,3 @@
 Makefile.Prj2MakeSharp.%:
 	@cd ./AddIns/prj2make-sharp-lib && $(MAKE) -f $(subst .$*,,$@) $*
 
-Makefile.Gdl.%:
-	@cd ./Libraries/Gdl && $(MAKE) -f $(subst .$*,,$@) $*
-




More information about the Monodevelop-patches-list mailing list