assemblyinfo

.net

Custom AssemblyInfo Attributes

To complement my previous post bemoaning the lack of respect for AssemblyInfo, I wanted to illustrate just how easy it is to add a few custom attributes to our AssemblyInfo file: Imports System Imports System.Reflection <Assembly: AssemblyTitle("ASPUnhandledException")> <Assembly: AssemblyDescription("ASP.NET unhandled

By Jeff Atwood ·
Comments

c#

Populate your AssemblyInfo

All too often, I download sample code with AssemblyInfo files that look like this: // // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("

By Jeff Atwood ·
Comments