开发者

Adding 3rd party libraries to Visual Studio source control

开发者 https://www.devze.com 2023-01-17 09:39 出处:网络
This is a problem that has been eating at me for a while, and I just haven\'t found a good solution (no pun intended) for it.

This is a problem that has been eating at me for a while, and I just haven't found a good solution (no pun intended) for it.

I'm using Visual Studio 2010 with Subversion and Ankhsvn. It works very well, however, my biggest problem with it is that it only retrieves and manages files that are "included in the project". This is great in many situations, but kind of sucks when you want a folder with objects that you want to include in the solution, but do not want to have in the project itself (in this case a web project).

In this case, I want to include some 3rd party DLL's into source control (so they can be kept up to date when syncronizing with version control). I don't want the developers to have to install the 3rd party dll's seperately. What normally happens is that you reference the DLL's from some other location and they get copied into your bin folder at compile time.

I do not wish to include them in the project because i don't wan them copied to the web server when I publish the site (other than via the bin directory where they should be). I thought of creating a seperate project for these, but that would create a useless dll with no purpose that would then get copied to the bin folder because it's referenced.

I've also tried to check them in from the bin folder, but this has caused a number of problems where files did not syncronize prolerly, with subversion saying things about an already version folder being present etc.. This seems to be a subversion or ankhsvn problem rather than a visual studio one. As such, i try to keep the bin folder untouched by version control.

How have you solved th开发者_JS百科is problem in your projects?


This is how we do it in our project.

Adding 3rd party libraries to Visual Studio source control

We have a SourceCode folder which has the subfolders for the projects which contain the code.

Additionally this has a folder called Library which has the correct version of any 3rd party dll's that we use. This folder in in version control and hence everyone always has the correct version of the 3rd party dll's

All references in the projects to 3rd party dll's are relative from this Library folder.

Since everyone has the SourceCode folder on their machine, it works fine with no issues.

EDIT: Added image of Solution Folder with library contents to it

Adding 3rd party libraries to Visual Studio source control

0

精彩评论

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

关注公众号