Reputation: 1270
What is difference between
<reference/> and <comreference />
.
CS Project i loaded into visual studio 2013 these comreference specified dll files are not resolved.
Upvotes: 0
Views: 223
Reputation: 5134
<comreference />
requires the library to be registered on your system as a COM server, e.g. with regsvr32
, while <reference/>
is just for normal non-COM references. MSDN.
See also this answer for Tlbimp.exe
info. Another answer on that page mentions COMFileReference
which you can also try.
Upvotes: 1