Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.Profiling.HeapBuddy.addin.xml « MonoDevelop.Profiling.HeapBuddy « MonoDevelop.Profiling « extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a7b4c975f677fcdeb7e4e62049467cc979f15bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Addin  id          = "Profiling.HeapBuddy"
        namespace   = "MonoDevelop"
	name        = "HeapBuddy Profiler Add-in"
	author      = "Ben Motmans"
	copyright   = "MIT X11"
	url         = "http://www.monodevelop.com"
	description = "HeapBuddy Profiler Add-in"
	category    = "Profiling"
	version     = "2.8.2">

	<Runtime>
		<Import assembly="MonoDevelop.Profiling.HeapBuddy.dll"/>
	</Runtime>

	<Dependencies>
		<Addin id="Core" version="2.8.2"/>
		<Addin id="Ide" version="2.8.2"/>
		<Addin id="Profiling" version="2.8.2"/>
	</Dependencies>
	
	<ExtensionPoint path = "/MonoDevelop/Profiling/ContextMenu/ProfilingPad/HeapBuddyProfilingSnapshotNode" name = "HeapBuddy snapshot node context menu">
		<Description>HeapBuddy snapshot node context menu.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Profiling/ContextMenu/ProfilingPad/HeapBuddyTypesNode" name = "HeapBuddy Types node context menu">
		<Description>HeapBuddy Types node context menu.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Profiling/ContextMenu/ProfilingPad/HeapBuddyBacktracesNode" name = "HeapBuddy Backtraces node context menu">
		<Description>HeapBuddy Backtraces node context menu.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Profiling/ContextMenu/ProfilingPad/HeapBuddyHistoryNode" name = "HeapBuddy History node context menu">
		<Description>HeapBuddy History node context menu.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<Extension path = "/MonoDevelop/Profiling/Profilers">
		<Profiler class="MonoDevelop.Profiling.HeapBuddy.HeapBuddyProfiler" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Pads/MonoDevelop.Profiling.ProfilingPad">
		<NodeBuilder id = "HeapBuddyProfilingSnapshotNodeBuilder" class = "MonoDevelop.Profiling.HeapBuddy.HeapBuddyProfilingSnapshotNodeBuilder"/>
		<NodeBuilder id = "HistoryNodeBuilder" class = "MonoDevelop.Profiling.HeapBuddy.HistoryNodeBuilder"/>
		<NodeBuilder id = "BacktracesNodeBuilder" class = "MonoDevelop.Profiling.HeapBuddy.BacktracesNodeBuilder"/>
		<NodeBuilder id = "TypesNodeBuilder" class = "MonoDevelop.Profiling.HeapBuddy.TypesNodeBuilder"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Profiling/ContextMenu/ProfilingPad/HeapBuddyProfilingSnapshotNode">
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Rename"/>
		<SeparatorItem id = "DeleteSeparator" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Delete" />
	</Extension>
</Addin>