Let's say I started a C # project under Windows (Visual Studio 2008), and I want to switch to Mono. Do I need to recompile all the dependencies that my project uses, for example, NHibernate and each individual external dependency?
Note 1: The reason I asked this question is because I built a project with MonoDevelop on Ubuntu 9.10 and everything went like a charm, but when I tried to debug the start of some tests written using NUnit, everything just froze. I need to cancel the current test in order to get a backup of MonoDevelop, and there is no clear stack trace or tooltip that I could use to find the problem. Therefore, although, perhaps, I will need to compile NHibernate (and other dependencies) on Mono / Linux.
source
share