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

CSharpBinding.addin.xml « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c1e2400be491ce46433c55e327498fd7f3262d6 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<Addin id          = "CSharpBinding"
       namespace   = "MonoDevelop"
       name        = "CSharp Language Binding"
       author      = "Todd Berman"
       copyright   = "GPL"
       url         = "http://www.monodevelop.com/"
       description = "CSharp Language Binding"
	   category    = "Language bindings"
       version     = "0.17.0">
	
	<Dependencies>
	    <Addin id="Core" version="0.17.0"/>
	    <Addin id="Core.Gui" version="0.17.0"/>
    	<Addin id="Projects" version="0.17.0"/>
		<Addin id="Projects.Gui" version="0.17.0"/>
		<Addin id="Ide" version="0.17.0"/>
		<Addin id="SourceEditor" version="0.17.0"/>
	</Dependencies>
	
	<Extension path = "/MonoDevelop/ProjectModel/Ambiences">
		<Class id    = "C#"
		       class = "CSharpBinding.CSharpAmbience"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/FileTemplates">
		<FileTemplate id = "Empty" resource = "EmptyCSharpFile.xft.xml"/>
		<FileTemplate id = "GnomeSharpProgram" resource = "GnomeSharpProgram.xft.xml"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/ProjectTemplates">
		<ProjectTemplate id = "ConsoleProject" resource = "ConsoleProject.xpt.xml"/>
		<ProjectTemplate id = "EmptyProject" resource = "EmptyProject.xpt.xml"/>
		<ProjectTemplate id = "GladeSharpProject" resource = "GladeSharpProject.xpt.xml"/>
		<ProjectTemplate id = "GladeSharp2Project" resource = "GladeSharp2Project.xpt.xml"/>
		<ProjectTemplate id = "GnomeSharpProject" resource = "GnomeSharpProject.xpt.xml"/>
		<ProjectTemplate id = "GnomeSharp2Project" resource = "GnomeSharp2Project.xpt.xml"/>
		<ProjectTemplate id = "GtkSharpProject" resource = "GtkSharpProject.xpt.xml"/>
		<ProjectTemplate id = "GtkSharp2Project" resource = "GtkSharp2Project.xpt.xml"/>
		<ProjectTemplate id = "Library" resource = "Library.xpt.xml"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/FileFilters">
		<FileFilter id = "CSharp"
		            insertbefore="AllFiles"
		            _label = "CSharp Files"
			    extensions = "*.cs"/>
		<FileFilter id = "Assemblies"
		            insertbefore="AllFiles"
		            _label = "Assemblies"
		            extensions = "*.exe,*.dll"/>
			    
		<FileFilter id = "Html"
		            insertbefore="AllFiles"
		            _label = "Web Files"
		            extensions = "*.htm,*.html,*.aspx,*.ascx,*.asp"/>
			    
		<FileFilter id = "Xml"
		            insertbefore="AllFiles"
		            _label = "Xml Files"
		            extensions = "*.xml"/>
		<FileFilter id = "Resources"
		            insertbefore="AllFiles"
		            _label = "Resource Files"
		            extensions = "*.resources,*.resx"/>
	</Extension>

	<Extension path = "/MonoDevelop/ProjectModel/Gui/ProjectOptions/ConfigurationOptions">
		<Condition id="activelanguage" value="C#">
			<DialogPanel id = "CSharpCodeGenerationPanel"
			             _label = "Compiler Options"
			             class = "CSharpBinding.CodeGenerationPanel"/>
			<DialogPanel id = "CSharpOutputOptionsPanel"
			             _label = "Output"
			             class = "MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanel"/>
		</Condition>
	</Extension>
	
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/ProjectOptions/GeneralOptions/Common">
		<Condition id="activelanguage" value="C#">
				<DialogPanel id = "RuntimeOptionsPanel"
				             _label = "Runtime Options"
				             class = "MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanel"/>
				<DialogPanel id = "CSharpCompilerOptionsPanel"
				             _label = "Compiler Options"
				             class = "CSharpBinding.CompilerOptionsPanel"/>
		</Condition>
	</Extension>
		
	<Extension path = "/MonoDevelop/SourceEditor/Formatters">
		<Class id ="cs" class = "CSharpBinding.FormattingStrategy.CSharpFormattingStrategy" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/OptionsDialogPanels/TextEditorOptions">
		<Condition id="activelanguage" value="C#">
			<DialogPanel id = "Formatting"
			             _label = "Formatting"
			             insertafter = "Behavior"
			             insertbefore = "SyntaxHighlighting"
			             class = "CSharpBinding.FormattingPanel"/>
		</Condition>
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/Icons">
		<Icon language = "C#" icon = "res:C#.ProjectIcon"/>
		<Icon extensions = ".cs" icon = "res:C#.FileIcon"/>
		<Icon extensions = ".resources,.resx" icon = "md-resource-file-icon" />
	</Extension>

	<Extension path = "/MonoDevelop/ProjectModel/LanguageBindings">
		<LanguageBinding id    = "CSharp"
		                 supportedextensions = ".cs"
		                 class = "CSharpBinding.CSharpLanguageBinding" />
    </Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/SerializableClasses">
		<DataType class = "CSharpBinding.CSharpCompilerParameters" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/TextEditorExtensions">
		<Class class = "CSharpBinding.CSharpTextEditorExtension" />
	</Extension>
	
	<Module>
	    <Runtime>
	        <Import assembly="MonoDevelop.CSharpBinding.Autotools.dll"/>
	    </Runtime>
		<Dependencies>
			<Addin id="Autotools" version="0.17.0"/>
		</Dependencies>
		<Extension path = "/MonoDevelop/Autotools/SimpleSetups">
			<Class class="CSharpBinding.Autotools.CSharpAutotoolsSetup" />
		</Extension>
	</Module>
</Addin>