| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.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>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Model</RootNamespace>
- <AssemblyName>Model</AssemblyName>
- <TargetFrameworkVersion>v4.5</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="CommandLine">
- <HintPath>..\..\packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
- </Reference>
- <Reference Include="MongoDB.Bson">
- <HintPath>..\..\packages\MongoDB.Bson.2.0.0-rc0\lib\net45\MongoDB.Bson.dll</HintPath>
- </Reference>
- <Reference Include="MongoDB.Driver">
- <HintPath>..\..\packages\MongoDB.Driver.2.0.0-rc0\lib\net45\MongoDB.Driver.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ACategory.cs" />
- <Compile Include="AConfig.cs" />
- <Compile Include="AEventAttribute.cs" />
- <Compile Include="BehaviorTree\BehaviorTree.cs" />
- <Compile Include="BehaviorTree\BehaviorTreeFactory.cs" />
- <Compile Include="BehaviorTree\BlackBoard.cs" />
- <Compile Include="BehaviorTree\Node.cs" />
- <Compile Include="BehaviorTree\NodeAttribute.cs" />
- <Compile Include="Buff.cs" />
- <Compile Include="BuffType.cs" />
- <Compile Include="Component\ActorComponent.cs" />
- <Compile Include="Component\BehaviorTreeComponent.cs" />
- <Compile Include="Component\BuffComponent.cs" />
- <Compile Include="Component\ChannelUnitInfoComponent.cs" />
- <Compile Include="Component\ConfigComponent.cs" />
- <Compile Include="Component\EventComponent.cs" />
- <Compile Include="Component\FactoryComponent.cs" />
- <Compile Include="Component\NetworkComponent.cs" />
- <Compile Include="Component\TimerComponent.cs" />
- <Compile Include="Component\UnitComponent.cs" />
- <Compile Include="ConfigAttribute.cs" />
- <Compile Include="Config\BuffConfig.cs" />
- <Compile Include="Config\GlobalConfig.cs" />
- <Compile Include="Config\NodeConfig.cs" />
- <Compile Include="Config\ServerInfoConfig.cs" />
- <Compile Include="Config\UnitConfig.cs" />
- <Compile Include="Env.cs" />
- <Compile Include="EnvKey.cs" />
- <Compile Include="EventAttribute.cs" />
- <Compile Include="EventType.cs" />
- <Compile Include="FactoryAttribute.cs" />
- <Compile Include="IAssemblyLoader.cs" />
- <Compile Include="ICategory.cs" />
- <Compile Include="IConfigLoader.cs" />
- <Compile Include="IEventAsync.cs" />
- <Compile Include="IEventSync.cs" />
- <Compile Include="IFactory.cs" />
- <Compile Include="IStart.cs" />
- <Compile Include="IUpdate.cs" />
- <Compile Include="MessageAttribute.cs" />
- <Compile Include="Options.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="ServerType.cs" />
- <Compile Include="Unit.cs" />
- <Compile Include="UnitType.cs" />
- <Compile Include="World.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>
- -->
- <ItemGroup>
- <ProjectReference Include="..\..\Platform\Common\Common.csproj">
- <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
- <Name>Common</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\Platform\UNet\UNet.csproj">
- <Project>{D3CEA64F-4D75-4DC9-B139-8D12EB4ACF8E}</Project>
- <Name>UNet</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\Platform\TNet\TNet.csproj">
- <Project>{B1B78524-3F75-40D7-BF12-10B25A00C590}</Project>
- <Name>TNet</Name>
- </ProjectReference>
- </ItemGroup>
- </Project>
|