NetworkPrediction.iOS.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-ios</TargetFramework>
  5. <RootNamespace>NetworkPrediction</RootNamespace>
  6. <AssemblyName>NetworkPrediction.iOS</AssemblyName>
  7. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <Title>Network Prediction</Title>
  10. <Product>NetworkPrediction</Product>
  11. <Description>This sample shows how to use prediction and smoothing algorithms to compensate for network lag, making remotely controlled objects appear to move smoothly even when there is a significant delay in packets being delivered over the network.</Description>
  12. <Company>Microsoft</Company>
  13. <Copyright>Copyright © Microsoft 2007</Copyright>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  17. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Core\NetworkPrediction.Core.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. </Project>