0

I'm using BizTalk 2006 R2 and Visual Studio 2005. Occasionally, when I compile my solution, the IDE hangs indefinitely. No errors, no warnings, just goes into 'Not Responding' state and I have to kill the process and restart. Looking at the output, it is not happening at the same part of the compilation, it's seemingly random.

Does anyone have the same problem and know what it is? Alternatively, any good tools that I can use to diagnose what's going on?

4

1 回答 1

1

我也遇到了一个 BizTalk 解决方案进入无响应状态的问题(尽管这是 BizTalk 2010 和 Visual 2010)。当我运行来自Systeinternals * 的DebugView 时,我终于知道了为什么它会进入无响应状态。它表明它正在循环重复将一个项目添加到列表中进行编译。这使我能够找到一种解决方法(从解决方案中删除项目并在编译之前将其重新添加)。

  • 注意:这是一个很好的工具集,Microsoft 购买了它们并将其重命名为 Windows Sysinternals。将 DebugView 与 BizTalk CAT Interstrumentation Framework 一起使用可以进行一些非常好的调试。

编辑它看起来是拾取 Visual Studio 编译的 Capture Win32。启用后,我会看到类似

[5748] devenv.exe Information: 0 : 
[5748] Arranging the BTS modules in correct order 
[5748] devenv.exe Information: 0 : 
[5748] Adding module name Client.BT.Project.Orchestrations to the list 
[5748] devenv.exe Information: 0 : 
[5748] Sorting the list 
[5748] devenv.exe Information: 0 : 
[5748] List after sorting is 
[5748] devenv.exe Information: 0 : 
[5748]  Client.BT.Project.Orchestrations 
[5748] devenv.exe Information: 0 : 
[5748] Creating a module with the name Client.BT.Project.Orchestrations 
于 2013-10-09T19:53:44.497 回答