To avoid question "what mode the assembly was compiled" use following tip.
Append the following code to the AssemblyInfo.cs file:
#if DEBUG
[assembly: AssemblyDescription("Debug")]
#else
[assembly: AssemblyDescription("Release")]
#endif
Compiled Assembly file (.dll or .exe) has word Debug or Release in the Version property tab Comments field.
Append the following code to the AssemblyInfo.cs file:
#if DEBUG
[assembly: AssemblyDescription("Debug")]
#else
[assembly: AssemblyDescription("Release")]
#endif
Compiled Assembly file (.dll or .exe) has word Debug or Release in the Version property tab Comments field.
Comments