Mike Barnett
Mike Barnett
I'm not sure why you are trying to merge in the framework assemblies themselves. Or did I misunderstand what your error was? Can you please post the results from running...
Thanks. Do you know if any of your input assemblies are using embedded interop types? If possible, run ILMerge on just the one input assembly 'HBT_FacturalElectronica.Entities' and see if you...
I'd be happy to look into it, but it would probably require that you make available to me the input assemblies and the command line you used for ILMerge. Sorry...
If you could post the log that ILMerge writes (when you specify the /log option), then that might help show what is wrong. If that type is public, then the...
Sorry, but I don't know anything about the Tasks thing. I would suggest using a command prompt and playing with ILMerge there until you can debug the problem. The /allowDup...
What happens if you run ILMerge on that assembly by itself? (Not that you would use the result, but just to see if it is a problem with that single...
Which .NET platform are you targeting? AWSSDK.S3.dll comes for: net35, net45, netstandard1.3, and netstandard2.0.
Yes, ILMerge merges the PDB files too, but is unable to deal with the new portable PDB format. So you would have to either generate an old-style PDB or else...
You need to provide the paths to all of the input (directly or indirectly referenced) assemblies. Please see Section 2.20 in the [manual](https://github.com/dotnet/ILMerge/blob/master/ilmerge-manual.md). If that doesn't fix it, then please...
Hmm, a recursive search path would probably have been a good idea! But you probably can just use the output directory of the projects that you are merging. I would...