JAVAC
JAVAC

Reputation: 1270

difference between reference and COMREFERNCE elements in .net

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

Answers (1)

Pol
Pol

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

Related Questions