Peer2Peer.Android.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{56F6C06F-6F07-402E-89A5-39EDB037A516}</ProjectGuid>
  9. <ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>MonoGame.Samples.Peer2Peer.Android</RootNamespace>
  13. <AssemblyName>MonoGame.Samples.Peer2Peer.Android</AssemblyName>
  14. <FileAlignment>512</FileAlignment>
  15. <AndroidApplication>true</AndroidApplication>
  16. <AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
  17. <AndroidSupportedAbis>armeabi</AndroidSupportedAbis>
  18. <AndroidStoreUncompressedFileExtensions />
  19. <MandroidI18n />
  20. <AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  23. <DebugSymbols>True</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>False</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>TRACE;DEBUG;ANDROID</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <AndroidLinkMode>None</AndroidLinkMode>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>True</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE;ANDROID</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
  40. <AndroidLinkMode>SdkOnly</AndroidLinkMode>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="Mono.Android" />
  44. <Reference Include="mscorlib" />
  45. <Reference Include="OpenTK" />
  46. <Reference Include="System" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Activity1.cs" />
  53. <Compile Include="Resources\Resource.Designer.cs" />
  54. <Compile Include="PeerToPeerGame.cs">
  55. <Link>PeerToPeerGame.cs</Link>
  56. </Compile>
  57. <Compile Include="Tank.cs">
  58. <Link>Tank.cs</Link>
  59. </Compile>
  60. </ItemGroup>
  61. <Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
  62. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  63. Other similar extension points exist, see Microsoft.Common.targets.
  64. <Target Name="BeforeBuild">
  65. </Target>
  66. <Target Name="AfterBuild">
  67. </Target>
  68. -->
  69. <ItemGroup>
  70. <AndroidAsset Include="Content\Font.xnb">
  71. <Link>Assets\Content\Font.xnb</Link>
  72. </AndroidAsset>
  73. <AndroidAsset Include="Content\gamepad.png">
  74. <Link>Assets\Content\gamepad.png</Link>
  75. </AndroidAsset>
  76. <AndroidAsset Include="Content\Tank.xnb">
  77. <Link>Assets\Content\Tank.xnb</Link>
  78. </AndroidAsset>
  79. <AndroidAsset Include="Content\Turret.xnb">
  80. <Link>Assets\Content\Turret.xnb</Link>
  81. </AndroidAsset>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <None Include="Properties\AndroidManifest.xml" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <AndroidResource Include="Resources\Drawable\Icon.png" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <AndroidResource Include="Resources\Drawable\Splash.png" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <AndroidResource Include="Resources\Values\Styles.xml" />
  94. </ItemGroup>
  95. </Project>