12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="..\Package.props" />
- <PropertyGroup>
- <Version>1.5.0.0</Version>
- <AssemblyVersion>1.5.0.0</AssemblyVersion>
- <copyright>Copyright © Kastellanos Nikolaos 2011-2025</copyright>
- <PackageProjectUrl>https://nkast.github.io/Aether.Extras/wasm/Animation.html</PackageProjectUrl>
- <PackageId>nkast.Aether.Animation</PackageId>
- <Description>Animation for Kni game framework</Description>
- <PackageTags>C# Graphics Animation KNI</PackageTags>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- </PropertyGroup>
- <PropertyGroup>
- <ProjectGuid>{F08D6D4C-60FB-4543-8D81-594080EB8051}</ProjectGuid>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Animation</RootNamespace>
- <AssemblyName>Aether.Animation</AssemblyName>
- <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>WINDOWS KNI</DefineConstants>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Animation\Animations.cs" />
- <Compile Include="Animation\Clip.cs" />
- <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
- <Compile Include="Animation\Extensions.cs" />
- <Compile Include="Animation\Keyframe.cs" />
- <Compile Include="ContentReaders\AnimationsReader.cs" />
- <Compile Include="ContentReaders\ClipReader.cs" />
- <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
- <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Graphics\Aether.Graphics.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Include="README.md">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- </ItemGroup>
- </Project>
|