Xamarin / Mono找不到System.Core

时间:2013-05-30 15:47:58

标签: c# mono nunit xamarin

我在Xamarin下有一个测试项目,当我尝试运行它时它告诉我它无法加载System.Core但是从屏幕截图中可以看出System.Core是其中一个参考。

这里的错误可能是什么?

(在新标签页中打开图片以查看详细信息)

xamarin test error

问题在于我的主要项目不是测试项目。什么时候 我查看了他们所有的红色参考文献。所以我删除了它们并尝试了 再次添加它们但没有添加引用。见下图。

enter image description here

1 个答案:

答案 0 :(得分:2)

以下对.csproj文件的编辑修复了问题

--- a/SketchSolveC#/SketchSolveC#.csproj
+++ b/SketchSolveC#/SketchSolveC#.csproj
@@ -6,12 +6,9 @@
     <ProductVersion>12.0.0</ProductVersion>
     <SchemaVersion>2.0</SchemaVersion>
     <ProjectGuid>{46D849FA-8E4B-4656-B494-290697EBD9EC}</ProjectGuid>
-    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
     <OutputType>Library</OutputType>
     <RootNamespace>SketchSolveC</RootNamespace>
     <AssemblyName>SketchSolveC#</AssemblyName>
-    <TargetFrameworkProfile>Profile1</TargetFrameworkProfile>
-    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>true</DebugSymbols>
@@ -30,15 +27,13 @@
     <ConsolePause>false</ConsolePause>
   </PropertyGroup>
   <ItemGroup>
-    <Reference Include="System" />
-    <Reference Include="System.Xml" />
-    <Reference Include="System.Core" />
-  </ItemGroup>
-  <ItemGroup>
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="SketchSolve.cs" />
+    <Reference Include="System.Xml" />
+    <Reference Include="System.Data.Linq" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
   </ItemGroup>
-  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
   <ProjectExtensions>
     <MonoDevelop>
       <Properties>
@@ -49,4 +44,4 @@
       </Properties>
     </MonoDevelop>
   </ProjectExtensions>
-</Project>
\ No newline at end of file
+</Project>