AssemblyInfo.cs

  • Thread starter Thread starter Water Cooler v2
  • Start date Start date
Water Cooler v2 said:
Who uses the AssemblyInfo.cs file? How is it used?

There are various Attributes that you can apply to an assembly in the
form [assembly:SomeAttribute...]. These can be written into any of the .cs
source files in your project. However, if you spread your assembly
attributes over all of your files, it will be difficult find out what
attributes have been applied. This is why the project template provides the
AssemblyInfo.cs, so that you have a place to group together the assembly
attributes.
Things that you may wish to specify there include the version of your
program, the KeyFile for strong-naming the assembly, various COM+
configuration properties for assemblies that use System.EnterpriseServices,
and many more.
 

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