ChaseAndEvade.Linux.csproj 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{86A619E2-C8F0-452B-B764-C69D5BB07C98}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>ChaseAndEvade</RootNamespace>
  11. <AssemblyName>ChaseAndEvade</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>LINUX;DEBUG</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <PlatformTarget>x86</PlatformTarget>
  22. <ConsolePause>False</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>False</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <PlatformTarget>x86</PlatformTarget>
  31. <ConsolePause>False</ConsolePause>
  32. <DefineConstants>LINUX</DefineConstants>
  33. </PropertyGroup>
  34. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Xml" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Drawing" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <None Include="Info.plist" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="ChaseAndEvadeGame.cs">
  47. <Link>ChaseAndEvadeGame.cs</Link>
  48. </Compile>
  49. <Compile Include="Program.cs" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Content Include="Content\Arial.xnb">
  53. <Link>Content\Arial.xnb</Link>
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </Content>
  56. <Content Include="Content\cat.png">
  57. <Link>Content\cat.png</Link>
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </Content>
  60. <Content Include="Content\mouse.png">
  61. <Link>Content\mouse.png</Link>
  62. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  63. </Content>
  64. <Content Include="Content\tank.png">
  65. <Link>Content\tank.png</Link>
  66. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  67. </Content>
  68. <Content Include="GameThumbnail.png" />
  69. </ItemGroup>
  70. </Project>