12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{2BEAB1D1-8759-47DA-8936-D806FE810FED}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>CommonNetwork_ICE</RootNamespace>
- <AssemblyName>CommonNetwork_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" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Common\IceConfig.cs" />
- <Compile Include="Common\IceConnector.cs" />
- <Compile Include="Common\IceInit.cs" />
- <Compile Include="Common\IceMessageCodec.cs" />
- <Compile Include="Connector\IceClientConnector.cs" />
- <Compile Include="Connector\IceUdpClient.cs" />
- <Compile Include="Connector\TcpRouterClient.cs" />
- <Compile Include="handler\ClientTcpSendHandler.cs" />
- <Compile Include="handler\ClientUdpSendHandler.cs" />
- <Compile Include="handler\TcpServerCallbackImpl.cs" />
- <Compile Include="Ice_gen\Slice\send.cs" />
- <Compile Include="Msg\ClientMessageQueue.cs" />
- <Compile Include="Msg\ClientMsgHandler.cs" />
- <Compile Include="Msg\ClientMsgHandlerTcpDelegate.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Session\IceClientNetSession.cs" />
- <Compile Include="Session\IceUdpClientNetSession.cs" />
- <Compile Include="Session\SessionPingThread.cs" />
- <Compile Include="Util\Constants.cs" />
- <Compile Include="Util\DateUtil.cs" />
- <Compile Include="Util\Env.cs" />
- <Compile Include="Util\Error.cs" />
- <Compile Include="Util\NetUtil.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\CommonLang\CommonLang.csproj">
- <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
- <Name>CommonLang</Name>
- </ProjectReference>
- <ProjectReference Include="..\CommonNetwork\CommonNetwork.csproj">
- <Project>{6c114f8f-ee02-4f15-8f3a-93691896d15f}</Project>
- <Name>CommonNetwork</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Connector\IceTcpClient.cs" />
- <Compile Include="Msg\ClientMsgHandlerUdpDelegate.cs" />
- <Compile Include="Session\IceTcpClientNetSession.cs" />
- <None Include="Slice\send.ice" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <ProjectExtensions>
- <VisualStudio>
- <UserProperties ZerocIce_ExtraOptions="--underscore" ZerocIce_ProjectVersion="1" ZerocIce_IncludePath=".\Slice" ZerocIce_OutputDir=".\Ice_gen" ZerocIce_Enabled="True" />
- </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>
|