in AssemblyInfo.cs file I have following subection:
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
Where this information can be seen after assembly is built ? Since there is nothing about it in file details:
where else can it be found ?
Regards