I have solution TestName.sln(Class Library) which is built on Target Framework .Net Standard 2.0.
TestName.sln includes some dependencies 1,2 (includes its own packages), 3, from NuGet, look like a tree.
When I packed TestName.sln I got TestName.dll and I will want to use TestName.dll in SSIS 2017.
I added TestName.dll to Global Assembly Cache without any problem.
But when I try to use TestName.dll I see the classes only from TestName.sln and don't see the classes and can't use dependencies 1,2,3,4 which I included in TestName.sln.
What will I need to do in order to have all dependencies in one .dll file if possible? Or how I should link all dependencies to one for use in SSIS 2017?