Groups | Blog | Home
all groups > asp.net building controls > october 2004 >

asp.net building controls : license an assembly


TJS
10/30/2004 1:15:12 AM
How do I add version information to my assembly when compiling ?


~~~ .NET Ed ~~~
11/1/2004 2:12:07 AM
Fill in this information in the AssemblyInfo file found in your project.
There you can specify the
version number, the strong name public key, company name, product name,
product description
and a few other things.

I have made it a habit to fill in the AssemblyInfo every time I create a
project, no matter
how simple it is. That way when you use the Windows explorer you also get to
view this
useful information.

Emilio

[quoted text, click to view]

TJS
11/1/2004 10:52:53 AM
Thanks for replying, but there are no "project" and "AssemblyInfo" files.

However, I did find the answer.
Just add these with desired values to the .vb file before compiling. I
placed them just below the Imports

<Assembly: AssemblyTitle("")>
<assembly: AssemblyDescription(")>
<assembly: AssemblyConfiguration("")>
<assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("")>
<assembly: AssemblyCopyright("")>
<assembly: AssemblyTrademark("")>
<assembly: AssemblyCulture("")>
<assembly: AssemblyVersion("")>
<Assembly: AssemblyDelaySign()>


AddThis Social Bookmark Button