How to deal with Git Submodules in Visual Studio solutions with different layout?

后端 未结 5 972
独厮守ぢ
独厮守ぢ 2021-02-15 07:09

We develop with Visual Studio 2010 (in C#) and migrated a while ago from SVN to GIT. Now we try to split up our repository (which is quite big - ~30.000 files) to many git repos

5条回答
  •  鱼传尺愫
    2021-02-15 07:27

    IF you go down the route of package management, consider OpenWrap. However, embedding the package management artefacts in source code is a bad idea. You can use such tools to update what is actually stored in submodules, but don't rely on them at build time. Expect the binaries to be there from the point of view of your build scripts.

提交回复
热议问题