Where do you put your 3rd party libraries?

后端 未结 7 1683
悲哀的现实
悲哀的现实 2021-02-05 05:38

I\'ve got a bunch of .dll assemblies, such as HtmlAgilityPack and MoreLinq. Where am I supposed to put these files? I usually toss them so

7条回答
  •  自闭症患者
    2021-02-05 05:46

    In a folder UNDER your solution directory, e.g. "external" or "library". That way your continuous integration system (or other team members) can do a pull of one root from your source control system and have everything they need.

    In SVN, use svn:externals to pull that directory from a different root so you can easily share library DLLS (and library projects) between solutions.

提交回复
热议问题