开发者

Best place to put third-party DLLs for referencing

开发者 https://www.devze.com 2023-01-29 20:46 出处:网络
I\'m working on a project that is stored in SVN. The project has a dependency on a third-party DLL, so it will need to have a reference to that DLL.

I'm working on a project that is stored in SVN. The project has a dependency on a third-party DLL, so it will need to have a reference to that DLL.

Where is the best place to store this DLL so that anyone who opens the project 开发者_JAVA技巧from SVN can compile it?


Usually I create a lib subfolder to the root and place all third-party assemblies there. Then all the projects reference the assemblies from this location. That way the project is self-contained and the third-party assemblies are versioned along with the source code.

0

精彩评论

暂无评论...
验证码 换一张
取 消