tags:

views:

37

answers:

1

The fusion workshop explains about the .NET Framework Debugging Control .ini file setting. I think this is only for .NET. Is there any equivalence to mono for debugging control?

[.NET Framework Debugging Control]
GenerateTrackingInfo=1
AllowOptimize=0
A: 

Mono's documentation lists the DebuggableAttribute class that contains these attributes. DebuggableAttribute is linked to from this MSDN article which describes creating an ini file using the exact settings you mention above.

So Mono appears to let you query these values at runtime, although I cannot confirm whether Mono will support the ini file approach. Have you tried testing it?

Justin Ethier