Aether.Animation.WP7_1.csproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <ProjectGuid>{08932BB0-C3E4-489B-9A45-1649730A9CDB}</ProjectGuid>
  5. <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">Windows Phone</Platform>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>tainicom.Aether.Animation</RootNamespace>
  11. <AssemblyName>Aether.Animation</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  14. <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
  15. <XnaPlatform>Windows Phone</XnaPlatform>
  16. <XnaProfile>Reach</XnaProfile>
  17. <XnaCrossPlatformGroupID>55ac98f1-c123-4838-ac90-fb4285b12686</XnaCrossPlatformGroupID>
  18. <XnaOutputType>Library</XnaOutputType>
  19. <XapFilename Condition="$(XnaOutputType)=='Game'">$(AssemblyName).xap</XapFilename>
  20. <SilverlightManifestTemplate Condition="$(XnaOutputType)=='Game'">Properties\AppManifest.xml</SilverlightManifestTemplate>
  21. <XnaWindowsPhoneManifestTemplate Condition="$(XnaOutputType)=='Game'">Properties\WMAppManifest.xml</XnaWindowsPhoneManifestTemplate>
  22. <TileImage Condition="$(XnaOutputType)=='Game'">Background.png</TileImage>
  23. <TileTitle Condition="$(XnaOutputType)=='Game'">TileTitle</TileTitle>
  24. <XnaRefreshLevel>1</XnaRefreshLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Windows Phone' ">
  27. <OutputPath>..\bin\Debug\WP7_1\</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <NoStdLib>true</NoStdLib>
  31. <UseVSHostingProcess>false</UseVSHostingProcess>
  32. <DebugSymbols>true</DebugSymbols>
  33. <DebugType>full</DebugType>
  34. <Optimize>true</Optimize>
  35. <DefineConstants>TRACE;DEBUG;WP7_1</DefineConstants>
  36. <XnaCompressContent>false</XnaCompressContent>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Windows Phone' ">
  39. <OutputPath>..\bin\Release\WP7_1\</OutputPath>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <NoStdLib>true</NoStdLib>
  43. <UseVSHostingProcess>false</UseVSHostingProcess>
  44. <DebugType>none</DebugType>
  45. <Optimize>true</Optimize>
  46. <DefineConstants>TRACE;WP7</DefineConstants>
  47. <XnaCompressContent>false</XnaCompressContent>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="Microsoft.Phone, Version=7.0.0.0, Culture=neutral, PublicKeyToken=24eec0d8c86cda1e, processorArchitecture=MSIL" />
  51. <Reference Include="Microsoft.Xna.Framework">
  52. <Private>False</Private>
  53. </Reference>
  54. <Reference Include="Microsoft.Xna.Framework.Graphics">
  55. <Private>False</Private>
  56. </Reference>
  57. <Reference Include="mscorlib">
  58. <Private>False</Private>
  59. </Reference>
  60. <Reference Include="System">
  61. <Private>False</Private>
  62. </Reference>
  63. <Reference Include="System.Core">
  64. <Private>False</Private>
  65. </Reference>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Animation\Animations.cs" />
  69. <Compile Include="Animation\Clip.cs" />
  70. <Compile Include="Animation\CpuAnimatedVertexBuffer.cs" />
  71. <Compile Include="Animation\Extensions.cs" />
  72. <Compile Include="Animation\Keyframe.cs" />
  73. <Compile Include="ContentReaders\AnimationsReader.cs" />
  74. <Compile Include="ContentReaders\ClipReader.cs" />
  75. <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
  76. <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <Compile Include="Properties\AssemblyInfo.cs" />
  80. </ItemGroup>
  81. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  82. <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
  83. <!--
  84. To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>