Logic.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>..\..\Bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>..\..\Bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="System.Core" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="Event\BeforeUseItemEvent.cs" />
  38. <Compile Include="Event\BeforeLoginWorldEvent.cs" />
  39. <Compile Include="Handler\ChatHandler.cs" />
  40. <Compile Include="Handler\LoginWorldHandler.cs" />
  41. <Compile Include="Handler\ReloadHandler.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  45. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  46. <Name>Helper</Name>
  47. </ProjectReference>
  48. <ProjectReference Include="..\..\Platform\Logger\Logger.csproj">
  49. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  50. <Name>Logger</Name>
  51. </ProjectReference>
  52. <ProjectReference Include="..\Component\Component.csproj">
  53. <Project>{0fa529d1-d0a9-4a8e-90f5-117ce80f2ede}</Project>
  54. <Name>Component</Name>
  55. </ProjectReference>
  56. <ProjectReference Include="..\World\World.csproj">
  57. <Project>{cbedbe33-a883-4bfa-ae0a-8b3573f09bd0}</Project>
  58. <Name>World</Name>
  59. </ProjectReference>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Folder Include="Properties\" />
  63. </ItemGroup>
  64. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  65. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  66. Other similar extension points exist, see Microsoft.Common.targets.
  67. <Target Name="BeforeBuild">
  68. </Target>
  69. <Target Name="AfterBuild">
  70. </Target>
  71. -->
  72. </Project>