2012-05-15 31 views
1

我試圖在VS10,VS11和MonoDevelop3之間向前和向後移動很多代碼,目前很多。將可移植類庫項目.csproj文件從版本2(測試版)轉換回到版本1

看來,MonoDevelop3對PCL1有一些初始支持,但VS10和VS11現在都使用PCL2(Beta) - 因爲我將VS11安裝在與VS10相同的PC上。

爲了允許MonoDevelop3加載這些PCL2(Beta)項目,我試圖手動操作PCL項目。

看起來這不像改變.csproj XML文件中的TargetProfile那麼簡單 - 似乎需要更多...但我無法弄清楚什麼。

有誰知道PCL2和PCL1之間的確切區別是什麼?或者我可能會手動轉換PCL2項目文件,以便它們可以加載到MonoDevelop中?

感謝

斯圖爾特

一個例子PLP2項目文件看起來有點像:

<?xml version="1.0" encoding="utf-8"?> 
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 
    <PropertyGroup> 
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 
    <ProjectGuid>{B6E27475-E7D0-448C-A5CC-5097DCA1E2DD}</ProjectGuid> 
    <OutputType>Library</OutputType> 
    <AppDesignerFolder>Properties</AppDesignerFolder> 
    <RootNamespace>Cirrious.MvvmCross</RootNamespace> 
    <AssemblyName>Cirrious.MvvmCross</AssemblyName> 
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 
    <TargetFrameworkProfile>Profile104</TargetFrameworkProfile> 
    <FileAlignment>512</FileAlignment> 
    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> 
    </PropertyGroup> 
    <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 
    <DebugSymbols>true</DebugSymbols> 
    <DebugType>full</DebugType> 
    <Optimize>false</Optimize> 
    <OutputPath>bin\Debug\</OutputPath> 
    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    <ErrorReport>prompt</ErrorReport> 
    <WarningLevel>4</WarningLevel> 
    </PropertyGroup> 
    <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 
    <DebugType>pdbonly</DebugType> 
    <Optimize>true</Optimize> 
    <OutputPath>bin\Release\</OutputPath> 
    <DefineConstants>TRACE</DefineConstants> 
    <ErrorReport>prompt</ErrorReport> 
    <WarningLevel>4</WarningLevel> 
    </PropertyGroup> 
    <ItemGroup> 
    <Reference Include="System" /> 
    <Reference Include="System.Core" /> 
    <Reference Include="System.Windows" /> 
    </ItemGroup> 
    <ItemGroup> 
    <Compile Include="Application\MvxApplication.cs" /> 
    etc 
    </ItemGroup> 
    <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" /> 
</Project> 

回答

1

現在關閉了這個問題。

經過長時間的研究之後......似乎項目文件之間沒有任何顯着差異。

相反,它似乎對這些文件的MonoDevelop的支持仍處於青年和如果你想這些文件中的MonoDevelop(3.0.2)

所以用它來打開你必須使用Profile1的

<TargetFrameworkProfile>Profile1</TargetFrameworkProfile> 

<TargetFrameworkProfile>Profile2</TargetFrameworkProfile>