Aether.Animation.PORTABLE.csproj 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  7. <ProjectGuid>{11DC5896-8B7A-43ED-978C-45D0ECD4DD42}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>nkast.Aether.Animation</RootNamespace>
  10. <AssemblyName>Aether.Animation</AssemblyName>
  11. <TargetFrameworkProfile>Profile328</TargetFrameworkProfile>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>..\Artifacts\Debug\Libraries\Portable\</OutputPath>
  20. <DefineConstants>DEBUG;PORTABLE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <ConsolePause>false</ConsolePause>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\Artifacts\Release\Libraries\Portable\</OutputPath>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <ConsolePause>false</ConsolePause>
  32. <DefineConstants>PORTABLE</DefineConstants>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Compile Include="Animation\Animations.cs" />
  36. <Compile Include="Animation\Clip.cs" />
  37. <Compile Include="Animation\CpuAnimatedVertexBuffer.cs" />
  38. <Compile Include="Animation\Extensions.cs" />
  39. <Compile Include="Animation\Keyframe.cs" />
  40. <Compile Include="ContentReaders\AnimationsReader.cs" />
  41. <Compile Include="ContentReaders\ClipReader.cs" />
  42. <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
  43. <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Properties\AssemblyInfo.PORTABLE.cs" />
  47. </ItemGroup>
  48. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  49. <ItemGroup>
  50. <PackageReference Include="MonoGame.Framework.Portable.9000" Version="3.8.9101">
  51. <PrivateAssets>all</PrivateAssets>
  52. <ExcludeAssets>runtime</ExcludeAssets>
  53. </PackageReference>
  54. </ItemGroup>
  55. </Project>