【发布时间】:2014-04-13 07:22:12
【问题描述】:
我有一个 C# 类库,它是一个大型网站的一部分。构建完成后,通过构建后事件命令行自动将生成的 dll 文件复制到 bin 文件夹:
copy $(TargetPath) "C:\MyWebSite\bin"
我的网站在 IIS 下运行,我想在单独的解决方案中调试我的类库。如何调试?
【问题讨论】:
-
请尝试使用“debug asp.net site in iis”之类的搜索,这将产生类似How do I attach the debugger to IIS instead of ASP.NET Development Server?的结果。 :)
标签: c# asp.net visual-studio