Common.csproj 4.0 KB

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