2
0

NetworkPrediction.Windows.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A0EBAD2F-0DB1-4C42-B855-5B9BBDDD3512}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>NetworkPrediction</RootNamespace>
  12. <AssemblyName>NetworkPrediction</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <PlatformTarget>x86</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Data.DataSetExtensions" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="NetworkPredictionGame.cs">
  47. <Link>NetworkPredictionGame.cs</Link>
  48. </Compile>
  49. <Compile Include="RollingAverage.cs">
  50. <Link>RollingAverage.cs</Link>
  51. </Compile>
  52. <Compile Include="Tank.cs">
  53. <Link>Tank.cs</Link>
  54. </Compile>
  55. <Compile Include="Program.cs" />
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.Windows.csproj">
  60. <Project>{7DE47032-A904-4C29-BD22-2D235E8D91BA}</Project>
  61. <Name>MonoGame.Framework.Windows</Name>
  62. </ProjectReference>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Content Include="Content\Font.xnb">
  66. <Link>Content\Font.xnb</Link>
  67. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  68. </Content>
  69. <Content Include="Content\Tank.xnb">
  70. <Link>Content\Tank.xnb</Link>
  71. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  72. </Content>
  73. <Content Include="Content\Turret.xnb">
  74. <Link>Content\Turret.xnb</Link>
  75. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  76. </Content>
  77. </ItemGroup>
  78. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  79. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  80. Other similar extension points exist, see Microsoft.Common.targets.
  81. <Target Name="BeforeBuild">
  82. </Target>
  83. <Target Name="AfterBuild">
  84. </Target>
  85. -->
  86. </Project>