spine-csharp.csproj 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>{94144E22-2431-4A8F-AC04-DEC22F7EDD8F}</ProjectGuid>
  5. <ProductVersion>9.0.21022</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Spine</RootNamespace>
  12. <AssemblyName>spine-csharp</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
  17. <XnaPlatform>Windows</XnaPlatform>
  18. <XnaProfile>HiDef</XnaProfile>
  19. <XnaCrossPlatformGroupID>99dfd52d-8beb-4e5c-a68b-365be39e8064</XnaCrossPlatformGroupID>
  20. <XnaOutputType>Library</XnaOutputType>
  21. <FileUpgradeFlags>
  22. </FileUpgradeFlags>
  23. <OldToolsVersion>3.5</OldToolsVersion>
  24. <UpgradeBackupLocation />
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  27. <DebugSymbols>true</DebugSymbols>
  28. <OutputPath>bin\Debug\</OutputPath>
  29. <DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
  30. <NoStdLib>true</NoStdLib>
  31. <DebugType>full</DebugType>
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <CodeAnalysisLogFile>bin\x86\Debug\spine-csharp.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
  34. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  35. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  36. <UseVSHostingProcess>false</UseVSHostingProcess>
  37. <ErrorReport>prompt</ErrorReport>
  38. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  39. <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
  40. <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  43. <OutputPath>bin\Release\</OutputPath>
  44. <DefineConstants>TRACE;WINDOWS</DefineConstants>
  45. <Optimize>true</Optimize>
  46. <NoStdLib>true</NoStdLib>
  47. <DebugType>pdbonly</DebugType>
  48. <PlatformTarget>AnyCPU</PlatformTarget>
  49. <CodeAnalysisLogFile>bin\x86\Release\spine-csharp.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
  50. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  51. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  52. <UseVSHostingProcess>false</UseVSHostingProcess>
  53. <ErrorReport>prompt</ErrorReport>
  54. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  55. <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
  56. <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
  57. <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
  58. </PropertyGroup>
  59. <ItemGroup>
  60. <Reference Include="mscorlib" />
  61. <Reference Include="System" />
  62. <Reference Include="System.Core">
  63. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  64. </Reference>
  65. <Reference Include="System.Net" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. <Compile Include="src\Animation.cs" />
  70. <Compile Include="src\AnimationStateData.cs" />
  71. <Compile Include="src\Atlas.cs" />
  72. <Compile Include="src\Attachments\AttachmentLoader.cs" />
  73. <Compile Include="src\Attachments\AtlasAttachmentLoader.cs" />
  74. <Compile Include="src\Attachments\Attachment.cs" />
  75. <Compile Include="src\Attachments\AttachmentType.cs" />
  76. <Compile Include="src\Attachments\RegionAttachment.cs" />
  77. <Compile Include="src\Bone.cs" />
  78. <Compile Include="src\BoneData.cs" />
  79. <Compile Include="src\AnimationState.cs" />
  80. <Compile Include="src\Json.cs" />
  81. <Compile Include="src\Skeleton.cs" />
  82. <Compile Include="src\SkeletonData.cs" />
  83. <Compile Include="src\SkeletonJson.cs" />
  84. <Compile Include="src\Skin.cs" />
  85. <Compile Include="src\Slot.cs" />
  86. <Compile Include="src\SlotData.cs" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  89. <!--
  90. To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>