Aether.Tilemap.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\Package.props" />
  3. <PropertyGroup>
  4. <Version>1.4.0.0</Version>
  5. <AssemblyVersion>1.4.0.0</AssemblyVersion>
  6. <copyright>Copyright © Kastellanos Nikolaos 2021-2025</copyright>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <ProjectGuid>{7BD9F460-F3F9-40A0-B298-066EA975C06C}</ProjectGuid>
  10. <EnableDefaultItems>false</EnableDefaultItems>
  11. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  12. <OutputType>Library</OutputType>
  13. <RootNamespace>nkast.Aether.Graphics</RootNamespace>
  14. <AssemblyName>Aether.Tilemap</AssemblyName>
  15. <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. <DefineConstants>WINDOWS KNI</DefineConstants>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
  21. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  22. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Compile Include="Tilemap\Extensions.cs" />
  26. <Compile Include="Tilemap\Tile.cs" />
  27. <Compile Include="Tilemap\Tilemap.cs" />
  28. <Compile Include="ContentReaders\TilemapReader.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.csproj" />
  32. </ItemGroup>
  33. </Project>