Intellitrace 未收集进程 'XXX.vshost.exe' 的数据
Intellitrace is not collecting data for process 'XXX.vshost.exe'
最近,我转向了 Visual Studio 2013 Ultimate,因为我听到很多关于 IntelliTrace 功能的好消息。但这对我不起作用。我创建了简单的控制台应用程序并将其配置为 "Any Platform"。该应用程序没有做任何特别的事情。它只是从 Main 方法调用私有方法 "Display"。
class Program
{
static void Main(string[] args)
{
Display(10);
}
private static void Display(int i)
{
Console.WriteLine(i);
}
}
调试此应用程序时,intelliTrace 显示以下消息。
IntelliTrace is not collecting data for process 'XXX.vshost.exe'
The project type may not be supported or the process you are debugging
may have been either attached to or launched with IntelliTrace
disabled. Restarting the debugging session within Visual Studio may
solve this. Please note that IntelliTrace is not supported when
attaching to a process that is already running.
If you have selected a custom location for IntelliTrace recordings,
please make sure it is writable by the process being debugged.
我已经检查了邮件中的每个条件。
我在开始调试之前启用了 IntelliTrace。它被配置为 "IntelliTrace events and call information".
我没有附加到已经 运行 的进程。我开始
在 Visual studio (F5).
中调试
我是 运行 Visual Studio 管理员。
我也试过使用自定义位置进行录音。但问题依然存在。
所有应用程序都会出现这种情况(使用从 Web 下载的几个 intelliTrace 演示应用程序进行测试)
我正在使用 Windows 8.
谁能指点一下?
它在禁用 Visual Studio 托管进程调试后开始为我工作。这可以通过取消选中 Project>Project Properties>Debug>Enable Debuggers>Enable Visual Studio Hosting Process 来完成。
Sambhaji 的回答并没有为我解决这个问题,但是这个解决了 - 在 Intellitrace 选项下,然后是高级,我检查了 "Store IntelliTrace recordings in this directory:"。然后它开始工作。如果不检查,我会收到上面的错误消息。
我也卸载并重新安装了 VS2013,但没有解决问题。我不知道发生了什么,但我怀疑安装 VS2015RC 对它有影响,因为它过去工作得很好。
最近,我转向了 Visual Studio 2013 Ultimate,因为我听到很多关于 IntelliTrace 功能的好消息。但这对我不起作用。我创建了简单的控制台应用程序并将其配置为 "Any Platform"。该应用程序没有做任何特别的事情。它只是从 Main 方法调用私有方法 "Display"。
class Program
{
static void Main(string[] args)
{
Display(10);
}
private static void Display(int i)
{
Console.WriteLine(i);
}
}
调试此应用程序时,intelliTrace 显示以下消息。
IntelliTrace is not collecting data for process 'XXX.vshost.exe'
The project type may not be supported or the process you are debugging may have been either attached to or launched with IntelliTrace disabled. Restarting the debugging session within Visual Studio may solve this. Please note that IntelliTrace is not supported when attaching to a process that is already running.
If you have selected a custom location for IntelliTrace recordings, please make sure it is writable by the process being debugged.
我已经检查了邮件中的每个条件。
我在开始调试之前启用了 IntelliTrace。它被配置为 "IntelliTrace events and call information".
我没有附加到已经 运行 的进程。我开始
在 Visual studio (F5). 中调试
我是 运行 Visual Studio 管理员。
我也试过使用自定义位置进行录音。但问题依然存在。
所有应用程序都会出现这种情况(使用从 Web 下载的几个 intelliTrace 演示应用程序进行测试)
我正在使用 Windows 8.
谁能指点一下?
它在禁用 Visual Studio 托管进程调试后开始为我工作。这可以通过取消选中 Project>Project Properties>Debug>Enable Debuggers>Enable Visual Studio Hosting Process 来完成。
Sambhaji 的回答并没有为我解决这个问题,但是这个解决了 - 在 Intellitrace 选项下,然后是高级,我检查了 "Store IntelliTrace recordings in this directory:"。然后它开始工作。如果不检查,我会收到上面的错误消息。
我也卸载并重新安装了 VS2013,但没有解决问题。我不知道发生了什么,但我怀疑安装 VS2015RC 对它有影响,因为它过去工作得很好。