home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / CMCD1203.ISO / Software / Freeware / Programare / sharpdevelop / 098setup.exe / $INSTDIR / data / templates / project / VBNet / ConsoleVBProject.xpt next >
Encoding:
Extensible Markup Language  |  2003-10-24  |  1.2 KB  |  48 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.             <References>
  31.                 <Reference type="Gac" refto="System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  32.             </References>
  33.             
  34.             <Files>
  35.         <File name="Main.vb">
  36.             <![CDATA[' project created on ${Date} at ${Time}
  37. Imports System
  38. Module Main
  39.     Sub Main()
  40.         Console.WriteLine("Hello World!")
  41.     End Sub
  42. End Module
  43. ]]></File>
  44.             </Files>
  45.         </Project>
  46.     </Combine>
  47. </Template>
  48.