Aether.Animation.csproj 1.8 KB

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