home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / Sharpdev / 099bsetup.exe / ConsoleVBProject.xpt < prev    next >
Extensible Markup Language  |  2004-02-04  |  1KB  |  44 lines

  1. <?xml version="1.0"?>
  2. <Template originator   = "Shinsaku Nakagawa"
  3.           created      = "11/28/2002"
  4.           lastModified = "02/01/2003">
  5.  
  6.     <!-- Template Header -->
  7.     <TemplateConfiguration>
  8.         <Name>Console Project</Name>
  9.         <Category>VBNET</Category>
  10.         <Icon>VB.Project.DOSProject</Icon>
  11.         <LanguageName>VBNET</LanguageName>
  12.         <Description>Create a console VB.NET project</Description>
  13.     </TemplateConfiguration>
  14.     
  15.     <!-- Actions -->
  16.     <Actions>
  17.         <Open filename = "Main.vb"/>
  18.     </Actions>
  19.     
  20.     <!-- Template Content -->
  21.     <Combine name = "${ProjectName}" directory = ".">
  22.         <Options>
  23.             <StartupProject>${ProjectName}</StartupProject>
  24.         </Options>
  25.         
  26.         <Project name = "${ProjectName}" directory = ".">
  27.             
  28.             <Options Target = "Exe" PauseConsoleOutput = "True"/>
  29.             
  30.             <Files>
  31.         <File name="Main.vb">
  32.             <![CDATA[' project created on ${Date} at ${Time}
  33. Imports System
  34. Module Main
  35.     Sub Main()
  36.         Console.WriteLine("Hello World!")
  37.     End Sub
  38. End Module
  39. ]]></File>
  40.             </Files>
  41.         </Project>
  42.     </Combine>
  43. </Template>
  44.