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

MonoDevelop.HexEditor.addin.xml « MonoDevelop.HexEditor « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f0005db53818a824609f113ef5d18836310b8af (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
<Addin id          = "HexEditor"
       namespace   = "MonoDevelop"
       name        = "MonoDevelop Hex Editor"
       author      = "Mike Krüger"
       copyright   = ""
       url         = ""
       description = "Provides a hex editor for MonoDevelop"
       category    = "IDE extensions"
       version     = "2.9.0">
	
	<Runtime>
		<Import assembly="MonoDevelop.HexEditor.dll"/>
	</Runtime>
	
	<Dependencies>
		<Addin id="Core" version="2.9.0"/>
		<Addin id="Ide" version="2.9.0"/>
		<Addin id="AssemblyBrowser" version="2.9.0"/>
	</Dependencies>
	<!--
	<Extension path = "/MonoDevelop/Ide/Commands">
		<Command id = "MonoDevelop.HexEditor.Commands.ShowHexEditor" _label = "Open with _hex editor" />
	</Extension> -->
	
	<Extension path = "/MonoDevelop/Ide/DisplayBindings">
		<DisplayBinding 
			id = "HexEditor"
			insertafter ="AssemblyBrowser"
			class = "MonoDevelop.HexEditor.HexEditorDisplayBinding" />
	</Extension>
	<!--
	<Extension path = "/MonoDevelop/Ide/Pads/ProjectPad">
		<NodeBuilder id = "HexEditorNodeExtension" class = "MonoDevelop.HexEditor.HexEditorNodeExtension"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad/Tools">
		<Condition id="ItemType" value="ProjectFile">
			<CommandItem id = "MonoDevelop.HexEditor.Commands.ShowHexEditor" insertafter="FindInFilesSeparator" insertbefore="CombineOptionsSeparator"/>
		</Condition>
	</Extension>
	-->
</Addin>