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

VBNetBinding.addin.xml « VBNetBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5dd55a0d2e41ba6f48fbefda12eb4d829ea9c91 (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
<Addin id          = "VBBinding"
       namespace   = "MonoDevelop"
       name        = "VB.NET Language Binding"
       author      = "Levi Bard"
       copyright   = "GPL"
       url         = "http://bard.sytes.net/vbnetbinding"
       description = "VB.NET 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"/>
	</Dependencies>
	
  <Extension path = "/MonoDevelop/Ide/FileFilters">
    <FileFilter id = "VBNet"
                insertbefore = "AllFiles"
                _label = "VB.NET Files"
                extensions = "*.vb"/>
  </Extension>

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

  <Extension path = "/MonoDevelop/Ide/ProjectTemplates">
    <ProjectTemplate id = "EmptyVBProject" resource = "EmptyVBProject.xpt.xml"/>
    <ProjectTemplate id = "VBConsoleApplicationProject" resource = "VBConsoleApplicationProject.xpt.xml"/>
    <ProjectTemplate id = "VBGtkSharpProject" resource = "VBGtkSharpProject.xpt.xml"/>
    <ProjectTemplate id = "VBGtkSharp2Project" resource = "VBGtkSharp2Project.xpt.xml"/>
  </Extension>
  
  <Extension path = "/MonoDevelop/ProjectModel/Gui/ProjectOptions/ConfigurationOptions">
    <Condition id="activelanguage" value = "VBNet">
      <DialogPanel id = "VBNetCodeGenerationPanel"
                   _label = "Code Generation"
                   class = "VBBinding.CodeGenerationPanel"/>
    </Condition>
  </Extension>
  
  <Extension path = "/MonoDevelop/ProjectModel/Gui/ProjectOptions/ConfigurationOptions">
    <Condition id="activelanguage" value = "VBNet">
      <DialogPanel id = "VBNetOutputOptionsPanel"
                   _label = "Output Options"
                   class = "MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanel"/>
    </Condition>
  </Extension>

  <!-- <Extension path = "/MonoDevelop/ProjectModel/Gui/ProjectOptions/ConfigurationOptions">
    <Condition id="activelanguage" value = "VBNet">
      <DialogPanel id = "VBNetChooseRuntimePanel"
                   _label = "Choose Runtime"
                   class = "VBBinding.ChooseRuntimePanel"/>
    </Condition>
  </Extension> -->


  <Extension path = "/MonoDevelop/ProjectModel/Gui/Icons">
    <Icon language = "VBNet" icon = "res:VB.ProjectIcon"/>
    <Icon extensions = ".vb" icon = "res:VB.FileIcon"/>
  </Extension>
	
	<!-- <Extension path = "/AddIns/DefaultTextEditor/Formatter">  
  		<Condition textcontent = "VBNet">
			<Class id ="VBNetFormatter" insertbefore="DefaultFormatter" class ="VBBinding.FormattingStrategy.VBFormattingStrategy"/>
		</Condition>
	</Extension> -->

  <Extension path = "/MonoDevelop/ProjectModel/LanguageBindings">
    <LanguageBinding id = "VBNet"
                     supportedextensions = ".vb"
                     class = "VBBinding.VBLanguageBinding" />
  </Extension>
  
	<Extension path = "/MonoDevelop/ProjectModel/Ambiences">
		<Class id    = "VBNet"
		       class = "MonoDevelop.Core.VBAmbience"/>
	</Extension>
  
	<Extension path = "/MonoDevelop/ProjectModel/SerializableClasses">
		<DataType class = "VBBinding.VBCompilerParameters" />
	</Extension>
	
</Addin>