Common.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{F06B995E-6508-4C5C-A396-554316C9215D}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Common</RootNamespace>
  11. <AssemblyName>Common</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="MongoDB.Bson">
  34. <HintPath>..\..\packages\MongoDB.Bson.2.0.0-rc0\lib\net45\MongoDB.Bson.dll</HintPath>
  35. </Reference>
  36. <Reference Include="NLog, Version=3.2.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\..\packages\NLog.3.2.0.0\lib\net45\NLog.dll</HintPath>
  39. </Reference>
  40. <Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Numerics" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Base\Component.cs" />
  51. <Compile Include="Base\Entity.cs" />
  52. <Compile Include="Base\MultiMap.cs" />
  53. <Compile Include="Base\Object.cs" />
  54. <Compile Include="Base\QueueDictionary.cs" />
  55. <Compile Include="Base\TimerManager.cs" />
  56. <Compile Include="Helper\BigIntegerHelper.cs" />
  57. <Compile Include="Helper\ByteHelper.cs" />
  58. <Compile Include="Helper\EnumHelper.cs" />
  59. <Compile Include="Helper\LoaderHelper.cs" />
  60. <Compile Include="Helper\MongoHelper.cs" />
  61. <Compile Include="Helper\ProtobufHelper.cs" />
  62. <Compile Include="Helper\RandomHelper.cs" />
  63. <Compile Include="Helper\StringHelper.cs" />
  64. <Compile Include="Helper\TimeHelper.cs" />
  65. <Compile Include="Helper\XmlHelper.cs" />
  66. <Compile Include="Hooks\Native.cs" />
  67. <Compile Include="Logger\ALogDecorater.cs" />
  68. <Compile Include="Logger\ILog.cs" />
  69. <Compile Include="Logger\Log.cs" />
  70. <Compile Include="Logger\NLogAdapter.cs" />
  71. <Compile Include="Logger\StackInfoDecorater.cs" />
  72. <Compile Include="Network\AChannel.cs" />
  73. <Compile Include="Network\IService.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Include="Helper\Packages.config" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  80. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  81. Other similar extension points exist, see Microsoft.Common.targets.
  82. <Target Name="BeforeBuild">
  83. </Target>
  84. <Target Name="AfterBuild">
  85. </Target>
  86. -->
  87. </Project>