home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / Library.xpt < prev    next >
Extensible Markup Language  |  2004-07-05  |  2KB  |  73 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.ClassLibrary.Name}</Name>
  9.         <Category>VBNET</Category>
  10.         <Icon>VB.Project.Library</Icon>
  11.         <LanguageName>VBNET</LanguageName>
  12.         <Description>${res:Templates.Project.ClassLibrary.Description}</Description>
  13.     </TemplateConfiguration>
  14.     
  15.     <!-- Actions -->
  16.     <Actions>
  17.         <Open filename = "NewClass.vb"/>
  18.     </Actions>
  19.  
  20.     <Combine name = "${ProjectName}" directory = ".">
  21.         <Options>
  22.             <StartupProject>${ProjectName}</StartupProject>
  23.         </Options>
  24.         
  25.         <Project name = "${ProjectName}" directory = ".">
  26.             <Options Target = "Library" PauseConsoleOutput = "False"/>    
  27.             <Files>
  28.                 <File name="NewClass.vb"><![CDATA[${StandardHeader.VBNET}
  29. Imports System
  30.  
  31. Public Class NewClass
  32.     
  33. End Class
  34. ]]></File>
  35.         <File name="AssemblyInfo.vb">
  36.             <![CDATA[Imports System.Reflection
  37. Imports System.Runtime.CompilerServices
  38.  
  39. ' Information about this assembly is defined by the following
  40. ' attributes.
  41. '    <ProjectOptions Target = "WinExe" PauseConsoleOutput = "False" />
  42. ' change them to the information which is associated with the assembly
  43. ' you compile.
  44.  
  45. <assembly: AssemblyTitle("")>
  46. <assembly: AssemblyDescription("")>
  47. <assembly: AssemblyConfiguration("")>
  48. <assembly: AssemblyCompany("")>
  49. <assembly: AssemblyProduct("")>
  50. <assembly: AssemblyCopyright("")>
  51. <assembly: AssemblyTrademark("")>
  52. <assembly: AssemblyCulture("")>
  53.  
  54. ' The assembly version has following format :
  55. '
  56. ' Major.Minor.Build.Revision
  57. '
  58. ' You can specify all values by your own or you can build default build and revision
  59. ' numbers with the '*' character (the default):
  60.  
  61. <assembly: AssemblyVersion("1.0.*")>
  62.  
  63. ' The following attributes specify the key for the sign of your assembly. See the
  64. ' .NET Framework documentation for more information about signing.
  65. ' This is not required, if you don't want signing let these attributes like they're.
  66. <assembly: AssemblyDelaySign(false)>
  67. <assembly: AssemblyKeyFile("")>]]></File>
  68.             </Files>
  69.         </Project>
  70.     </Combine>    
  71. </Template>
  72.  
  73.