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

MonoDeveloperExtensions.addin.xml « MonoDeveloperExtensions « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dc265a3ea42ebfdd480df76b2a9bb8310116f47 (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
60
<Addin id          = "MonoDeveloperExtensions"
       namespace   = "MonoDevelop"
       name        = "IDE Extensions for developers of the Mono framework"
       author      = "Lluis Sanchez Gual"
       copyright   = "(c) 2005 Novell, Inc."
       url         = "http://www.monodevelop.com"
       description = "Provides some IDE extensions useful for developing and building the Mono class libraries."
       category    = "Project Import and Export"
       version     = "4.2">
    
    <Runtime>
        <Import assembly="MonoDeveloperExtensions.dll"/>
    </Runtime>

	<Dependencies>
		<Addin id="Core" version="4.2"/>
		<Addin id="Ide" version="4.2"/>
	</Dependencies>

	<Extension path = "/MonoDevelop/ProjectModel/FileFormats">
		<FileFormat id = "MonoMakefile" name="Mono Makefile"
						class = "MonoDeveloper.MonoMakefileFormat" />
	</Extension>

  <Extension path = "/MonoDevelop/ProjectModel/Gui/ItemOptionPanels">
    <Condition id="ItemType" value = "MonoDeveloper.MonoMakefile">
		<Section id = "MonoMakefileOptionsPanel"
					 _label = "Output"
					 class = "MonoDevelop.Projects.Gui.Dialogs.OutputOptionsPanel"/>
    </Condition>
  </Extension>

	<Extension path = "/MonoDevelop/Ide/Commands">
		<Command id = "MonoDeveloper.Commands.Install"
				defaultHandler = "MonoDeveloper.InstallHandler"
				icon = "gtk-network"
				_label = "Install" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad">
		<Condition id="activeproject" value="MonoMakefile">
			<CommandItem id = "MonoDeveloper.Commands.Install"
					  insertafter = "BuildGroupSeparator"
					  insertbefore = "Add" />
			<SeparatorItem id = "svnSep" />
		</Condition>
	</Extension>

	<Module>
	    <Runtime>
	        <Import assembly="MonoDeveloperExtensions_nunit.dll"/>
	    </Runtime>
		<Dependencies>
			<Addin id="NUnit" version="4.2"/>
		</Dependencies>
		<Extension path = "/MonoDevelop/NUnit/TestProviders">
			<Class id = "MonoTestProvider" class = "MonoDeveloper.MonoTestProvider"/>
		</Extension>
	</Module>
</Addin>