且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

SVN 和二进制文件

更新时间:2022-06-23 22:22:23

您另一个问题的答案表明您不要将任何生成的文件提交给 Subversion.bin 文件夹中的 DLL 通常作为应用程序的一部分构建,因此,它们应该重新生成而不是存储在 subversion 中.

The answers to your other question suggest you don't commit any generated files to subversion. DLLs in the bin folder are often built as part of the application, therefore, they should be regenerated rather than stored in subversion.

如果 DLL 是您没有源代码的 3rd 方 DLL,那么我会将它们存储在 subversion 中.您应该将重新创建应用程序所需的所有内容都放入 subversion 中.这意味着您的源代码和第 3 方库或程序.

If the DLLs are 3rd party DLLs for which you don't have the source code then I would store them in subversion. You should put everything in subversion that is needed to recreate the application. That means your source code and 3rd party libraries or programs.