AssemblyInfo.cs

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

Guest

I'm trying to figure out how to handle versioning for my app when I found a
web site talking about AssemblyInfo.cs. They say all new .NET projects get
this file and it comes with automated versioning. I cannot find this file
anywhere in my .NET project- what gives?
 
VS.NET creates it at the root of your project, but since this is only a
file, it can also be removed. Maybe it was removed from your project.
Simply create a temp project and use the AssemblyInfo that is created as a
template for your needs.
 
Peter said:
VS.NET creates it at the root of your project, but since this is only
a file, it can also be removed. Maybe it was removed from your
project. Simply create a temp project and use the AssemblyInfo that
is created as a template for your needs.

Also note that assemblyInfo.cs is only added as a convenience, you can put
assembly level attributes in any source file in your project, but for your
sanity make sure that they appear in only *one* source file!

Richard
 
Back
Top