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

DocFood.addin.xml « MonoDevelop.DocFood « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00a783d2ffd81aae6f339115b3a3568b91cf80a6 (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
58
59
<Addin id          = "DocFood"
       namespace   = "MonoDevelop"
       name        = "DocFood"
       author      = "Mike Krüger"
       copyright   = "MIT X11"
       url         = "http://www.monodevelop.com/"
       description = "DocFood is an automated comment generator"
       category    = "IDE extensions"
       version     = "2.9.1">

	<Runtime>
		<Import assembly="MonoDevelop.DocFood.dll" />
	</Runtime>

	<Dependencies>
		<Addin id="Core" version="2.9.1"/>
		<Addin id="Ide" version="2.9.1"/>
		<Addin id="Refactoring" version="2.9.1"/>
	</Dependencies>
	
	
	<Extension path = "/MonoDevelop/Ide/Commands/TextEditor">
<!--		<Command id = "MonoDevelop.DocFood.Commands.DocumentThis"
		         defaultHandler = "MonoDevelop.DocFood.DocumentThisHandler"
		         _label = "Document this" /> -->
		<Command id = "MonoDevelop.DocFood.Commands.DocumentBuffer"
		         defaultHandler = "MonoDevelop.DocFood.DocumentBufferHandler"
		         _label = "Document buffer" />
	</Extension>
	

	<Extension path = "/MonoDevelop/Ide/TextEditorExtensions">
		<Class fileExtensions = ".cs" class = "MonoDevelop.DocFood.DocFoodTextEditorExtension" insertbefore = "MonoDevelop.CSharp.Completion.CSharpTextEditorCompletion" />
	</Extension>


	<Extension path = "/MonoDevelop/Ide/MainMenu/Edit">
<!--		<CommandItem id="MonoDevelop.DocFood.Commands.DocumentThis" /> -->
		<CommandItem id="MonoDevelop.DocFood.Commands.DocumentBuffer" insertafter = "MonoDevelop.Ide.Commands.EditCommands.InsertStandardHeader"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/DocumentationGenerator">
		<Class class = "MonoDevelop.DocFood.DocGenerator"/>
	</Extension>

	
	
	<!--
	<Extension path = "/MonoDevelop/Ide/GlobalOptionsDialog">
		<Section id = "DocFood" _label = "DocFood">
			<Section id = "Options" _label = "Options" class = "MonoDevelop.DocFood.Options.OptionsPanelPanel" />
			<Section id = "Expansions" _label = "Expansions" class = "MonoDevelop.DocFood.Options.ExpansionsPanel" />
			<Section id = "Acronyms" _label = "Acronyms" class = "MonoDevelop.DocFood.Options.AcronymsPanel" />
			<Section id = "NoTheReordering" _label = '"No the" Words' class = "MonoDevelop.DocFood.Options.NoTheReordering" />
			<Section id = "OfTheReordering" _label = '"Of the" Reordering' class = "MonoDevelop.DocFood.Options.OfTheReordering" />
			<Section id = "Rules" _label = "Rules" class = "MonoDevelop.DocFood.Options.RulesPanel" />
		</Section>
	</Extension> -->
</Addin>