Allow duplicate generic types in ILMerge
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 ve开发者_StackOverflowrsions of System.IObservable<T>
. How can I tell it to solve this conflict.
Thanks and regards, forki
Try the allowDup command-line option, see this article.
精彩评论