问题描述
你好
我目前收到一个用Visual Studio 2010构建的C项目,我必须从头开始构建另一个相同类型但在Visual Studio 2015中内容不同的项目.
I currently received a C project built in Visual Studio 2010 and I have to build from scratch another one of the same type but with different content in Visual Studio 2015.
我当前面临的问题是我不知道项目类型.我在互联网上搜索了找出类型的可能方法,然后找到的解决方案是检查项目的GUID.这样做并寻找它,但是问题 是我找不到Visual Studio GUID列表中的项目与GUID的匹配项.
The problem that I am currently facing is that I don't know the project type. I had searched on the internet for possible ways to find out the type, and the solution I found was to check for the GUID of the project. Did that and looked for it, but the issue is that I can't find a match for the GUID of the project with any from the Visual Studio GUIDs list.
这是我的项目中的GUID:
Here is the GUID from my project:
< ProjectGuid> {0E2B0DBA-E7C7-4A2C-9E4F-869ECA8FD578}</ProjectGuid>
<ProjectGuid>{0E2B0DBA-E7C7-4A2C-9E4F-869ECA8FD578}</ProjectGuid>
有什么想法吗?
预先感谢!
推荐答案
>>我找到的解决方案是检查项目的GUID.这样做并进行了查找,但是问题是我找不到与Visual Studio GUID列表中的任何项目相匹配的项目的GUID.
>>the solution I found was to check for the GUID of the project. Did that and looked for it, but the issue is that I can't find a match for the GUID of the project with any from the Visual Studio GUIDs list.
我们可以在.csproj文件中找到PorjectGuid和ProjectTypeGuid,就像下面的WPF项目一样.
We could find the PorjectGuid and ProjectTypeGuid in .csproj file, just like the following WPF project.
但是C ++的GUID类型不在.vcxproj文件中,而是在.sln文件中,请参考以下屏幕截图:
But the guid type of C++ is not in .vcxproj file, it was in .sln file, please refer to the following screenshot:
此致
奥斯卡
这篇关于Visual Studio项目类型GUID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!