SkinnedModelWindows.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{275A6008-A0D8-45CF-99E3-3DC3B0F100FD}</ProjectGuid>
  4. <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>SkinnedModel</RootNamespace>
  10. <AssemblyName>SkinnedModel</AssemblyName>
  11. <XnaFrameworkVersion>v2.0</XnaFrameworkVersion>
  12. <XnaPlatform>Windows</XnaPlatform>
  13. <XnaCrossPlatformGroupID>d6b47ce0-9bc6-478c-a644-331b40c0ebb5</XnaCrossPlatformGroupID>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\x86\Debug</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <NoStdLib>true</NoStdLib>
  24. <UseVSHostingProcess>false</UseVSHostingProcess>
  25. <PlatformTarget>x86</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\x86\Release</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <NoStdLib>true</NoStdLib>
  35. <UseVSHostingProcess>false</UseVSHostingProcess>
  36. <PlatformTarget>x86</PlatformTarget>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Microsoft.Xna.Framework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d, processorArchitecture=x86">
  40. <Private>False</Private>
  41. <SpecificVersion>True</SpecificVersion>
  42. </Reference>
  43. <Reference Include="Microsoft.Xna.Framework.Game, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d, processorArchitecture=MSIL">
  44. <Private>False</Private>
  45. <SpecificVersion>True</SpecificVersion>
  46. </Reference>
  47. <Reference Include="mscorlib">
  48. <Private>False</Private>
  49. </Reference>
  50. <Reference Include="System">
  51. <Private>False</Private>
  52. </Reference>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="AnimationClip.cs" />
  56. <Compile Include="AnimationPlayer.cs" />
  57. <Compile Include="Keyframe.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="SkinningData.cs" />
  60. <Compile Include="TypeReaders.cs" />
  61. </ItemGroup>
  62. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  63. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  64. Other similar extension points exist, see Microsoft.Common.targets.
  65. <Target Name="BeforeBuild">
  66. </Target>
  67. <Target Name="AfterBuild">
  68. </Target>
  69. -->
  70. </Project>