I've created an interop for a COM dll via tlbimp
and added it to the assembly cache. To use this in an ASP.net page i need to include the following
<%@ Page Language="VB" Debug="true" CompilerOptions='/R:"C:\Program Files\blah\blah\LIBRARY.dll"'%>
<%@ Import Namespace=LIBRARY %>
Why do i need the CompilerOptions directive if it's in the assembly cache? Can i simplify and centralize this?