-
Notifications
You must be signed in to change notification settings - Fork 2
/
Manifest.addin.xml
28 lines (25 loc) · 1.2 KB
/
Manifest.addin.xml
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
<Addin id = "MonoDevelop.D.Debugging.Gdb"
name = "D Language Debugging Support under GNU/Linux (GDB)"
author = "Ludovit Lucenic, Alexander Bothe"
url = "https://github.com/llucenic/MonoDevelop.Debugger.Gdb.D"
description = "D Language debugging support based on GNU Debugger support for GNU/Linux platform."
copyright = "MIT X11"
category = "Debugging"
version = "2">
<Dependencies>
<Addin id="MonoDevelop.Core" version="5.0"/>
<Addin id="MonoDevelop.Ide" version="5.0"/>
<Addin id="MonoDevelop.Debugger" version="5.0"/>
<Addin id="MonoDevelop.D" version="2.0"/>
</Dependencies>
<Extension path="/MonoDevelop/Debugging/DebuggerEngines">
<DebuggerEngine id="Mono.Debugger.Gdb.D"
name="GNU Debugger (GDB) with support for D Language"
features="ConditionalBreakpoints, Tracepoints, Catchpoints, Attaching, DebugFile, Stepping, Pause, Breakpoints, Disassembly"
type="MonoDevelop.Debugger.Gdb.D.DGdbSessionFactory" />
</Extension>
<Extension path = "/MonoDevelop/Ide/GlobalOptionsDialog/Preferences">
<Section id = "GdbGlobOptions" _label = "Gdb.D"
class = "MonoDevelop.Debugger.Options.GdbDOptionBinding"/>
</Extension>
</Addin>