How can we help you today? How can we help you today?
Paul.Martin
Yay for random bugs which fix themselves. Glad it is all working now. I've formally added the RunOnException to our tracker system (logged as SA-320), so hopefully you should have it back in one of the forthcoming versions. / comments
Yay for random bugs which fix themselves. Glad it is all working now. I've formally added the RunOnException to our tracker system (logged as SA-320), so hopefully you should have it back in one of...
0 votes
The option to use "Automatic reporting (without UI)" is mostly designed for use where a dialog box might not be appropriate, for instance a command line tool or a Windows service. / comments
The option to use "Automatic reporting (without UI)" is mostly designed for use where a dialog box might not be appropriate, for instance a command line tool or a Windows service.
0 votes
I've sent you a PM. No the field name managling shouldn't make any different in this case. / comments
I've sent you a PM. No the field name managling shouldn't make any different in this case.
0 votes
If you (or anyone else reading this forum) want it: There is a full list of all the 15 attributes you can apply in the SmartAssembly.Attributes.cs or SmartAssembly.Attributes.vb which are in the "Attributes" folder where you installed SmartAssembly ("C:\Program Files\Red Gate\SmartAssembly 5\Attributes" by default). DoNotObfuscateAttribute - Don't rename the element (class, method, field, etc) DoNotObfuscateTypeAttribute - Don't rename the type or any element within it (method, field, nested class, etc) ObfuscateToAttribute( string ) - Obfuscate the element to the name you specify ObfuscateNamespaceToAttribute( string ) - Obfuscate the namespace of the type to the name you specify DoNotPruneAttribute - Don't prune the element DoNotPruneTypeAttribute - Don't prune the type or any element within it. DoNotObfuscateControlFlowAttribute - Don't change the IL code within a method ObfuscateControlFlowAttribute - In the project setting page you can specify two different levels of control flow obfuscation. Methods with this attribute will have control flow obfuscation applied at the level you specify for "flagged" methods, other methods will have the standard level applied, unless they have [DoNotObfuscateControlFlow] applied. DoNotCaptureVariablesAttribute - Don't capture variable information for the Automatic Error reporting from this method DoNotCaptureFieldsAttribute - Don't capture field information for the Automatic Error reporting from this type DoNotSealTypeAttribute - Don't seal this class ReportExceptionAttribute - Effectively adds a try/catch/ReportException block to the method. This means that you only get the part of the stack trace between the error and this method in the Error Report. Benefit is that the stack is not fully unwound so that you can continue with the control flow in the calling method. DoNotEncodeStringsAttribute - Don't encode the strings in the element this is applied to. EncodeStringsAttribute - Do encode the strings in the element this is applied to. ExcludeFromMemberRefsProxyAttribute - Don't use Member Reference Proxy for this element. / comments
If you (or anyone else reading this forum) want it: There is a full list of all the 15 attributes you can apply in the SmartAssembly.Attributes.cs or SmartAssembly.Attributes.vb which are in the "A...
0 votes