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.
47 lines
1.1 KiB
47 lines
1.1 KiB
<?xml version="1.0"?> |
|
<Template originator = "Mike Krueger"> |
|
|
|
<!-- Template Header --> |
|
<TemplateConfiguration> |
|
<Name>${res:Templates.Project.ConsoleProject.Name}</Name> |
|
<Category>C#</Category> |
|
<Subcategory>${res:Templates.File.Categories.WindowsApplications}</Subcategory> |
|
<Icon>C#.Project.DOSProject</Icon> |
|
<Description>${res:Templates.Project.ConsoleProject.Description}</Description> |
|
</TemplateConfiguration> |
|
|
|
<!-- Actions --> |
|
<Actions> |
|
<Open filename = "Program.cs"/> |
|
</Actions> |
|
|
|
<!-- Template Content --> |
|
<Project language = "C#"> |
|
<ProjectItems> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Data" /> |
|
<Reference Include="System.Xml" /> |
|
</ProjectItems> |
|
<Files> |
|
<File name="Program.cs"><![CDATA[${StandardHeader.C#} |
|
using System; |
|
|
|
namespace ${StandardNamespace} |
|
{ |
|
class Program |
|
{ |
|
public static void Main(string[] args) |
|
{ |
|
Console.WriteLine("Hello World!"); |
|
|
|
// TODO: Implement Functionality Here |
|
|
|
Console.Write("Press any key to continue . . . "); |
|
Console.ReadKey(true); |
|
} |
|
} |
|
}]]></File> |
|
<File name="AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/> |
|
</Files> |
|
</Project> |
|
</Template>
|
|
|