Is there a way to force MonoDevelop to build/load an assembly?
问题 I have a MonoTouch application which is managing a list of assemblies. I want developers to be able to modify that list of assemblies as easily as possible. I was hoping that I could just have them add an assembly to the application's references, and that I could then loop through them like this: foreach (AssemblyName assemblyName in this.GetType().GetReferencedAssemblies()) { Assembly assembly = Assembly.Load(assemblyName); //Do something with assembly } The problem that I'm having is that