CommonServer_ICE.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A7130443-4A70-4FB4-9C29-11137F5F23DC}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CommonServer_ICE</RootNamespace>
  12. <AssemblyName>CommonServer_ICE</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile>
  16. </TargetFrameworkProfile>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="Glacier2, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
  37. <Reference Include="Ice, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="handler\ServerTcpSendHandler.cs" />
  47. <Compile Include="handler\ServerUdpSendHandler.cs" />
  48. <Compile Include="Msg\MsgSessionPacket.cs" />
  49. <Compile Include="Msg\ServerMsgHandlerUdpDelegate.cs" />
  50. <Compile Include="Msg\SeverSendMsgManager.cs" />
  51. <Compile Include="Msg\SeverSendMsgQueue.cs" />
  52. <Compile Include="Msg\ServerMsgHandler.cs" />
  53. <Compile Include="Msg\ServerMsgHandlerTcpDelegate.cs" />
  54. <Compile Include="Server\IceTcpServerFactory.cs" />
  55. <Compile Include="Server\IceTcpServer.cs" />
  56. <Compile Include="Server\IceUdpServer.cs" />
  57. <Compile Include="Server\IceUdpServerFactory.cs" />
  58. <Compile Include="Server\TcpServerRouter.cs" />
  59. <Compile Include="Session\IceServerIoSession.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="Server\IceConnectServer.cs" />
  62. <Compile Include="Server\ServerConfig.cs" />
  63. <Compile Include="Session\IceServerSessionExpireTask.cs" />
  64. <Compile Include="Session\SessionManager.cs" />
  65. <Compile Include="Session\TcpSessionManager.cs" />
  66. </ItemGroup>
  67. <ItemGroup />
  68. <ItemGroup>
  69. <ProjectReference Include="..\..\Common\CommonLang\CommonLang.csproj">
  70. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  71. <Name>CommonLang</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\..\Common\CommonNetwork_ICE\CommonNetwork_ICE.csproj">
  74. <Project>{2beab1d1-8759-47da-8936-d806fe810fed}</Project>
  75. <Name>CommonNetwork_ICE</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\CommonServer\CommonServer.csproj">
  78. <Project>{71cc36a4-6899-4bb8-8968-682dba861d98}</Project>
  79. <Name>CommonServer</Name>
  80. </ProjectReference>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <ProjectExtensions>
  84. <VisualStudio>
  85. <UserProperties ZerocIce_ExtraOptions="--underscore" ZerocIce_Enabled="False" ZerocIce_OutputDir=".\Ice_gen" ZerocIce_IncludePath=".\Slice" ZerocIce_ProjectVersion="1" />
  86. </VisualStudio>
  87. </ProjectExtensions>
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>