| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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>{F06B995E-6508-4C5C-A396-554316C9215D}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Common</RootNamespace>
- <AssemblyName>Common</AssemblyName>
- <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <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="MongoDB.Bson, Version=2.0.1.27, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\..\packages\MongoDB.Bson.2.0.1\lib\net45\MongoDB.Bson.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="NLog">
- <HintPath>..\..\packages\NLog.4.1.1\lib\net45\NLog.dll</HintPath>
- </Reference>
- <Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Numerics" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Base\Component.cs" />
- <Compile Include="Base\Entity.cs" />
- <Compile Include="Base\MultiMap.cs" />
- <Compile Include="Base\Object.cs" />
- <Compile Include="Base\QueueDictionary.cs" />
- <Compile Include="Base\TimerManager.cs" />
- <Compile Include="Helper\BigIntegerHelper.cs" />
- <Compile Include="Helper\ByteHelper.cs" />
- <Compile Include="Helper\EnumHelper.cs" />
- <Compile Include="Helper\LoaderHelper.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\XmlHelper.cs" />
- <Compile Include="Hooks\Native.cs" />
- <Compile Include="Logger\ALogDecorater.cs" />
- <Compile Include="Logger\ILog.cs" />
- <Compile Include="Logger\Log.cs" />
- <Compile Include="Logger\NLogAdapter.cs" />
- <Compile Include="Logger\StackInfoDecorater.cs" />
- <Compile Include="Network\AChannel.cs" />
- <Compile Include="Network\IService.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="Helper\Packages.config" />
- </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>
|