[Monodevelop-patches-list] r2468 - in trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn: . Visualizers
Chris Toshok
toshok at mono-cvs.ximian.com
Wed Apr 20 01:23:44 EDT 2005
Author: toshok
Date: 2005-04-20 01:23:44 -0400 (Wed, 20 Apr 2005)
New Revision: 2468
Added:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/visualizer.snk
Modified:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/Makefile.am
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/TargetObjectProvider.cs
Log:
2005-04-19 Chris Toshok <toshok at ximian.com>
* Visualizers/TargetObjectProvider.cs: remove unnecessary using
lines.
(TargetObjectProvider.IsObjectReplaceable): always return false,
as the Transfer/Replace methods are not implemented.
* Visualizers/visualizer.snk: new file, our assembly strong name.
* Visualizers/Makefile.am (DEFINES): put the -define's here.
($(ASSEMBLY)): use $DEFINES and put our keyfile in.
(DLLS): prune these to just gtk-sharp and mono-debugger libs.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-04-20 03:25:51 UTC (rev 2467)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-04-20 05:23:44 UTC (rev 2468)
@@ -1,3 +1,16 @@
+2005-04-19 Chris Toshok <toshok at ximian.com>
+
+ * Visualizers/TargetObjectProvider.cs: remove unnecessary using
+ lines.
+ (TargetObjectProvider.IsObjectReplaceable): always return false,
+ as the Transfer/Replace methods are not implemented.
+
+ * Visualizers/visualizer.snk: new file, our assembly strong name.
+
+ * Visualizers/Makefile.am (DEFINES): put the -define's here.
+ ($(ASSEMBLY)): use $DEFINES and put our keyfile in.
+ (DLLS): prune these to just gtk-sharp and mono-debugger libs.
+
2005-04-14 Chris Toshok <toshok at ximian.com>
* Visualizers/TargetObjectProvider.cs
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/Makefile.am 2005-04-20 03:25:51 UTC (rev 2467)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/Makefile.am 2005-04-20 05:23:44 UTC (rev 2468)
@@ -4,10 +4,7 @@
ASSEMBLY = $(ADDIN_BUILD)/$(ASSEMBLY_NAME).dll
DLLS = $(GTK_SHARP_LIBS) \
- $(MONO_DEBUGGER_LIBS) \
- /r:$(top_builddir)/build/bin/MonoDevelop.Base.dll \
- /r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
- /r:$(top_builddir)/build/bin/ICSharpCode.SharpRefactory.dll
+ $(MONO_DEBUGGER_LIBS)
FILES = \
@@ -21,6 +18,8 @@
EXTRA_DIST = $(FILES)
+DEFINES= -define:NET_2_0 -define:WITH_GTK
+
if ENABLE_DEBUGGER
noinst_DATA= $(ASSEMBLY)
@@ -29,7 +28,7 @@
$(ASSEMBLY): $(build_sources)
mkdir -p $(ADDIN_BUILD)
- $(CSC) -g -define:NET_2_0 -define:WITH_GTK -out:$@ -target:library \
+ $(CSC) -g $(DEFINES) -keyfile:$(srcdir)/visualizer.snk -out:$@ -target:library \
$(build_sources) $(DLLS)
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/TargetObjectProvider.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/TargetObjectProvider.cs 2005-04-20 03:25:51 UTC (rev 2467)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/TargetObjectProvider.cs 2005-04-20 05:23:44 UTC (rev 2468)
@@ -2,8 +2,6 @@
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
-using MonoDevelop.Services;
-
using Mono.Debugger;
using Mono.Debugger.Languages;
@@ -57,7 +55,7 @@
public bool IsObjectReplaceable
{
get {
- return true;
+ return false;
}
}
Added: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/visualizer.snk
===================================================================
(Binary files differ)
Property changes on: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Visualizers/visualizer.snk
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
More information about the Monodevelop-patches-list
mailing list