ShadowMapping.Android.csproj 941 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-android</TargetFramework>
  5. <RootNamespace>ShadowMapping</RootNamespace>
  6. <AssemblyTitle>Shadow Mapping</AssemblyTitle>
  7. <Product>Shadow Mapping</Product>
  8. <Description>This sample shows you how to implement basic shadow mapping from a directional light</Description>
  9. <Company>Microsoft</Company>
  10. <Copyright>Copyright © Microsoft 2008</Copyright>
  11. <Nullable>enable</Nullable>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
  15. <ProjectReference Include="..\..\Core\ShadowMapping.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </Content>
  21. </ItemGroup>
  22. </Project>