VS2010无法打开NuGet的Web项目的解决方法

今天下载了NuGet的源代码,用Visual Studio 2010打开时,有两个项目(Server和VsExtension)无法加载,加载时出现错误提示:

The project type is not supported by this installation.

解决方法是:

编辑这两个项目的Server.csproj和VsExtension.csproj文件,将<ProjectTypeGuids>改为:

<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
原文地址:https://www.cnblogs.com/dudu/p/1963402.html