SkinnedModelXbox360.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{1A2892BA-E78F-4F75-8F07-BDBA3C5D644E}</ProjectGuid>
  4. <ProjectTypeGuids>{2DF5C3F4-5A5F-47a9-8E94-23B4456F55E2};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">Xbox 360</Platform>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>SkinnedModel</RootNamespace>
  10. <AssemblyName>SkinnedModel</AssemblyName>
  11. <XnaFrameworkVersion>v2.0</XnaFrameworkVersion>
  12. <XnaPlatform>Xbox 360</XnaPlatform>
  13. <XnaCrossPlatformGroupID>cefb80d2-b368-4d11-b7d5-204b8b694fe0</XnaCrossPlatformGroupID>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Xbox 360' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Xbox 360\Debug</OutputPath>
  20. <DefineConstants>DEBUG;TRACE;XBOX;XBOX360</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <NoStdLib>true</NoStdLib>
  24. <UseVSHostingProcess>false</UseVSHostingProcess>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Xbox 360' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Xbox 360\Release</OutputPath>
  30. <DefineConstants>TRACE;XBOX;XBOX360</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <NoStdLib>true</NoStdLib>
  34. <UseVSHostingProcess>false</UseVSHostingProcess>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="Microsoft.Xna.Framework">
  38. <Private>False</Private>
  39. </Reference>
  40. <Reference Include="Microsoft.Xna.Framework.Game">
  41. <Private>False</Private>
  42. </Reference>
  43. <Reference Include="mscorlib">
  44. <Private>False</Private>
  45. </Reference>
  46. <Reference Include="System">
  47. <Private>False</Private>
  48. </Reference>
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="AnimationClip.cs" />
  52. <Compile Include="AnimationPlayer.cs" />
  53. <Compile Include="Keyframe.cs" />
  54. <Compile Include="Properties\AssemblyInfo.cs" />
  55. <Compile Include="SkinningData.cs" />
  56. <Compile Include="TypeReaders.cs" />
  57. </ItemGroup>
  58. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  59. <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\v2.0\Microsoft.Xna.GameStudio.Common.targets" />
  60. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  61. Other similar extension points exist, see Microsoft.Common.targets.
  62. <Target Name="BeforeBuild">
  63. </Target>
  64. <Target Name="AfterBuild">
  65. </Target>
  66. -->
  67. </Project>