If you want to add details like (Your [company] name, Product name, Copyright info, Version Number) to your custom library ?
ex :
Its very simple.
Open Assembly.vb or Assembly.cs and modify the following items.
You can add more attributes that are not given here. Use Visual Studio intelli-sense to find more attributes.
[VB]
<Assembly: AssemblyTitle(“Your Library Name”)>
<Assembly: AssemblyDescription(“Description about the library”)>
<Assembly: AssemblyCompany(“Your Company name”)>
<Assembly: AssemblyProduct(“Product Name”)>
<Assembly: AssemblyCopyright(“Copyright © 2007″)>
<Assembly: AssemblyTrademark(“Product Trademark”)>
<Assembly: ComVisible(False)>
<Assembly: AssemblyVersion(“1.0.0.0″)>
<Assembly: AssemblyFileVersion(“1.0.0.0″)>

Nice work. Implemented in assembly file no worries. Thanks you