Aether.Animation.NET4.csproj 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{F08D6D4C-60FB-4543-8D81-594080EB8051}</ProjectGuid>
  5. <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>nkast.Aether.Animation</RootNamespace>
  11. <AssemblyName>Aether.Animation</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\Artifacts\Debug\net4\</OutputPath>
  22. <DefineConstants>TRACE;DEBUG;WINDOWS MG MAPPEDMEM</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\Artifacts\Release\net4\</OutputPath>
  32. <DefineConstants>TRACE;WINDOWS MG MAPPEDMEM</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <PackageReference Include="MonoGame.Framework.Portable.9000" Version="3.8.9101">
  40. <PrivateAssets>all</PrivateAssets>
  41. <ExcludeAssets>runtime</ExcludeAssets>
  42. </PackageReference>
  43. <PackageReference Include="SharpDX" Version="4.0.1.0">
  44. <PrivateAssets>all</PrivateAssets>
  45. <ExcludeAssets>runtime</ExcludeAssets>
  46. </PackageReference>
  47. <PackageReference Include="SharpDX.Direct3D11" Version="4.0.1.0">
  48. <PrivateAssets>all</PrivateAssets>
  49. <ExcludeAssets>runtime</ExcludeAssets>
  50. </PackageReference>
  51. <PackageReference Include="SharpDX.DXGI" Version="4.0.1.0">
  52. <PrivateAssets>all</PrivateAssets>
  53. <ExcludeAssets>runtime</ExcludeAssets>
  54. </PackageReference>
  55. <Reference Include="System" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="mscorlib" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Animation\Animations.cs" />
  61. <Compile Include="Animation\Clip.cs" />
  62. <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
  63. <Compile Include="Animation\Extensions.cs" />
  64. <Compile Include="Animation\Keyframe.cs" />
  65. <Compile Include="ContentReaders\AnimationsReader.cs" />
  66. <Compile Include="ContentReaders\ClipReader.cs" />
  67. <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
  68. <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  74. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  75. Other similar extension points exist, see Microsoft.Common.targets.
  76. <Target Name="BeforeBuild">
  77. </Target>
  78. <Target Name="AfterBuild">
  79. </Target>
  80. -->
  81. </Project>