I'm am really unfamiliar with build output, nuget packages, dll hell, library dependencies, etc.
Before adding this NuGet package to my class library, only one DLL is produced in the /bin folder after I build.
After adding the NuGet package, I get over 100 dlls in the /bin folder.
Is there is a way to only produce one DLL for a c# class library?
When I need to call my class library from a legacy application, I have to copy ALL the dlls in my class library build output to avoid errors - which is somewhat cumbersome.
This is my .csproj:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Intacct.SDK" Version="2.0.5" />
</ItemGroup>
</Project>