2
0

Peer2PeerSample.Linux.csproj 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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-C8D0-452B-B762-C69D5BB07C98}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>Peer2PeerSample</RootNamespace>
  11. <AssemblyName>Peer2PeerSample</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>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. </PropertyGroup>
  33. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Drawing" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="PeerToPeerGame.cs">
  43. <Link>PeerToPeerGame.cs</Link>
  44. </Compile>
  45. <Compile Include="Tank.cs">
  46. <Link>Tank.cs</Link>
  47. </Compile>
  48. <Compile Include="Program.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Content Include="Content\Font.spritefont">
  52. <Link>Content\Font.spritefont</Link>
  53. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  54. </Content>
  55. <Content Include="Content\Font.xnb">
  56. <Link>Content\Font.xnb</Link>
  57. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  58. </Content>
  59. <Content Include="Content\Tank.xnb">
  60. <Link>Content\Tank.xnb</Link>
  61. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  62. </Content>
  63. <Content Include="Content\Turret.xnb">
  64. <Link>Content\Turret.xnb</Link>
  65. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  66. </Content>
  67. </ItemGroup>
  68. </Project>