I need a conditional compilation switch that knows if I am compiling for the mono or MS .NET runtime. How can I do this?
|
|
The Mono compiler defines BUT, BUT, BUT, the whole point of Mono is that you can take an assembly that you built with VS and run it on Mono, or vice versa. It seems to me that if you need to have Mono vs MS.NET differences, then you need to be making those decisions at run-time. The standard way to detect Mono at Runtime is:
|
||||
|
|
|
@Will Dean You occasionally need to use conditionally compilations. E.g. Mono doesn't support the attribute; ViewStateModeById which triggers a runtime failure if you've tagged a class with it. So what you're saying is not completely accurate... |
||||
|
