My project is of type "Class library" and has a reference to "Newtonsoft.Json". I would like to have one single DLL as output so that other consumers only have to exchange one DLL. Right now, the project builds to two single DLLs.
I have set "Embed Interop Types" to "True" for "Newtonsoft.Json" which resulted in an error ("Cannot embed interop types because it is missing either the 'ImportedFromTypeLibAttribute' attribute or the 'PrimaryInteropAssemblyAttribute' attribute..").
I have also found many other posts regarding this problem, but most of these posts were about including DLLs in a .exe which I do not have.
How can I merge both DLLs?