views:

212

answers:

1

Hi,

according to the ILMerge documentation it allows to merge assemblies with conflicting types. I'm trying to merge FSharp.Core.dll and System.Reactive.dll but I can't figure out the command line params for this.

ILMerge is complaining about the conflicting versions of System.IObservable<T>. How can I tell it to solve this conflict.

Thanks and regards, forki

+2  A: 

Try the allowDup command-line option, see this article.

Mauricio Scheffer
My problem is to specify the generic type System.IObservable<T>.
forki23
have you tried /allowDup:null as the article says?
Mauricio Scheffer
It worked with a simple /allowDup ;-)
forki23