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.
52 lines
1.2 KiB
52 lines
1.2 KiB
<?xml version="1.0"?> |
|
<Template originator = "Shinsaku Nakagawa" |
|
created = "11/28/2002" |
|
lastModified = "02/01/2003"> |
|
|
|
<!-- Template Header --> |
|
<TemplateConfiguration> |
|
<Name>${res:Templates.Project.ConsoleProject.Name}</Name> |
|
<Category>VBNet</Category> |
|
<Icon>VBNet.Project.DOSProject</Icon> |
|
<LanguageName>VBNet</LanguageName> |
|
<Description>${res:Templates.Project.ConsoleProject.Description}</Description> |
|
</TemplateConfiguration> |
|
|
|
<!-- Actions --> |
|
<Actions> |
|
<Open filename = "Main.vb"/> |
|
</Actions> |
|
|
|
|
|
<!-- Template Content --> |
|
<Combine name = "${ProjectName}" directory = "."> |
|
<Options> |
|
<StartupProject>${ProjectName}</StartupProject> |
|
</Options> |
|
|
|
<Project name = "${ProjectName}" directory = "."> |
|
<Options /> |
|
|
|
<References> |
|
<Reference type="Gac" refto="System" /> |
|
<Reference type="Gac" refto="System.Data" /> |
|
<Reference type="Gac" refto="System.Drawing" /> |
|
<Reference type="Gac" refto="System.Xml" /> |
|
</References> |
|
|
|
<Files> |
|
<File name="Main.vb"> |
|
<![CDATA[${StandardHeader.VBNET} |
|
Imports System |
|
Imports System.Collections.Generic |
|
|
|
Module Main |
|
Sub Main() |
|
Console.WriteLine("Hello World!") |
|
End Sub |
|
End Module |
|
]]></File> |
|
</Files> |
|
</Project> |
|
</Combine> |
|
</Template>
|
|
|