vote up 0 vote down star
2

In all of my searching, I've only been able to find this one link that suggests the old CLR Profiler for .NET 2.0 should work with .NET 3.0 or 3.5 applications.

When I try and profile my .NET 3.5 SP1 WPF application with the CLR Profiler for .NET 2.0 it starts up my application just fine, but it throws up a dialog that says "Waiting for application to start common language runtime".

Since my application clearly uses the CLR, I can only conclude that the CLR Profiler for .NET 2.0 does not work with newer versions of the framework (maybe it's just a problem with 3.5 SP1 apps).

So, does anyone know if there is a version of the CLR profiler that works with 3.5 SP1? If there isn't a version of Microsoft's profiler, is there another free profiler that I could use that has similar functionality?

flag

1  
I think you're concluding wrong, not least because the CLR is unchanged between 2.0 and 3.5. :) – jalf Jun 28 at 21:22
@jaif - what about between 3.5 and 3.5 SP1? I'm able to reproduce this without fail. – unforgiven3 Jun 29 at 4:44

2 Answers

vote up 1 vote down check

I just tried running CLR Profiler with a WPF application, and it works fine. It takes a while for the application to start (longer than with non-WPF applications, it feels like), but it works.

Update: just to keep the answer up to date; according to the comments below, the solution was to run the CLR Profiler with administrative rights.

link|flag
I left my application running for nearly 20 minutes, waiting for the "Waiting for application to start common language runtime" message to go away. My app was up and running, I was interacting with it fine - my app clearly had started the CLR. What framework version was your WPF app targeting? – unforgiven3 Jun 29 at 4:48
1  
It's targeting .NET Framework 3.5. I did see a not somewhere that it needs to run with administrative rights (don't know if that was for WPF applications specifically). Did you try that? – Fredrik Mörk Jun 29 at 5:03
Good call on running it with administrative rights - that was all I needed! Thanks! – unforgiven3 Jun 29 at 12:29
vote up 2 vote down

The CLR used in 2.0 framework and 3.5 framework differs only by a service pack. The CLR has the version 2.0 and 2.0SP1 for the respective versions. The CLR profiler will work against the 2.0SP1 version of the CLR.

Small Correction: There is no 3.5 version of the CLR. The most recent versions are 2.0, 2.0SP1 and 2.0SP2 (associated with .Net Framework SP1).

link|flag
So the CLR Profiler works against the 2.0SP1 version of the CLR - how about against 2.0SP2? I'm assuming that's what ships with 3.5SP1 - at least thats what I'm gathering from your answer... am I wrong? – unforgiven3 Jun 29 at 4:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.