[Mono-dev] Working out the stable branch/tag

2013-11-25 Thread Martin Thwaites
Is there a logic to how I would work out what the latest "Stable" branch is? What I mean by this is the branch that is considered to be "bug fix" only? Basically, I'm trying to workout what is the best source to compile for a production machine as I'm running ubuntu and don't want to stick with t

Re: [Mono-dev] List of referenced assemblies

2013-11-25 Thread Vassil Vassilev
Is there any obvious advantage of ilmerge over adding all relevant files when building that library. I.e expanding the references. I can afford that because in our home-grown cmake csharp module keeps track of the dependencies. Vassil On 11/25/2013 04:58 PM, Greg Young wrote: Search for "ilmer

Re: [Mono-dev] List of referenced assemblies

2013-11-25 Thread Greg Young
Search for "ilmerge" it can do this after the compilation. On Mon, Nov 25, 2013 at 5:27 PM, Vassil Vassilev wrote: > Hi, > Thanks for the answer. This seemed not to be the case with the M$ > compiler. I will double check today. > Is there any way to build 'fat libraries' (standalone) i.e to

Re: [Mono-dev] List of referenced assemblies

2013-11-25 Thread Vassil Vassilev
Hi, Thanks for the answer. This seemed not to be the case with the M$ compiler. I will double check today. Is there any way to build 'fat libraries' (standalone) i.e to tell the compiler to put everything that the library needs (of course not mscorlib) in the library itself? Cheers, Vassil

Re: [Mono-dev] List of referenced assemblies

2013-11-25 Thread Rafael Teixeira
That is the rule because the compiler need to know the details of the Interface that is defined A because it is being used publicly as your public class implements it. As assembly references aren't transitive you need to be explicit (to embed proper dependency versioning metadata) about which libr