I have a type in my App_Code folder from a website project that I want to link to in Web.config. The type attribute requires me to enter the assembly name. Internets fail with what needs to be added to the assembly.
In particular,
<system.web>
<webServices>
<soapExtensionReflectorTypes>
<add type="MyType, $App_Code$" />
</soapExtensionReflectorTypes>
</webServices>
</system.web>
What can I add to $ App_Code $ to compile it? I tried _ _ code, _code application, _Code application (Markdown does not work here: these type names do not contain spaces in them)
source
share