我应该将 .testsettings 和 .vsdmi 文件提交到存储库吗?
我通常不会将不必要的文件(例如 .user
和 .suo
文件)提交到存储库。 我不确定 .testsettings
和 .vsdmi
文件是否由 Visual Studio 重新生成(如果不存在)。
I usually don't commit unnecessary files, such as .user
and .suo
files, to the repository.
I'm unsure about whether .testsettings
and .vsdmi
files are regenerated by Visual Studio if absent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,您应该提交这些文件,因为它们包含项目的 Visual Studio 单元测试和代码覆盖率设置。
Yes, you should commit those files as they contain Visual Studio unit testing and code coverage settings for the project.
我找到了 相反意见在研究这个问题时。老实说,我有点困惑,因为链接中的人说得很有道理。
编辑:更新了 archive.org 版本的链接,因为原始帖子似乎已死。
I found a contrary opinion while researching this. To be honest I'm a bit torn as the fellow in the link makes a good bit of sense.
EDIT: Updated link to archive.org version, as the original post seems to be dead.
我在这里进行了测试,发现虽然这些文件在运行测试时不会重新生成,但它们不会丢失。
我遇到的唯一错误是,当我尝试打开它们时,它会显示一个错误消息框。
我想从现在开始我会让它们接受源代码控制。
I tested here and I found out that while those files aren't regenerated while running tests, they aren't missed.
The only error I ran into with their absention was that when I try to open them it shows an error message box.
I think I will commit them to source control from now on.
绝对可以。
它们包含测试执行设置、测试列表等。因此,它们是项目不可或缺的一部分,就像 App.config 一样。
托马斯
Absolutely.
They contain test execution settings, test lists etc. As such, they are an integral part of your project, just like e.g. App.config.
Thomas