Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Including 3rd party code as source vs dll

Tags:

c#

There is a Github project for a C# library that I'd like to use. Is it more conventional to include the source as a separate project in my Visual Studio solution and build the dll as part of the regular compilation process, or to build a dll separately and include just that in my project reference?

like image 312
user1807002 Avatar asked Dec 30 '25 00:12

user1807002


1 Answers

Unless you need to modify the source, use a DLL. Don't forget to mention the license and the source repository location (home of the Github project)

like image 135
lstern Avatar answered Jan 01 '26 12:01

lstern