Hi guys,
I have a DLL in the BIN folder, and I need it to be referenced in the web.config, or I get that annoying error:
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0234: The type or namespace name 'ServiceModel' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
This DLL is not in the GAC, and for that I can not use the
<assemblies><add ...
So my guess is that I need to use the configSections like
<configSections>
<section name="Microsoft.System.Web"
type="Microsoft.System.Web,
Version=3.0.0.0, Culture=neutral,
PublicKeyToken=10633fbfa3fade6e "/>
</configSections>
What should be the correct code?