c# How to add a reference from source code to my project

后端 未结 2 1924
走了就别回头了
走了就别回头了 2021-01-27 21:21

Hi I have a simple question, which i can not answer by myself. There is a project on codeplex:

https://triangle.codeplex.com/releases/view/97021

I downloaded t

相关标签:
2条回答
  • 2021-01-27 21:36

    you can open the Triangle solution,

    Build it, and then right click on the solution in visual studio --> open folder in file explorer --> go to Triangle/Bin/Debug where you will find the triangle.dll --> copy paste it in your solution bin/debug folder and then import the dll as add reference to your project.

    HK

    0 讨论(0)
  • 2021-01-27 21:46

    Add a library project with the downloaded code to your solution. Then reference it in your own project, and voilà !

    Otherwise build the downloaded code as library project and reference the built dll in your own project.

    0 讨论(0)
提交回复
热议问题