Forgive me if the answer seems obvious.
I created a Visual Studio solution and added two projects to it, one an f# Library (called MathLibrary) and the second, a c# frontend (called frontend, I'm aware of my creativity).
So I add a reference to the MathLibrary DLL in my frontend project, compiled the MathLibrary DLL (to make sure) and attempted to use it in my frontend project. At which point my compiler complained that it was an undefined reference. It was my understanding that adding the appropriate reference would allow me access to my DLL, but clearly I'm missing an important step.
Any help?