I would like to know if I can define custom assembly attributes. Existing attributes are defined in the following way:
[assembly: AssemblyTitle("MyApplication")]
[assembly: AssemblyDescription("This application is a sample application.")]
[assembly: AssemblyCopyright("Copyright © MyCompany 2009")]
Is there a way I can do the following:
[assembly: MyCustomAssemblyAttribute("Hello World! This is a custom attribute.")]
AssemblyTitleetc is located inassemblyattributes.cs. Here's the source: referencesource.microsoft.com/#mscorlib/system/reflection/…. - mekb