Activity overview
Latest activity by AdamsGuitar
I discovered the issue. While the problem still baffles me, it does not appear to be related to the profiler. When I tried running my application alone (i.e. not attached to the VS debugger or to the profiler), I have the same issue, but the application works fine in the debugger. It has something to do with parsing the XAML in a style file that I've included.
If anyone is interested in reviewing the problem (again, not related to the profiler), you're welcome to have a look here: http://stackoverflow.com/questions/8299 ... o-debugger
FWIW, Once I comment out the offending style definitions, the profiler can attach and function normally. Thanks for your help! / comments
I discovered the issue. While the problem still baffles me, it does not appear to be related to the profiler. When I tried running my application alone (i.e. not attached to the VS debugger or to t...
Chris.Allen wrote:
Can I just check- does this happen with all profiling modes - have you tried sampling mode too?
It does; I've tried all of the modes in the dropdown and they all produce the same error.
I notice that it lists a FileNotFoundException for System.Windows.Interactivity.dll earlier in the timeline before it lists the XamlParseException shortly before the profiling session terminates. The odd thing is that the assembly is present and installed (and, I'm fairly certain, in the GAC; I'll have to check when I get back to work shortly, though) and the application runs perfectly fine from within the VS debugger. / comments
Chris.Allen wrote:
Can I just check- does this happen with all profiling modes - have you tried sampling mode too?
It does; I've tried all of the modes in the dropdown and they all produce the...
Performance Profiler Causes XamlParseException
I'm attempting to evaluate the Performance Profiler, and I'm using it on my WPF client application. Whenever I launch a session for my application (whether from within the Performance Profiler appl...
JDelekto wrote:
I wonder what would happen if they allow the community to download a current version 6 with the 'forced upgrade' removed. It would probably make the community ecstatic..
Considering the fact that so many people on here have expressed that very thought, it seems like a pretty safe bet. / comments
JDelekto wrote:
I wonder what would happen if they allow the community to download a current version 6 with the 'forced upgrade' removed. It would probably make the community ecstatic..
Consi...
scottt732 wrote:
sergiopereira wrote:
Right now I'm hoping MS wakes up to the importance of Reflector in .NET and realizes they have a severe gap in the SDK without Reflector. I hope they either acquire this software and include in the SDK or create something similar.
If you think this capability would be more affordable under MS, please keep in mind that IntelliTrace, one of the cooler features of VS2010, is only available in the $11,899 Ultimate SKU. That's more than double the premium price, and almost 15x the professional price. I definitely don't see them buying Reflector and giving it away for free in the SDK.
-Scott
Not to get off-topic here, but I think a more reasonable comparison would be what MS did with the SysInternals tools (Process Explorer, et. al.), which are still free and have actually improved under MS' oversight. / comments
scottt732 wrote:
sergiopereira wrote:
Right now I'm hoping MS wakes up to the importance of Reflector in .NET and realizes they have a severe gap in the SDK without Reflector. I hope they eit...
mat wrote:
Unobfuscation could be considered circumvention of copy protection, which could land Red Gate in very hot water. Aint gonna happen.
There's a difference between unobfuscation (which, realistically, is not possible without something that can "know" what the code is doing in a larger context) and not crashing on valid input. The very purpose of obfuscation is to produce code that is semantically (and usually, if not always, syntactically) the same as the original code, but with the meaningfulness of the names removed, and often using identifiers that are legal in IL but not in other languages.
Even if the identifiers are illegal in the language, there's no technical reason that Reflector needs to crash when they are so. It just won't be producing code that you can slap into VS and compile, which shouldn't be a problem for anyone using Reflector to figure out what's going on. / comments
mat wrote:
Unobfuscation could be considered circumvention of copy protection, which could land Red Gate in very hot water. Aint gonna happen.
There's a difference between unobfuscation (whic...