问题描述
我下载了Visual Studio项目,但无法在我的Visual Studio 2010副本中打开它.无用的错误消息:
I downloaded a Visual Studio project but I can't open it in my copy of Visual Studio 2010. Useless error message:
打开项目类型需要什么软件?没有说
What software do I need to open the project type? It doesn't say.
我实际上去阅读了.csproj
文件,它告诉我它是项目类型
I actually went and read the .csproj
file, it tells me it's project type
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
我想从这个随机字符串中识别出我需要什么软件吗?这绝对是荒谬的.
Am I meant to recognise what software I need from this random string? This is absolutely ludicrous.
推荐答案
我发现 a该网站列出了一些已知的Visual Studio 2008项目类型GUID .
-
FAE04EC0-301F-11D3-BF4B-00C04F79EFBC
看起来像Windows C#项目(可能是类库项目?) -
786C830F-07A1-408B-BD7F-6EE04809D6DB
似乎是便携式图书馆项目
FAE04EC0-301F-11D3-BF4B-00C04F79EFBC
looks like a Windows C# project (probably a Class Library project?)786C830F-07A1-408B-BD7F-6EE04809D6DB
appears to be a Portable Library project
我同意,期望开发人员理解GUID代表的项目类型是疯狂的,但是无论谁提供了您下载的代码,都可能表明需要构建它!
I agree that it's crazy to expect a developer to understand the project type represented by a GUID but whoever supplied the code you downloaded could have indicated what was required to build it!
这篇关于Visual Studio项目类型向导的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!