home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
Sharpdev
/
099bsetup.exe
/
ConsoleVBProject.xpt
< prev
next >
Wrap
Extensible Markup Language
|
2004-02-04
|
1KB
|
44 lines
<?xml version="1.0"?>
<Template originator = "Shinsaku Nakagawa"
created = "11/28/2002"
lastModified = "02/01/2003">
<!-- Template Header -->
<TemplateConfiguration>
<Name>Console Project</Name>
<Category>VBNET</Category>
<Icon>VB.Project.DOSProject</Icon>
<LanguageName>VBNET</LanguageName>
<Description>Create a console VB.NET project</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 Target = "Exe" PauseConsoleOutput = "True"/>
<Files>
<File name="Main.vb">
<![CDATA[' project created on ${Date} at ${Time}
Imports System
Module Main
Sub Main()
Console.WriteLine("Hello World!")
End Sub
End Module
]]></File>
</Files>
</Project>
</Combine>
</Template>