I'm on windows 8.1 using VS2012.
I am trying to follow http://www.mono-project.com/docs/advanced/embedding/ to embed the Mono CLR into a C project. After some issue, I have it compiling now. I used the .def file in the article: http://github.com/mono/mono/blob/master/msvc/mono.def Note that this file says: LIBRARY mono-2.0.dll
When I run it, I get an error that the mono-2.0.dll can not be located.
I have mono-3.2.3 installed and I don't see a mono-2.0.dll anywhere.
- What mono .dll implements the mono_xxx API (like mono_jit_init)?
- Do I need to set env-vars to have the mono folder known to the OS?
I am kind of worried that the document states that mono-2.0 is for older versions and 'mono' should be used - but mono.dll also does not exist...