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

  1. <?xml version="1.0"?>
  2. <Template originator   = "Markus Palme"
  3.           created      = "24/11/2002"
  4.           lastModified = "02/01/2003">
  5.  
  6.     <!-- Template Header -->
  7.     <TemplateConfiguration>
  8.         <!--    <Name>${res:Templates.Project.VB.LibraryProject.Name}</Name> -->
  9.         <Name>VB Library</Name>
  10.         <Category>VBNET</Category>
  11.         <Icon>VB.Project.Library</Icon>
  12.         <LanguageName>VBNET</LanguageName>
  13.         <Description>Creates a new VB library project</Description>
  14.         <!--        <Description>${res:Templates.Project.VB.LibraryProject.Description}</Description> -->
  15.     </TemplateConfiguration>
  16.     
  17.     <!-- Actions -->
  18.     <Actions>
  19.         <Open filename = "NewClass.vb"/>
  20.     </Actions>
  21.  
  22.     <Combine name = "${ProjectName}" directory = ".">
  23.         <Options>
  24.             <StartupProject>${ProjectName}</StartupProject>
  25.         </Options>
  26.         
  27.         <Project name = "${ProjectName}" directory = ".">
  28.             <Options Target = "Library" PauseConsoleOutput = "False"/>    
  29.             <Files>
  30.                 <File name="NewClass.vb"><![CDATA[' project created on ${Date} at ${Time}
  31. Imports System
  32.  
  33. Public Class NewClass
  34.     
  35. End Class
  36. ]]></File>
  37.         <File name="AssemblyInfo.vb">
  38.             <![CDATA[Imports System.Reflection
  39. Imports System.Runtime.CompilerServices
  40.  
  41. ' Information about this assembly is defined by the following
  42. ' attributes.
  43. '    <ProjectOptions Target = "WinExe" PauseConsoleOutput = "False" />
  44. ' change them to the information which is associated with the assembly
  45. ' you compile.
  46.  
  47. <assembly: AssemblyTitle("")>
  48. <assembly: AssemblyDescription("")>
  49. <assembly: AssemblyConfiguration("")>
  50. <assembly: AssemblyCompany("")>
  51. <assembly: AssemblyProduct("")>
  52. <assembly: AssemblyCopyright("")>
  53. <assembly: AssemblyTrademark("")>
  54. <assembly: AssemblyCulture("")>
  55.  
  56. ' The assembly version has following format :
  57. '
  58. ' Major.Minor.Build.Revision
  59. '
  60. ' You can specify all values by your own or you can build default build and revision
  61. ' numbers with the '*' character (the default):
  62.  
  63. <assembly: AssemblyVersion("1.0.*")>
  64.  
  65. ' The following attributes specify the key for the sign of your assembly. See the
  66. ' .NET Framework documentation for more information about signing.
  67. ' This is not required, if you don't want signing let these attributes like they're.
  68. <assembly: AssemblyDelaySign(false)>
  69. <assembly: AssemblyKeyFile("")>]]></File>
  70.             </Files>
  71.         </Project>
  72.     </Combine>    
  73. </Template>
  74.  
  75.