I am writing a plugin for Visual Studio, I am able to see all the properties of all the references for a project, except for one property.
How can I access the "Embed Interop Types" property of a reference programmatically?
Right now I am using the VSLangProj80.Reference3 class to get the properties, but it does not include the "Embed Interop Types" property.
I have found a reference to a Microsoft internal use enumeration, VsProjReferencePropId100.DISPID_Reference_EmbedInteropTypes, but don't know how to use it to find the information I am looking for.