CommonNetwork_ICE.csproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{2BEAB1D1-8759-47DA-8936-D806FE810FED}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CommonNetwork_ICE</RootNamespace>
  11. <AssemblyName>CommonNetwork_ICE</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Glacier2, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
  36. <Reference Include="Ice, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Common\IceConfig.cs" />
  42. <Compile Include="Common\IceConnector.cs" />
  43. <Compile Include="Common\IceInit.cs" />
  44. <Compile Include="Common\IceMessageCodec.cs" />
  45. <Compile Include="Connector\IceClientConnector.cs" />
  46. <Compile Include="Connector\IceUdpClient.cs" />
  47. <Compile Include="Connector\TcpRouterClient.cs" />
  48. <Compile Include="handler\ClientTcpSendHandler.cs" />
  49. <Compile Include="handler\ClientUdpSendHandler.cs" />
  50. <Compile Include="handler\TcpServerCallbackImpl.cs" />
  51. <Compile Include="Ice_gen\Slice\send.cs" />
  52. <Compile Include="Msg\ClientMessageQueue.cs" />
  53. <Compile Include="Msg\ClientMsgHandler.cs" />
  54. <Compile Include="Msg\ClientMsgHandlerTcpDelegate.cs" />
  55. <Compile Include="Properties\AssemblyInfo.cs" />
  56. <Compile Include="Session\IceClientNetSession.cs" />
  57. <Compile Include="Session\IceUdpClientNetSession.cs" />
  58. <Compile Include="Session\SessionPingThread.cs" />
  59. <Compile Include="Util\Constants.cs" />
  60. <Compile Include="Util\DateUtil.cs" />
  61. <Compile Include="Util\Env.cs" />
  62. <Compile Include="Util\Error.cs" />
  63. <Compile Include="Util\NetUtil.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ProjectReference Include="..\CommonLang\CommonLang.csproj">
  67. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  68. <Name>CommonLang</Name>
  69. </ProjectReference>
  70. <ProjectReference Include="..\CommonNetwork\CommonNetwork.csproj">
  71. <Project>{6c114f8f-ee02-4f15-8f3a-93691896d15f}</Project>
  72. <Name>CommonNetwork</Name>
  73. </ProjectReference>
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Compile Include="Connector\IceTcpClient.cs" />
  77. <Compile Include="Msg\ClientMsgHandlerUdpDelegate.cs" />
  78. <Compile Include="Session\IceTcpClientNetSession.cs" />
  79. <None Include="Slice\send.ice" />
  80. </ItemGroup>
  81. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  82. <ProjectExtensions>
  83. <VisualStudio>
  84. <UserProperties ZerocIce_ExtraOptions="--underscore" ZerocIce_ProjectVersion="1" ZerocIce_IncludePath=".\Slice" ZerocIce_OutputDir=".\Ice_gen" ZerocIce_Enabled="True" />
  85. </VisualStudio>
  86. </ProjectExtensions>
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>