Share the CS file with two different projects using Visual Studio 2010 and Subversion

We are moving from SourceSafe to Subversion as our source code management provider ... Everything is going well so far, except I can understand how you โ€œshareโ€ the file between several projects. In sourcesafe, you made a link to a file and then added it to your project, then the security source knew that the file was really just one file. How do you do the equivalent with Subversion?

+6
source share
2 answers

You can add the file as a link directly in Visual Studio.

Doing this means you donโ€™t have to worry about how your control source will manage things, as long as the specified file is in the original control - the link is controlled by VS.

+20
source

Do you want to share CS (as in the code file) between two projects? From a design point of view, why not extrapolate this file to your own project, and then reference this project from other projects.

0
source

Source: https://habr.com/ru/post/895620/


All Articles