Comments
Sort by recent activity
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)
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 ...
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...