include project dependencies inside dll
Hi, I want to be able to use my class library inside other project with only the output dll
6 Replies
either use the visual studio dialog for adding a dll reference, or correctly put it into an ItemGroup. like the other references.
ideally you wouldn't use a dll reference, of course...
no way to just merge it into my library dll?
I want to do something similer to this
this engine use packages like assimp and silk.NET but dose not include it in the project
You can't "merge" libraries (you can but really shouldn't)
You can include the dll as a reference fine
So what engines like this one do?