Best way to structure a repository in Subversion for Visual Studio projects?

后端 未结 6 446
难免孤独
难免孤独 2020-12-20 12:58

I have a few C# .dll projects which are common to many applications. Currently, I have one big repository. I have each DLL stored as a separate project within

6条回答
  •  春和景丽
    2020-12-20 13:26

    I store everything in the repository to make it easy for developers (or rebuilt devboxes) to check-out from SVN and then run a build (with all necessary assemblies in relative paths). If you have multiple projects that should be separate, this would also encourage the team of your shared components to deliver high quality assemblies. This could follow a normal release to production mentality where the shared assemblied would be updated in your downstream projects. This is a very natural Software Value Chain, at the cost of a little bit of disk space.

    JP Boodhoo has a great series on the topic of automated builds, VS folder structure, and getting developers up and running quickly.

提交回复
热议问题