CommonUI.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{FE159004-4F5C-4A17-B633-E66D5A64ACFB}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CommonUI</RootNamespace>
  12. <AssemblyName>CommonUI</AssemblyName>
  13. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile>
  16. </TargetFrameworkProfile>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Library\Debug\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <DocumentationFile>
  27. </DocumentationFile>
  28. <NoWarn>1591</NoWarn>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>..\..\Library\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  41. <DebugSymbols>true</DebugSymbols>
  42. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  43. <DefineConstants>TRACE;DEBUG</DefineConstants>
  44. <NoWarn>1591</NoWarn>
  45. <DebugType>full</DebugType>
  46. <PlatformTarget>AnyCPU</PlatformTarget>
  47. <ErrorReport>prompt</ErrorReport>
  48. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="System" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="Cell\CPJAtlas.cs" />
  56. <Compile Include="Cell\CPJLoader.cs" />
  57. <Compile Include="Cell\CPJObject.cs" />
  58. <Compile Include="Cell\CPJResource.cs" />
  59. <Compile Include="Cell\Game\CPJObjects.cs" />
  60. <Compile Include="Cell\Game\CPJSprite.cs" />
  61. <Compile Include="Data\Constants.cs" />
  62. <Compile Include="Data\UIEditorConverter.cs" />
  63. <Compile Include="Data\UIEditorMeta.cs" />
  64. <Compile Include="Display\Canvas.cs" />
  65. <Compile Include="Display\Color.cs" />
  66. <Compile Include="Display\Graphics.cs" />
  67. <Compile Include="Display\GraphicsDriver.cs" />
  68. <Compile Include="Display\GraphicsUtil.cs" />
  69. <Compile Include="Display\Image.cs" />
  70. <Compile Include="Display\TextLayer.cs" />
  71. <Compile Include="Display\Text\AttributedString.cs" />
  72. <Compile Include="Display\Text\RichTextLayer.cs" />
  73. <Compile Include="Display\Text\TextDrawable.cs" />
  74. <Compile Include="Display\VertexData.cs" />
  75. <Compile Include="Gemo\MathVector.cs" />
  76. <Compile Include="Gemo\Point2D.cs" />
  77. <Compile Include="Gemo\Rectangle2D.cs" />
  78. <Compile Include="Gemo\Size2D.cs" />
  79. <Compile Include="Gemo\TPoint2D.cs" />
  80. <Compile Include="Gemo\TRectangle2D.cs" />
  81. <Compile Include="Loader\AbstractLoader.cs" />
  82. <Compile Include="Loader\AtlasLoader.cs" />
  83. <Compile Include="Loader\ImageLoader.cs" />
  84. <Compile Include="Properties\AssemblyInfo.cs" />
  85. <Compile Include="Sound\SoundManager.cs" />
  86. <Compile Include="Tool\AnchorTool.cs" />
  87. <Compile Include="Tool\XMLTool.cs" />
  88. <Compile Include="UIFactory.cs" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <ProjectReference Include="..\CommonLang\CommonLang.csproj">
  92. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  93. <Name>CommonLang</Name>
  94. </ProjectReference>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <None Include="obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache" />
  98. </ItemGroup>
  99. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  100. <PropertyGroup>
  101. <PostBuildEvent>
  102. </PostBuildEvent>
  103. </PropertyGroup>
  104. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  105. Other similar extension points exist, see Microsoft.Common.targets.
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. </Target>
  110. -->
  111. </Project>