123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>netstandard2.0</TargetFramework>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Animation</RootNamespace>
- <AssemblyName>Aether.Animation</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <OutputPath>..\Artifacts\$(Configuration)\Libraries\netstandard2.0\</OutputPath>
- <BaseIntermediateOutputPath>obj\netstandard2.0\</BaseIntermediateOutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- </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>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- </Project>
|