Is there any process-attachable .NET profiler available?
The problem faced is that I am currently wanting to profile an online-only ClickOnce application, which cannot be started any other way other than the website. Anybody have any ideas?
Thanks开发者_运维问答,
Kyle
Did you try Yourkit?
You can use windbg + sos extension as well. It can be attached to a process.
ProfileSharp is an open source .NET code profiler which can attach to a process. However it is not tested for profiling applications with versions above .NET 2.0
Here is the code : http://www.koders.com/info.aspx?c=ProjectInfo&pid=EVXCMGMDSWZ1GSY2RW1EFHVF3A [Not yet hosted on github or sourceforge but should be there any time sooner]
If you can look at the code and update it, you can make it work for applications built with versions above .NET 2.0
[Hint: I am on the ProfileSharp Team]
Try CLR Profiler by Microsoft. Free Download.
精彩评论