how to add third party dll reference to F# project?

后端 未结 3 1792
猫巷女王i
猫巷女王i 2021-02-19 18:14

I\'m adding a third party dll reference to my F# project. I added the dll in references and when I use this i.e highlight the code and do Alt+Ent, I get the error \"The namespa

3条回答
  •  日久生厌
    2021-02-19 18:53

    In my case my F# project was referencing a C# DLL but I had the same issue, "The namespace or module 'MyModule' not defined", when doing "open MyModule".

    The solution was to edit the settings to use the same framework (one was using 4.5 and the other 4.0).

提交回复
热议问题