The project type is not supported by this installation


從網上下載了asp.net mvc項目代碼,結果打開是web application就是家在失敗,錯誤信息為:

Microsoft Visual Studio
---------------------------
The project file 'E:\Suteki.Shop.csproj' cannot be opened.

The project type is not supported by this installation.

 

Microsoft Visual Studio
---------------------------
無法打開項目文件'E:\Suteki.Shop.csproj'。

此安裝不支持該項目類型。

原因是asp.net mvc升級了項目模板。

打開項目文件csproj: 

  1. <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">  
  2.   <PropertyGroup>  
  3.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>  
  4.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>  
  5.     <ProductVersion>9.0.30729</ProductVersion>  
  6.     <SchemaVersion>2.0</SchemaVersion>  
  7.     <ProjectGuid>{F63A91D4-3A6C-4729-BE83-D6CB45A53EF3}</ProjectGuid>  
  8.     <ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>  
  9.     <OutputType>Library</OutputType>  
  10.     <AppDesignerFolder>Properties</AppDesignerFolder>  
  11.     <RootNamespace>Suteki.Shop</RootNamespace>  
  12.     <AssemblyName>Suteki.Shop</AssemblyName>  
  13.     <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>  
  14.     <MvcBuildViews>false</MvcBuildViews>  
  15.   </PropertyGroup>  

把 

    <ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>

替換為:

<ProjectTypeGuids>{F85E285D-A4E0-4152-9332-AB1D724D3325};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM