| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="14.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>{AFBAD3D5-C827-4BA6-9940-7060B6C39306}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Base</RootNamespace>
- <AssemblyName>Base</AssemblyName>
- <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </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="ICSharpCode.SharpZipLib">
- <HintPath>..\Lib\ICSharpCode.SharpZipLib.dll</HintPath>
- </Reference>
- <Reference Include="MongoDB.Bson">
- <HintPath>..\Lib\MongoDB.Bson.dll</HintPath>
- </Reference>
- <Reference Include="NLog">
- <HintPath>..\Lib\NLog.dll</HintPath>
- </Reference>
- <Reference Include="protobuf-net">
- <HintPath>..\Lib\protobuf-net.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Config\ACategory.cs" />
- <Compile Include="Config\AConfig.cs" />
- <Compile Include="Config\ConfigAttribute.cs" />
- <Compile Include="Config\ICategory.cs" />
- <Compile Include="DoubleMap.cs" />
- <Compile Include="Helper\ArrayHelper.cs" />
- <Compile Include="Helper\ByteHelper.cs" />
- <Compile Include="Helper\EnumHelper.cs" />
- <Compile Include="Helper\FileHelper.cs" />
- <Compile Include="Helper\IdGenerater.cs" />
- <Compile Include="Helper\MD5Helper.cs" />
- <Compile Include="Helper\MongoHelper.cs" />
- <Compile Include="Helper\ProtobufHelper.cs" />
- <Compile Include="Helper\RandomHelper.cs" />
- <Compile Include="Helper\StringHelper.cs" />
- <Compile Include="Helper\TimeHelper.cs" />
- <Compile Include="Helper\ZipHelper.cs" />
- <Compile Include="Log.cs" />
- <Compile Include="MultiMap.cs" />
- <Compile Include="Network\AChannel.cs" />
- <Compile Include="Network\AService.cs" />
- <Compile Include="Network\TNet\PacketParser.cs" />
- <Compile Include="Network\TNet\TBuffer.cs" />
- <Compile Include="Network\TNet\TChannel.cs" />
- <Compile Include="Network\TNet\TPoller.cs" />
- <Compile Include="Network\TNet\TService.cs" />
- <Compile Include="Network\TNet\TSocket.cs" />
- <Compile Include="Network\UNet\Library.cs" />
- <Compile Include="Network\UNet\NativeMethods.cs" />
- <Compile Include="Network\UNet\NativeStructs.cs" />
- <Compile Include="Network\UNet\UAddress.cs" />
- <Compile Include="Network\UNet\UChannel.cs" />
- <Compile Include="Network\UNet\UPacket.cs" />
- <Compile Include="Network\UNet\UPoller.cs" />
- <Compile Include="Network\UNet\UService.cs" />
- <Compile Include="Network\UNet\USocket.cs" />
- <Compile Include="Network\UNet\USocketManager.cs" />
- <Compile Include="Object\Component.cs" />
- <Compile Include="Object\Entity.cs" />
- <Compile Include="Object\IAwake.cs" />
- <Compile Include="Object\ILoader.cs" />
- <Compile Include="Object\IStart.cs" />
- <Compile Include="Object\IUpdate.cs" />
- <Compile Include="Object\Object.cs" />
- <Compile Include="Object\ObjectEventAttribute.cs" />
- <Compile Include="Object\ObjectManager.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="QueueDictionary.cs" />
- <Compile Include="TryLocker.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- 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>
|