在文本編輯器.sln文件和替換目前用VS2008版本指定VS2010第一行:
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
您還需要包含的項目從轉換回.NET 3.5 4.0。爲此,請在文本編輯器中打開.csproj,並替換4.0特定的設置。這裏的文件,它包含與替換值的設置部分:
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{455C90CF-CB4E-41FB-8DB8-04AD1B104F64}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GraphSharpDemo</RootNamespace>
<AssemblyName>GraphSharpDemo</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
打開你需要刪除一些缺失集的引用,因爲一些新的共同的DLL在4.0加入之後。
工作的一種享受,感謝您的幫助 – rik 2011-03-08 14:17:01