c – .vcxproj在源代码控制中

前端之家收集整理的这篇文章主要介绍了c – .vcxproj在源代码控制中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在阅读很多有关vcxproj文件是否应添加到源代码控制的问题.共识似乎是他们应该,但是当打开文件时,我注意到包含很多用户特定的路径.

看到这是一个正在由许多人工作的项目,我还应该将其添加到源代码管理?它似乎会与其他人的设置相冲突.

解决方法

当然,他们需要添加到源代码控件,.vcxproj是项目文件.报价 MSDN

Project files no longer use the .vcproj file name extension. Visual
Studio automatically converts project files that were created by an
earlier release of Visual C++ to the format that is used by the
current system. For more information about how to manually upgrade a
project,see /Upgrade (devenv.exe).

In the current release,the file name extension for a project file is
.vcxproj.

另一方面,.vcxproj.user文件不需要添加到源代码控制.上面的链接描述了这些文件中包含的内容.

原文链接:https://www.f2er.com/c/110368.html

猜你在找的C&C++相关文章