Read the license information from a dll
I have a requirement to detect and read the license with which a dll is built in visual studio
From what I've explored I understood that the .licx file added to the project will be transformed into a .licenses binary file and will be embedded with the output dll. When the output dll is loaded, we are able to see that a .licenses file is embedded into the project, but not able to read the license information within that file. Is there a standard way to read the .licenses file or read the license information of the dll?
Is it possible for us to know the license information that is embedded within the dll?