vote up 5 vote down star
2

I need a conditional compilation switch that knows if I am compiling for the mono or MS .NET runtime. How can I do this?

flag

50% accept rate

2 Answers

vote up 10 vote down check

The Mono compiler defines __MonoCS__

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:

bool runningOnMono = Type.GetType ("Mono.Runtime") != null;
link|flag
Understand the point but Mono has a lot of catching up to do in places, and there is no point penalising the MS build... Good tip though thanks – Frep D-Oronge Dec 2 '08 at 11:18
JOOI, what particular gaps in Mono are you working around? – Will Dean Dec 2 '08 at 19:38
vote up 1 vote down

@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...

link|flag
I'm not familiar with that attribute, but that still seems to me that the future presence or absence of the ViewStateModeById attribute is not something which directly correlates with the compiler which was used to compile your assemblies. But there's always MonoCS if it does... – Will Dean Nov 30 '08 at 18:07
@Will It will trigger a runtime failure when trying to load the assembly... :( But in general terms I agree with you, though it's not always possible... – Thomas Hansen Nov 30 '08 at 18:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.