TNet.csproj 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>{B1B78524-3F75-40D7-BF12-10B25A00C590}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>TNet</RootNamespace>
  11. <AssemblyName>TNet</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="System" />
  39. <Reference Include="System.Core" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="IPoller.cs" />
  43. <Compile Include="PacketParser.cs" />
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. <Compile Include="TBuffer.cs" />
  46. <Compile Include="TChannel.cs" />
  47. <Compile Include="TPoller.cs" />
  48. <Compile Include="TService.cs" />
  49. <Compile Include="TSocket.cs" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\Common\Common.csproj">
  53. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  54. <Name>Common</Name>
  55. </ProjectReference>
  56. </ItemGroup>
  57. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  58. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  59. Other similar extension points exist, see Microsoft.Common.targets.
  60. <Target Name="BeforeBuild">
  61. </Target>
  62. <Target Name="AfterBuild">
  63. </Target>
  64. -->
  65. </Project>