使用带有silverlight的visual studio 2010性能分析器

时间:2010-04-23 21:59:50

标签: visual-studio silverlight performance visual-studio-2010

如何在Silverlight中使用visual studio 2010性能分析器?

2 个答案:

答案 0 :(得分:0)

肯定是可能的 - 虽然不是直接通过用户界面(虽然这种“有点工作”我不建议它用于一致的结果)。一般要点是遵循以下步骤:

  1. 以管理员身份打开Visual Studio(2010)命令提示符
  2. VSPerfClrEnv / sampleon
  3. VSPerfCmd -start:sample -output:somefile.vsp
  4. VSPerfCmd -globalon
  5. VSPerfCmd -launch:“c:\ Program Files(x86)\ Internet Explorer \ iexplore.exe”-args:“”
  6. VSPerfCmd -shutdown
  7. VSPerfClrEnv / off
  8. 在这个例子中,我存储了一个名为“somefile.vsp”的VSP(Visual Studio Profile),它描述了一个IE会话(当IE打开时,导航到你的SL项目)。

    您必须确保禁用IE的多进程模式,并且从包含DLL和PDB的目录中打开VSP(以便探查器可以找到它们) - 我建议将VSP与Visual Studio关联。 / p>

    更多信息(包括故障排除等)可以在(免责声明)我的博客上找到:http://www.nachmore.com/2010/profiling-silverlight-4-with-visual-studio-2010/

答案 1 :(得分:0)