You have a solution with one C# project in it. SomeComp.Framework is the name. You add a F# project to the solution. You reference the SomeComp.Framework project in the F# project. You insert a script file - test.fsx into the F# project. What is the correct way to reference the C# assembly in the script file?
#r "SomeComp.Framework.dll" // doesn t work
Is there some way to do this without hardcoding a path? Does the .fsx file get any settings/properties from being located inside a F# project?