我正在尝试配置IIS以在bin\Debug目录中查找DLL (而不是bin目录).我尝试使用以下行更新我的web.config:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin\Debug" />
</assemblyBinding>
Run Code Online (Sandbox Code Playgroud)
但是,它仍然没有看到该目录.还有其他我想念的东西吗?