I am just about to introduce bundle version to one product (.net c#) into AssemblyInfo.cs file and I have a question if is possible to create new assembly info parameter (BundleVersion), which could bring the defined version number into .dll details, similar as AssemblyFileVersion (file version visible metadata).
The problem is that when I try to use AssemblyMetadata
[assembly: AssemblyMetadata("BundleVersion", "1.0")]
this attribute is not visible in file -> Properties -> Details
Does anyone know how to "make" it visible?
The point of everything is to make the same bundle version across the products, which can talk to each other (something similar as dependency version).