Particle3DSample.Android.csproj 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-android</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <AssemblyName>Particle3DSample.Android</AssemblyName>
  6. <RootNamespace>Particle3DSample.Android</RootNamespace>
  7. <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
  8. <Nullable>enable</Nullable>
  9. <ApplicationId>com.particle3dsample.android</ApplicationId>
  10. <ApplicationDisplayName>Particle3D Sample</ApplicationDisplayName>
  11. <ApplicationVersion>1</ApplicationVersion>
  12. <AndroidVersionCode>1</AndroidVersionCode>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
  16. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\..\Core\Particle3DSample.Core.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </Content>
  25. <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </Content>
  28. </ItemGroup>
  29. </Project>