LensFlare.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-android</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>LensFlare</RootNamespace>
  6. <AssemblyName>LensFlare</AssemblyName>
  7. <AndroidApplication>true</AndroidApplication>
  8. <AndroidUseAapt2>true</AndroidUseAapt2>
  9. <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
  10. <Nullable>enable</Nullable>
  11. <ImplicitUsings>disable</ImplicitUsings>
  12. <DefineConstants>ANDROID</DefineConstants>
  13. <AndroidManifest>AndroidManifest.xml</AndroidManifest>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
  17. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Core\LensFlare.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>