AssemblyInfo.cs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the significance of AssemblyInfo.cs file that gets created automatically in .NET environment ? where and how it is used
 
The asswmblyinfo.cs holds information required for versioning the assembly. Normally you will provide your public key generated by the sn.exe utility and also a flag to delay sign or not. There is an MSDN article about this or a good reference will be WROX Advanced C# book.
 
I would like to add that there is nothing special about the AssemblyInfo
file. It is merely a convention used by VS.NET but the compiler itself does
not recognize this in any special way.

snapple said:
The asswmblyinfo.cs holds information required for versioning the
assembly. Normally you will provide your public key generated by the sn.exe
utility and also a flag to delay sign or not. There is an MSDN article
about this or a good reference will be WROX Advanced C# book.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top