【发布时间】:2014-09-29 15:01:11
【问题描述】:
尝试在 VS2010 Professional 中打开解决方案时,出现此错误:
The project type is not supported by this installation.
我已经查看了 this 线程,但似乎与我的具体情况无关。
当我在记事本中查看 csproj 时,它会显示:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<StartPageUrl>
</StartPageUrl>
<StartAction>CurrentPage</StartAction>
<AspNetDebugging>True</AspNetDebugging>
<SilverlightDebugging>False</SilverlightDebugging>
<NativeDebugging>False</NativeDebugging>
<SQLDebugging>False</SQLDebugging>
<ExternalProgram>
</ExternalProgram>
<StartExternalURL>
</StartExternalURL>
<StartCmdLineArguments>
</StartCmdLineArguments>
<StartWorkingDirectory>
</StartWorkingDirectory>
<EnableENC>False</EnableENC>
<AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
</Project>
提前致谢!
【问题讨论】:
-
我不知道那是什么项目。使用什么项目模板创建它?
-
我不知道该怎么说。谷歌搜索 GUID 后,它显示“Web 应用程序”。所以我假设用于创建它的模板是“ASP.NET Web 应用程序”
-
是的,这是其他人创建的。我解决了这个问题。我正在查看“projectName.csproj.user”(不确定那是什么)。我需要看的是“projectName.csproj”。然后它显示了所有
。我搜索的第一个是 MVC3。安装了 MVC 3 和 BOOM!问题解决了。谢谢你的时间。另外,我应该将其发布为我的问题的答案吗?不知道这方面的规则。
标签: c# asp.net visual-studio-2010 guid