visual studio project files

后端 未结 1 2058
悲哀的现实
悲哀的现实 2021-02-05 01:54

What is the difference between a .vcproj and a .vcxproj Visual Studio project file? Is the .vcproj format only available in ve

1条回答
  •  死守一世寂寞
    2021-02-05 02:04

    Build System Changes

    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).

    The MSBuild system is used to build Visual C++ projects. However, in Visual Studio 2008 and earlier releases, the VCBuild system was used. Certain file types and concepts that depended on VCBuild either do not exist or are represented differently in the current system.

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

    Here is your answer: it has been changed from .vcproj to .vcxproj

    0 讨论(0)
提交回复
热议问题