I have a dot net Framework 4.6.1 Winforms solution that contains a .Exe project and a .DLL project.
I want to reference a .Net Standard library Xero.APi.SDK.Core(1.1.1) from inside the Framework DLL project
However when I try to run my .Exe I get a FileNotFoundException
This is because some of the DLLs used by the .Net Standard library have not copied over to the bin\debug folder where the .exe is located.
If I add the .Net Standard library to the .Exe project then the files do copy correctly.
Why do I need to reference the .net standard files in the Framework .exe project as well as the Framework .dll project ?