You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.0 KiB
83 lines
3.0 KiB
<AddIn name = "SharpDevelop Bindings" |
|
author = "Mike Krueger, Markus Palme" |
|
copyright = "GPL" |
|
url = "http://www.icsharpcode.net" |
|
description = "SharpDevelop VB.NET language binding" |
|
version = "1.0.0"> |
|
|
|
<Runtime> |
|
<Import assembly = "VBNetBinding.dll"/> |
|
<Import assembly = "/ICSharpCode.SharpDevelop"/> |
|
</Runtime> |
|
|
|
<Path name = "/SharpDevelop/Workbench/Ambiences"> |
|
<Class id = "VBNet" |
|
class = "VBNetBinding.VBNetAmbience"/> |
|
</Path> |
|
|
|
<Path name = "/SharpDevelop/Workbench/FileFilter"> |
|
<FileFilter id = "VBNet" |
|
insertbefore="AllFiles" |
|
name = "${res:SharpDevelop.FileFilter.VBNetFiles}" |
|
extensions = "*.vb"/> |
|
</Path> |
|
|
|
<Path name = "/Workspace/Parser"> |
|
<Parser id = "VBNet" |
|
supportedextensions = ".vb" |
|
projectfileextension = ".vbproj" |
|
class = "VBNetBinding.Parser.TParser"/> |
|
</Path> |
|
|
|
<Path path = "/SharpDevelop/BackendBindings/ProjectOptions/VBNet"> |
|
<DialogPanel id = "Application" |
|
label = "Application" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.ApplicationSettings"/> |
|
<DialogPanel id = "ReferencePaths" |
|
label = "Reference Paths" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.ReferencePaths"/> |
|
<DialogPanel id = "Signing" |
|
label = "Signing" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.Signing"/> |
|
<DialogPanel id = "BuildEvents" |
|
label = "Build Events" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.BuildEvents"/> |
|
<DialogPanel id = "BuildOptions" |
|
label = "Build" |
|
class = "VBNetBinding.OptionPanels.BuildOptions"/> |
|
<DialogPanel id = "DebugOptions" |
|
label = "Debug" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.DebugOptions"/> |
|
<DialogPanel id = "Publish" |
|
label = "Publish" |
|
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.Publish"/> |
|
</Path> |
|
|
|
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion"> |
|
<Class id = "VBNetCompletionBinding" |
|
class = "VBNetBinding.VBNetCompletionBinding"/> |
|
</Path> |
|
|
|
<Path name = "/AddIns/DefaultTextEditor/Formatter/VBNET"> |
|
<Class id ="VBNetFormatter" insertbefore="DefaultFormatter" class = "VBNetBinding.FormattingStrategy.VBFormattingStrategy"/> |
|
</Path> |
|
|
|
<Path name = "/Workspace/Icons"> |
|
<!-- C# --> |
|
<Icon id = "VBNetPrj" |
|
language = "VBNet" |
|
resource = "VBNet.ProjectIcon"/> |
|
|
|
<Icon id = "VBNetFile" |
|
extensions = ".vb" |
|
resource = "VBNet.FileIcon"/> |
|
</Path> |
|
|
|
<Path path = "/SharpDevelop/Workbench/LanguageBindings"> |
|
<LanguageBinding id = "VBNet" |
|
guid = "{F184B08F-C81C-45F6-A57F-5ABD9991F28F}" |
|
supportedextensions = ".vb" |
|
projectfileextension = ".vbproj" |
|
class = "VBNetBinding.VBNetLanguageBinding" /> |
|
</Path> |
|
</AddIn>
|
|
|