Logic.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{CB5BCF0A-4741-477A-94C6-49ECA782555F}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Logic</RootNamespace>
  11. <AssemblyName>Logic</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\..\Bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\..\Bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="Event\BeforeUseItemEvent.cs" />
  39. <Compile Include="Event\BeforeLoginWorldEvent.cs" />
  40. <Compile Include="Handler\ChatHandler.cs" />
  41. <Compile Include="Handler\LoginWorldHandler.cs" />
  42. <Compile Include="Handler\ReloadHandler.cs" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  46. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  47. <Name>Helper</Name>
  48. </ProjectReference>
  49. <ProjectReference Include="..\..\Platform\Logger\Logger.csproj">
  50. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  51. <Name>Logger</Name>
  52. </ProjectReference>
  53. <ProjectReference Include="..\Component\Component.csproj">
  54. <Project>{0fa529d1-d0a9-4a8e-90f5-117ce80f2ede}</Project>
  55. <Name>Component</Name>
  56. </ProjectReference>
  57. <ProjectReference Include="..\World\World.csproj">
  58. <Project>{cbedbe33-a883-4bfa-ae0a-8b3573f09bd0}</Project>
  59. <Name>World</Name>
  60. </ProjectReference>
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Folder Include="Properties\" />
  64. </ItemGroup>
  65. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  66. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  67. Other similar extension points exist, see Microsoft.Common.targets.
  68. <Target Name="BeforeBuild">
  69. </Target>
  70. <Target Name="AfterBuild">
  71. </Target>
  72. -->
  73. </Project>