Aether.Animation.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 2011-2025</copyright>
  7. <PackageProjectUrl>https://nkast.github.io/Aether.Extras/wasm/Animation.html</PackageProjectUrl>
  8. <PackageId>nkast.Aether.Animation</PackageId>
  9. <Description>Animation for Kni game framework</Description>
  10. <PackageTags>C# Graphics Animation KNI</PackageTags>
  11. <PackageReadmeFile>README.md</PackageReadmeFile>
  12. </PropertyGroup>
  13. <PropertyGroup>
  14. <ProjectGuid>{F08D6D4C-60FB-4543-8D81-594080EB8051}</ProjectGuid>
  15. <EnableDefaultItems>false</EnableDefaultItems>
  16. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  17. <OutputType>Library</OutputType>
  18. <RootNamespace>nkast.Aether.Animation</RootNamespace>
  19. <AssemblyName>Aether.Animation</AssemblyName>
  20. <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
  21. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  22. <DefineConstants>WINDOWS KNI</DefineConstants>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
  26. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  27. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Include="Animation\Animations.cs" />
  31. <Compile Include="Animation\Clip.cs" />
  32. <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
  33. <Compile Include="Animation\Extensions.cs" />
  34. <Compile Include="Animation\Keyframe.cs" />
  35. <Compile Include="ContentReaders\AnimationsReader.cs" />
  36. <Compile Include="ContentReaders\ClipReader.cs" />
  37. <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
  38. <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <ProjectReference Include="..\Graphics\Aether.Graphics.csproj" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <None Include="README.md">
  45. <Pack>True</Pack>
  46. <PackagePath>\</PackagePath>
  47. </None>
  48. </ItemGroup>
  49. </Project>