Common.csproj 4.2 KB

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