Activity overview
Latest activity by TheZMan
Any way to trigger bookmarks from code?
I'm trying to profile a game and I would love to get a bookmark for specific part of the code. Even per frame would be awesome.
In memory profiler there's a trigger API but I can't find anything in...
Solution found..
After googling I came across this which sounded very like my problem http://documentation.red-gate.com/displ ... arent+code
I removed
[assembly: AllowPartiallyTrustedCallers]
from the gzip source and now line level timing works / comments
Solution found..
After googling I came across this which sounded very like my problemhttp://documentation.red-gate.com/displ ... arent+code
I removed
[assembly: AllowPartiallyTrustedCallers]
from t...
I rolled back to 7.3 and when line profiling is enabled I get a crash at the same point:
System.Security.VerificationException was unhandled
HResult=-2146233075
Message=Operation could destabilize the runtime.
Source=Ionic.Zip (x86)
After installing 8.3 again I now get the VerificationException instead of the TypeInitializationError - but its in the same line of code. The Constructor for GZipStream.
The Exception Helper asks:
""Make sure your application is not loading two conflicting versions of a class library." http://msdn.microsoft.com/query/dev10.q ... RIFICATION);k(DevLang-CSHARP)&rd=true
There are 2 versions of GZIP in 2 different DLLs. One is private and only used internally so there should not be a conflict and the game runs just fine without the profiler and even with method level timings turned on.
Any ideas what line-level timing is doing to cause this crash? / comments
I rolled back to 7.3 and when line profiling is enabled I get a crash at the same point:
System.Security.VerificationException was unhandled
HResult=-2146233075
Message=Operation could destabilize ...
Well I rolled back 8.3 to 7.3 and stil get the crash when I enable line based profiling. So don't need access to 8.0 any more.
It doesn't let me delete my posts though... (and sorry for the duplicate) / comments
Well I rolled back 8.3 to 7.3 and stil get the crash when I enable line based profiling. So don't need access to 8.0 any more.
It doesn't let me delete my posts though... (and sorry for the duplicate)
Where can I download 8.0
As I explained in my other post line based profiling seems to have stopped working for me after the 8.3 upgrade
I want to see if it was the upgrade or something else since its been a few months sin...
VerificationException only when profiling in LINE mode
I've profiled our game many times with ANTS though it has been using 8.0 so I am not sure if this is related to the 8.3 upgrade or changes we have made.
The game runs perfectly in DEBUG/RELEASE and...