Not sure if this is the correct place for this but here it goes. How can I reference dlls inside of custom packages.
├── package.json
├── Editor
│ ├── Unity.MyPackage.Editor.asmdef
│ └── Foo.cs
├── Runtime
│ ├── Unity.MyPackage.asmdef
│ └── Bar.cs
├── Assemblies
. └── ThirdParty.dll
My package structure is something like this and I would like to access the ThirdParty.dll in Foo.cs and Bar.cs but i’m at a complete loss on how to achieve this.
Any pointers are greatly appreciated!

