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.
58 lines
1.7 KiB
58 lines
1.7 KiB
<?xml version="1.0"?> |
|
<Template originator = "Daniel Grunwald" created = "26/04/2005"> |
|
|
|
<!-- Template Header --> |
|
<TemplateConfiguration> |
|
<Name>${res:Templates.Project.SharpDevelopAddin.Name}</Name> |
|
<Category>C#</Category> |
|
<Subcategory>SharpDevelop</Subcategory> |
|
<Icon>C#.Project.ControlLibrary</Icon> |
|
<Description>${res:Templates.Project.SharpDevelopAddin.Description}</Description> |
|
<SupportedTargetFrameworks>v4.0</SupportedTargetFrameworks> |
|
</TemplateConfiguration> |
|
|
|
<!-- Actions --> |
|
<Actions> |
|
<Open filename = "${ProjectName}.addin"/> |
|
<Open filename = "AddInWritingHelp.txt"/> |
|
</Actions> |
|
|
|
<Project language = "C#"> |
|
<ProjectItems> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Data" /> |
|
<Reference Include="System.Drawing" /> |
|
<Reference Include="System.Windows.Forms" /> |
|
<Reference Include="System.Xml" /> |
|
<Reference Include="System.Xaml" /> |
|
<Reference Include="WindowsBase" /> |
|
<Reference Include="PresentationCore" /> |
|
<Reference Include="PresentationFramework" /> |
|
</ProjectItems> |
|
|
|
<PropertyGroup> |
|
<OutputType>Library</OutputType> |
|
</PropertyGroup> |
|
|
|
<Files> |
|
<File name="${ProjectName}.addin" CopyToOutputDirectory="Always"><![CDATA[<AddIn name = "${ProjectName}" |
|
author = "${USER}" |
|
url = "" |
|
description = "TODO: Put description here"> |
|
|
|
<Runtime> |
|
<Import assembly = "${ProjectName}.dll"/> |
|
</Runtime> |
|
|
|
<!-- Extend the SharpDevelop AddIn-Tree like this: |
|
<Path name = ...> |
|
<.../> |
|
</Path> |
|
--> |
|
</AddIn> |
|
]]></File> |
|
<File name="Configuration/AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/> |
|
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/> |
|
</Files> |
|
</Project> |
|
</Template>
|
|
|