Aether.Atlas.csproj 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\Package.props" />
  3. <PropertyGroup>
  4. <Version>1.5.0.0</Version>
  5. <AssemblyVersion>1.5.0.0</AssemblyVersion>
  6. <copyright>Copyright © Kastellanos Nikolaos 2016-2025</copyright>
  7. <PackageId>nkast.Aether.Atlas</PackageId>
  8. <Description>TextureAtlas for Kni game framework</Description>
  9. <PackageTags>C# Graphics TextureAtlas KNI</PackageTags>
  10. <PackageReadmeFile>README.md</PackageReadmeFile>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <ProjectGuid>{C7522B5E-B255-4FB6-A17A-9E6D217AEBD2}</ProjectGuid>
  14. <EnableDefaultItems>false</EnableDefaultItems>
  15. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  16. <OutputType>Library</OutputType>
  17. <RootNamespace>nkast.Aether.Graphics</RootNamespace>
  18. <AssemblyName>Aether.Atlas</AssemblyName>
  19. <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  23. <DefineConstants>DEBUG;WINDOWS KNI</DefineConstants>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DefineConstants>WINDOWS KNI</DefineConstants>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
  30. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  31. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="Atlas\Extensions.cs" />
  35. <Compile Include="Atlas\Sprite.cs" />
  36. <Compile Include="Atlas\TextureAtlas.cs" />
  37. <Compile Include="ContentReaders\TextureAtlasReader.cs" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <None Include="README.md">
  41. <Pack>True</Pack>
  42. <PackagePath>\</PackagePath>
  43. </None>
  44. </ItemGroup>
  45. </Project>