1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.30703</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{A7130443-4A70-4FB4-9C29-11137F5F23DC}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>CommonServer_ICE</RootNamespace>
- <AssemblyName>CommonServer_ICE</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <TargetFrameworkProfile>
- </TargetFrameworkProfile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Glacier2, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
- <Reference Include="Ice, Version=3.5.1.0, Culture=neutral, PublicKeyToken=cdd571ade22f2f16, processorArchitecture=MSIL" />
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="handler\ServerTcpSendHandler.cs" />
- <Compile Include="handler\ServerUdpSendHandler.cs" />
- <Compile Include="Msg\MsgSessionPacket.cs" />
- <Compile Include="Msg\ServerMsgHandlerUdpDelegate.cs" />
- <Compile Include="Msg\SeverSendMsgManager.cs" />
- <Compile Include="Msg\SeverSendMsgQueue.cs" />
- <Compile Include="Msg\ServerMsgHandler.cs" />
- <Compile Include="Msg\ServerMsgHandlerTcpDelegate.cs" />
- <Compile Include="Server\IceTcpServerFactory.cs" />
- <Compile Include="Server\IceTcpServer.cs" />
- <Compile Include="Server\IceUdpServer.cs" />
- <Compile Include="Server\IceUdpServerFactory.cs" />
- <Compile Include="Server\TcpServerRouter.cs" />
- <Compile Include="Session\IceServerIoSession.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Server\IceConnectServer.cs" />
- <Compile Include="Server\ServerConfig.cs" />
- <Compile Include="Session\IceServerSessionExpireTask.cs" />
- <Compile Include="Session\SessionManager.cs" />
- <Compile Include="Session\TcpSessionManager.cs" />
- </ItemGroup>
- <ItemGroup />
- <ItemGroup>
- <ProjectReference Include="..\..\Common\CommonLang\CommonLang.csproj">
- <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
- <Name>CommonLang</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\Common\CommonNetwork_ICE\CommonNetwork_ICE.csproj">
- <Project>{2beab1d1-8759-47da-8936-d806fe810fed}</Project>
- <Name>CommonNetwork_ICE</Name>
- </ProjectReference>
- <ProjectReference Include="..\CommonServer\CommonServer.csproj">
- <Project>{71cc36a4-6899-4bb8-8968-682dba861d98}</Project>
- <Name>CommonServer</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <ProjectExtensions>
- <VisualStudio>
- <UserProperties ZerocIce_ExtraOptions="--underscore" ZerocIce_Enabled="False" ZerocIce_OutputDir=".\Ice_gen" ZerocIce_IncludePath=".\Slice" ZerocIce_ProjectVersion="1" />
- </VisualStudio>
- </ProjectExtensions>
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|