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

后端 未结 3 1790
猫巷女王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 19:05

    for some things you can call them directly by name with no path

    #r "EnvDte"
    

    works for vs2013 here for instance

提交回复
热议问题