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.
62 lines
1.7 KiB
62 lines
1.7 KiB
<AddIn |
|
name="Text Templating" |
|
author="Matt Ward" |
|
copyright="prj:///doc/copyright.txt" |
|
description="Adds support for T4 templates." |
|
addInManagerHidden="preinstalled"> |
|
|
|
<Manifest> |
|
<Identity name="ICSharpCode.TextTemplating"/> |
|
</Manifest> |
|
|
|
<Runtime> |
|
<Import assembly="TextTemplating.dll"/> |
|
</Runtime> |
|
|
|
<Path name="/SharpDevelop/Workbench/FileFilter"> |
|
<FileFilter |
|
id="TextTemplating" |
|
insertbefore="AllFiles" |
|
name="Text Template Files (*.tt;*.t4)" |
|
extensions="*.tt;*.t4" |
|
mimeType = "text/plain"/> |
|
</Path> |
|
|
|
<Path name="/Workspace/Icons"> |
|
<Icon |
|
id="TextTemplateFileIcon" |
|
extensions=".tt;.t4;.ttinclude" |
|
resource="TextTemplate.ProjectBrowser.File"/> |
|
</Path> |
|
|
|
<Path name="/SharpDevelop/CustomTools"> |
|
<CustomTool |
|
id="TextTemplatingFileGenerator" |
|
class="ICSharpCode.TextTemplating.TextTemplatingFileGeneratorCustomTool" |
|
fileNamePattern="\.t(t|4)$"/> |
|
<CustomTool |
|
id="TextTemplatingFilePreprocessor" |
|
class="ICSharpCode.TextTemplating.TextTemplatingFilePreprocessorCustomTool" |
|
fileNamePattern="\.t(t|4)$"/> |
|
</Path> |
|
|
|
<Path name="/SharpDevelop/ViewContent/AvalonEdit/SyntaxModes"> |
|
<SyntaxMode |
|
id="TextTemplating.SyntaxMode" |
|
extensions=".tt;.t4;.ttinclude" |
|
name="TextTemplating" |
|
resource="ICSharpCode.TextTemplating.Resources.TextTemplating.xshd"/> |
|
</Path> |
|
|
|
<Path name="/SharpDevelop/BackendBindings/Templates"> |
|
<TemplateFile id="TextTemplating" path="./Templates"/> |
|
</Path> |
|
|
|
<!-- Defines service providers that will be used by the text templating host |
|
to create types before the default TextTemplatingServiceProvider class --> |
|
<Path name="/SharpDevelop/TextTemplating/ServiceProviders"> |
|
<!-- Example |
|
<Class id="Default" class="MyNamespace.MyServiceProvider" /> |
|
--> |
|
</Path> |
|
</AddIn>
|
|
|