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.
48 lines
1.1 KiB
48 lines
1.1 KiB
<?xml version="1.0"?> |
|
<Template originator = "Mike Krueger" created = "02/01/2003"> |
|
|
|
<!-- Template Header --> |
|
<TemplateConfiguration> |
|
<Name>${res:Templates.Project.ClassLibrary.Name}</Name> |
|
<Category>C#</Category> |
|
<Icon>C#.Project.Library</Icon> |
|
<Description>${res:Templates.Project.ClassLibrary.Description}</Description> |
|
<SupportedTargetFrameworks>v2.0;v3.5Client</SupportedTargetFrameworks> |
|
</TemplateConfiguration> |
|
|
|
<!-- Actions --> |
|
<Actions> |
|
<Open filename = "MyClass.cs"/> |
|
</Actions> |
|
|
|
<!-- Template Content --> |
|
<Project language="C#"> |
|
<PropertyGroup> |
|
<OutputType>Library</OutputType> |
|
<AppDesignerFolder>Properties</AppDesignerFolder> |
|
</PropertyGroup> |
|
|
|
<ProjectItems> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Xml" /> |
|
</ProjectItems> |
|
|
|
<Files> |
|
<File name="MyClass.cs"><![CDATA[${StandardHeader.C#} |
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ${StandardNamespace} |
|
{ |
|
/// <summary> |
|
/// Description of MyClass. |
|
/// </summary> |
|
public class MyClass |
|
{ |
|
|
|
} |
|
}]]></File> |
|
<File name="Properties\AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/> |
|
</Files> |
|
</Project> |
|
</Template>
|
|
|