Aether.Animation.NETSTANDARD.DX.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>netstandard2.0</TargetFramework>
  5. <OutputType>Library</OutputType>
  6. <RootNamespace>nkast.Aether.Animation</RootNamespace>
  7. <AssemblyName>Aether.Animation</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <OutputPath>..\Artifacts\$(Configuration)\Libraries\netstandard2.0.DX\</OutputPath>
  11. <BaseIntermediateOutputPath>obj\netstandard2.0.DX\</BaseIntermediateOutputPath>
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DefineConstants>TRACE;DEBUG;WINDOWS MG MAPPEDMEM</DefineConstants>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  18. <DefineConstants>TRACE;WINDOWS MG MAPPEDMEM</DefineConstants>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="nkast.Xna.Framework" Version="3.13.9001">
  22. <PrivateAssets>all</PrivateAssets>
  23. <ExcludeAssets>runtime</ExcludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001">
  26. <PrivateAssets>all</PrivateAssets>
  27. <ExcludeAssets>runtime</ExcludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001">
  30. <PrivateAssets>all</PrivateAssets>
  31. <ExcludeAssets>runtime</ExcludeAssets>
  32. </PackageReference>
  33. <PackageReference Include="SharpDX" Version="4.0.1.0">
  34. <PrivateAssets>all</PrivateAssets>
  35. <ExcludeAssets>runtime</ExcludeAssets>
  36. </PackageReference>
  37. <PackageReference Include="SharpDX.Direct3D11" Version="4.0.1.0">
  38. <PrivateAssets>all</PrivateAssets>
  39. <ExcludeAssets>runtime</ExcludeAssets>
  40. </PackageReference>
  41. <PackageReference Include="SharpDX.DXGI" Version="4.0.1.0">
  42. <PrivateAssets>all</PrivateAssets>
  43. <ExcludeAssets>runtime</ExcludeAssets>
  44. </PackageReference>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Animation\Animations.cs" />
  48. <Compile Include="Animation\Clip.cs" />
  49. <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
  50. <Compile Include="Animation\Extensions.cs" />
  51. <Compile Include="Animation\Keyframe.cs" />
  52. <Compile Include="ContentReaders\AnimationsReader.cs" />
  53. <Compile Include="ContentReaders\ClipReader.cs" />
  54. <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
  55. <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. </ItemGroup>
  60. </Project>