Files
CypherCore/Game/Game.csproj
T

519 lines
27 KiB
XML

<?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>{83EF8D5C-AFA1-4546-BCDD-6422D55B1515}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Game</RootNamespace>
<AssemblyName>Game</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\Build\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>false</Optimize>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>..\Build\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\Build\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CodeAnalysisIgnoreGeneratedCode>false</CodeAnalysisIgnoreGeneratedCode>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>..\Build\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="Google.Protobuf">
<HintPath>..\Libs\Google.Protobuf.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Accounts\AccountManager.cs" />
<Compile Include="Accounts\BNetAccountManager.cs" />
<Compile Include="Accounts\RoleAccessControl.cs" />
<Compile Include="Achievements\AchievementManager.cs" />
<Compile Include="Achievements\CriteriaHandler.cs" />
<Compile Include="AI\AISelector.cs" />
<Compile Include="AI\CoreAI\AreaTriggerAI.cs" />
<Compile Include="AI\CoreAI\CombatAI.cs" />
<Compile Include="AI\CoreAI\CreatureAI.cs" />
<Compile Include="AI\CoreAI\GameObjectAI.cs" />
<Compile Include="AI\CoreAI\TotemAI.cs" />
<Compile Include="AI\CoreAI\GuardAI.cs" />
<Compile Include="AI\CoreAI\PassiveAI.cs" />
<Compile Include="AI\CoreAI\PetAI.cs" />
<Compile Include="AI\PlayerAI\PlayerAI.cs" />
<Compile Include="AI\ScriptedAI\ScriptedAI.cs" />
<Compile Include="AI\ScriptedAI\ScriptedFollowerAI.cs" />
<Compile Include="AI\ScriptedAI\ScriptedEscortAI.cs" />
<Compile Include="AI\SmartScripts\SmartAI.cs" />
<Compile Include="AI\SmartScripts\SmartAIManager.cs" />
<Compile Include="AI\SmartScripts\SmartScript.cs" />
<Compile Include="AI\CoreAI\UnitAI.cs" />
<Compile Include="Arenas\Arena.cs" />
<Compile Include="Arenas\ArenaScore.cs" />
<Compile Include="Arenas\ArenaTeam.cs" />
<Compile Include="Arenas\ArenaTeamManager.cs" />
<Compile Include="Arenas\Zones\DalaranSewers.cs" />
<Compile Include="Arenas\Zones\NagrandArena.cs" />
<Compile Include="Arenas\Zones\RingofValor.cs" />
<Compile Include="Arenas\Zones\RuinsofLordaeron.cs" />
<Compile Include="Arenas\Zones\TigersPeak.cs" />
<Compile Include="Arenas\Zones\TolvironArena.cs" />
<Compile Include="BattleFields\BattleField.cs" />
<Compile Include="BattleFields\BattleFieldManager.cs" />
<Compile Include="BattleFields\Zones\WinterGrasp.cs" />
<Compile Include="BattleFields\Zones\WinterGraspConst.cs" />
<Compile Include="BattleGrounds\BattleGround.cs" />
<Compile Include="BattleGrounds\BattleGroundManager.cs" />
<Compile Include="BattleGrounds\BattleGroundQueue.cs" />
<Compile Include="BattleGrounds\BattleGroundScore.cs" />
<Compile Include="BattleGrounds\Zones\AlteracValley.cs" />
<Compile Include="BattleGrounds\Zones\ArathiBasin.cs" />
<Compile Include="Arenas\Zones\BladesEdgeArena.cs" />
<Compile Include="BattleGrounds\Zones\BattleforGilneas.cs" />
<Compile Include="BattleGrounds\Zones\DeepwindGorge.cs" />
<Compile Include="BattleGrounds\Zones\EyeofStorm.cs" />
<Compile Include="BattleGrounds\Zones\IsleofConquest.cs" />
<Compile Include="BattleGrounds\Zones\SilvershardMines.cs" />
<Compile Include="BattleGrounds\Zones\StrandofAncients.cs" />
<Compile Include="BattleGrounds\Zones\TempleofKotmogu.cs" />
<Compile Include="BattleGrounds\Zones\TwinPeaks.cs" />
<Compile Include="BattleGrounds\Zones\WarsongGluch.cs" />
<Compile Include="BattlePets\BattlePetManager.cs" />
<Compile Include="BlackMarket\BlackMarketEntry.cs" />
<Compile Include="BlackMarket\BlackMarketManager.cs" />
<Compile Include="Chat\Channels\ChannelAppenders.cs" />
<Compile Include="Chat\Channels\ChannelManager.cs" />
<Compile Include="Chat\Channels\Channel.cs" />
<Compile Include="Chat\Commands\SceneCommands.cs" />
<Compile Include="Collision\BoundingIntervalHierarchy.cs" />
<Compile Include="Collision\BoundingIntervalHierarchyWrap.cs" />
<Compile Include="Collision\Callbacks.cs" />
<Compile Include="Collision\DynamicTree.cs" />
<Compile Include="Collision\Management\VMapManager.cs" />
<Compile Include="Collision\Maps\MapTree.cs" />
<Compile Include="Collision\Models\GameObjectModel.cs" />
<Compile Include="Collision\Models\IModel.cs" />
<Compile Include="Collision\Models\ModelInstance.cs" />
<Compile Include="Collision\Models\WorldModel.cs" />
<Compile Include="Collision\RegularGrid2D.cs" />
<Compile Include="Combat\HostileRegManager.cs" />
<Compile Include="DataStorage\ClientReader\DB6Meta.cs" />
<Compile Include="DataStorage\ConversationDataStorage.cs" />
<Compile Include="DataStorage\M2Storage.cs" />
<Compile Include="DataStorage\Structs\GameTablesRecords.cs" />
<Compile Include="DataStorage\Structs\M2Structure.cs" />
<Compile Include="DataStorage\Structs\R_Records.cs" />
<Compile Include="Entities\AreaTrigger\AreaTriggerTemplate.cs" />
<Compile Include="Entities\Conversation.cs" />
<Compile Include="Entities\Creature\CreatureData.cs" />
<Compile Include="Entities\GameObject\GameObjectData.cs" />
<Compile Include="Entities\Player\CinematicManager.cs" />
<Compile Include="Entities\Player\CollectionManager.cs" />
<Compile Include="Entities\Player\KillRewarder.cs" />
<Compile Include="Entities\Player\PlayerTaxi.cs" />
<Compile Include="Entities\Player\RestMgr.cs" />
<Compile Include="Entities\Player\SceneMgr.cs" />
<Compile Include="Entities\Player\TradeData.cs" />
<Compile Include="Entities\Taxi\Graph.cs" />
<Compile Include="Entities\Taxi\TaxiPathGraph.cs" />
<Compile Include="DataStorage\AreaTriggerDataStorage.cs" />
<Compile Include="DataStorage\CharacterTemplateDataStorage.cs" />
<Compile Include="Handlers\ArtifactHandler.cs" />
<Compile Include="Handlers\BattlenetHandler.cs" />
<Compile Include="Handlers\BlackMarketHandlers.cs" />
<Compile Include="Handlers\CollectionsHandler.cs" />
<Compile Include="Handlers\HotfixHandler.cs" />
<Compile Include="Handlers\ScenarioHandler.cs" />
<Compile Include="Handlers\SceneHandler.cs" />
<Compile Include="Handlers\TransmogrificationHandler.cs" />
<Compile Include="Loot\Loot.cs" />
<Compile Include="Maps\AreaBoundary.cs" />
<Compile Include="Maps\MMapManager.cs" />
<Compile Include="Movement\Generators\PathGenerator.cs" />
<Compile Include="Movement\Generators\SplineChainMovementGenerator.cs" />
<Compile Include="Network\PacketLog.cs" />
<Compile Include="Network\Packets\AreaTriggerPackets.cs" />
<Compile Include="Network\Packets\ArtifactPackets.cs" />
<Compile Include="Network\Packets\BattlefieldPackets.cs" />
<Compile Include="Network\Packets\BattlenetPackets.cs" />
<Compile Include="Network\Packets\BlackMarketPackets.cs" />
<Compile Include="Network\Packets\CollectionPackets.cs" />
<Compile Include="Network\Packets\GuildFinderPackets.cs" />
<Compile Include="Network\Packets\HotfixPackets.cs" />
<Compile Include="Network\Packets\PetPackets.cs" />
<Compile Include="Network\Packets\ScenarioPackets.cs" />
<Compile Include="Network\Packets\TaxiPackets.cs" />
<Compile Include="Network\Packets\TransmogrificationPackets.cs" />
<Compile Include="Network\Packets\WardenPackets.cs" />
<Compile Include="Scenarios\InstanceScenario.cs" />
<Compile Include="Scenarios\Scenario.cs" />
<Compile Include="Scenarios\ScenarioManager.cs" />
<Compile Include="Services\GameUtilitiesService.cs" />
<Compile Include="Services\ServiceManager.cs" />
<Compile Include="Text\ChatTextBuilder.cs" />
<Compile Include="Chat\CommandAttribute.cs" />
<Compile Include="Chat\CommandHandler.cs" />
<Compile Include="Chat\CommandManager.cs" />
<Compile Include="Chat\Commands\AccountCommands.cs" />
<Compile Include="Chat\Commands\AhBotCommands.cs" />
<Compile Include="Chat\Commands\ArenaCommands.cs" />
<Compile Include="Chat\Commands\BanCommands.cs" />
<Compile Include="Chat\Commands\BattleFieldCommands.cs" />
<Compile Include="Chat\Commands\BNetAccountCommands.cs" />
<Compile Include="Chat\Commands\CastCommands.cs" />
<Compile Include="Chat\Commands\CharacterCommands.cs" />
<Compile Include="Chat\Commands\CheatCommands.cs" />
<Compile Include="Chat\Commands\DebugCommands.cs" />
<Compile Include="Chat\Commands\DeserterCommands.cs" />
<Compile Include="Chat\Commands\DisableCommands.cs" />
<Compile Include="Chat\Commands\EventCommands.cs" />
<Compile Include="Chat\Commands\GameObjectCommands.cs" />
<Compile Include="Chat\Commands\GMCommands.cs" />
<Compile Include="Chat\Commands\GoCommands.cs" />
<Compile Include="Chat\Commands\GroupCommands.cs" />
<Compile Include="Chat\Commands\GuildCommands.cs" />
<Compile Include="Chat\Commands\HonorCommands.cs" />
<Compile Include="Chat\Commands\InstanceCommands.cs" />
<Compile Include="Chat\Commands\LearnCommands.cs" />
<Compile Include="Chat\Commands\LFGCommands.cs" />
<Compile Include="Chat\Commands\ListCommands.cs" />
<Compile Include="Chat\Commands\LookupCommands.cs" />
<Compile Include="Chat\Commands\MessageCommands.cs" />
<Compile Include="Chat\Commands\MiscCommands.cs" />
<Compile Include="Chat\Commands\MMapsCommands.cs" />
<Compile Include="Chat\Commands\ModifyCommands.cs" />
<Compile Include="Chat\Commands\NPCCommands.cs" />
<Compile Include="Chat\Commands\PetCommands.cs" />
<Compile Include="Chat\Commands\QuestCommands.cs" />
<Compile Include="Chat\Commands\RbacCommands.cs" />
<Compile Include="Chat\Commands\ReloadCommand.cs" />
<Compile Include="Chat\Commands\ResetCommands.cs" />
<Compile Include="Chat\Commands\SendCommands.cs" />
<Compile Include="Chat\Commands\ServerCommands.cs" />
<Compile Include="Chat\Commands\SpellCommands.cs" />
<Compile Include="Chat\Commands\TeleCommands.cs" />
<Compile Include="Chat\Commands\TicketCommands.cs" />
<Compile Include="Chat\Commands\TitleCommands.cs" />
<Compile Include="Chat\Commands\WPCommands.cs" />
<Compile Include="Conditions\Condition.cs" />
<Compile Include="Conditions\ConditionManager.cs" />
<Compile Include="DataStorage\DB2Manager.cs" />
<Compile Include="DataStorage\ClientReader\DB6Storage.cs" />
<Compile Include="DataStorage\CliDB.cs" />
<Compile Include="DataStorage\ClientReader\CliDBReader.cs" />
<Compile Include="DataStorage\Structs\A_Records.cs" />
<Compile Include="DataStorage\Structs\B_Records.cs" />
<Compile Include="DataStorage\Structs\C_Records.cs" />
<Compile Include="DataStorage\Structs\D_Records.cs" />
<Compile Include="DataStorage\Structs\G_Records.cs" />
<Compile Include="DataStorage\Structs\H_Records.cs" />
<Compile Include="DataStorage\Structs\I_Records.cs" />
<Compile Include="DataStorage\Structs\K_Records.cs" />
<Compile Include="DataStorage\Structs\M_Records.cs" />
<Compile Include="DataStorage\Structs\N_Records.cs" />
<Compile Include="DataStorage\Structs\O_Records.cs" />
<Compile Include="DataStorage\Structs\P_Records.cs" />
<Compile Include="DataStorage\Structs\Q_Records.cs" />
<Compile Include="DataStorage\Structs\S_Records.cs" />
<Compile Include="DataStorage\Structs\T_Records.cs" />
<Compile Include="DataStorage\Structs\U_Records.cs" />
<Compile Include="DataStorage\Structs\W_Records.cs" />
<Compile Include="DataStorage\Structs\E_Records.cs" />
<Compile Include="DataStorage\Structs\F_Records.cs" />
<Compile Include="DataStorage\Structs\L_Records.cs" />
<Compile Include="DataStorage\Structs\V_Records.cs" />
<Compile Include="DataStorage\ClientReader\GameTables.cs" />
<Compile Include="DataStorage\Structs\MiscStructs.cs" />
<Compile Include="DungeonFinding\LFGGroupData.cs" />
<Compile Include="DungeonFinding\LFGManager.cs" />
<Compile Include="DungeonFinding\LFGPlayerData.cs" />
<Compile Include="DungeonFinding\LFGQueue.cs" />
<Compile Include="DungeonFinding\LFGScripts.cs" />
<Compile Include="Entities\AreaTrigger\AreaTrigger.cs" />
<Compile Include="Entities\Corpse.cs" />
<Compile Include="Entities\Creature\Creature.cs" />
<Compile Include="Entities\Creature\Creature.Fields.cs" />
<Compile Include="Entities\Creature\CreatureGroups.cs" />
<Compile Include="Entities\DynamicObject.cs" />
<Compile Include="Entities\GameObject\GameObject.cs" />
<Compile Include="Entities\Item\Bag.cs" />
<Compile Include="Entities\Item\Item.cs" />
<Compile Include="Entities\Item\ItemEnchantment.cs" />
<Compile Include="Entities\Item\ItemTemplate.cs" />
<Compile Include="Entities\Object\ObjectGuid.cs" />
<Compile Include="Entities\Pet.cs" />
<Compile Include="Entities\Player\Player.Achievement.cs" />
<Compile Include="Entities\Player\Player.Combat.cs" />
<Compile Include="Entities\Player\Player.cs" />
<Compile Include="Entities\Player\Player.DB.cs" />
<Compile Include="Entities\Player\Player.Fields.cs" />
<Compile Include="Entities\Player\Player.Groups.cs" />
<Compile Include="Entities\Player\Player.Items.cs" />
<Compile Include="Entities\Player\Player.Map.cs" />
<Compile Include="Entities\Player\Player.PvP.cs" />
<Compile Include="Entities\Player\Player.Quest.cs" />
<Compile Include="Entities\Player\Player.Spells.cs" />
<Compile Include="Entities\Player\Player.Talents.cs" />
<Compile Include="Entities\Player\SocialMgr.cs" />
<Compile Include="Entities\Object\Position.cs" />
<Compile Include="Entities\StatSystem.cs" />
<Compile Include="Entities\TemporarySummon.cs" />
<Compile Include="Entities\Totem.cs" />
<Compile Include="Entities\Transport.cs" />
<Compile Include="Entities\Unit\CharmInfo.cs" />
<Compile Include="Entities\Unit\Comparer.cs" />
<Compile Include="Combat\Events.cs" />
<Compile Include="Combat\ThreatManager.cs" />
<Compile Include="Entities\Unit\Unit.Combat.cs" />
<Compile Include="Entities\Unit\Unit.cs" />
<Compile Include="Entities\Unit\Unit.Fields.cs" />
<Compile Include="Entities\Unit\Unit.Movement.cs" />
<Compile Include="Entities\Unit\Unit.Pets.cs" />
<Compile Include="Entities\Unit\Unit.Spells.cs" />
<Compile Include="Entities\Object\Update\UpdateData.cs" />
<Compile Include="Entities\Object\Update\UpdateMask.cs" />
<Compile Include="Entities\Vehicle.cs" />
<Compile Include="Entities\Object\WorldObject.cs" />
<Compile Include="Garrisons\GarrisonManager.cs" />
<Compile Include="Garrisons\GarrisonMap.cs" />
<Compile Include="Garrisons\Garrisons.cs" />
<Compile Include="Groups\Group.cs" />
<Compile Include="Groups\GroupManager.cs" />
<Compile Include="Groups\GroupReference.cs" />
<Compile Include="Guilds\Guild.cs" />
<Compile Include="Guilds\GuildFinderManager.cs" />
<Compile Include="Guilds\GuildManager.cs" />
<Compile Include="Handlers\ArenaHandler.cs" />
<Compile Include="Handlers\AuctionHandler.cs" />
<Compile Include="Handlers\AuthenticationHandler.cs" />
<Compile Include="Handlers\BankHandler.cs" />
<Compile Include="Handlers\BattleFieldHandler.cs" />
<Compile Include="Handlers\BattleGroundHandler.cs" />
<Compile Include="Handlers\BattlePetHandler.cs" />
<Compile Include="Handlers\CalendarHandler.cs" />
<Compile Include="Handlers\ChannelHandler.cs" />
<Compile Include="Handlers\CharacterHandler.cs" />
<Compile Include="Handlers\ChatHandler.cs" />
<Compile Include="Handlers\CombatHandler.cs" />
<Compile Include="Handlers\DuelHandler.cs" />
<Compile Include="Handlers\GarrisonHandler.cs" />
<Compile Include="Handlers\GroupHandler.cs" />
<Compile Include="Handlers\GuildFinderHandler.cs" />
<Compile Include="Handlers\GuildHandler.cs" />
<Compile Include="Handlers\InspectHandler.cs" />
<Compile Include="Handlers\ItemHandler.cs" />
<Compile Include="Handlers\LFGHandler.cs" />
<Compile Include="Handlers\LogoutHandler.cs" />
<Compile Include="Handlers\LootHandler.cs" />
<Compile Include="Handlers\MailHandler.cs" />
<Compile Include="Handlers\MiscHandler.cs" />
<Compile Include="Handlers\MovementHandler.cs" />
<Compile Include="Handlers\NPCHandler.cs" />
<Compile Include="Handlers\PetHandler.cs" />
<Compile Include="Handlers\PetitionsHandler.cs" />
<Compile Include="Handlers\QueryHandler.cs" />
<Compile Include="Handlers\QuestHandler.cs" />
<Compile Include="Handlers\RAFHandler.cs" />
<Compile Include="Handlers\SkillHandler.cs" />
<Compile Include="Handlers\SocialHandler.cs" />
<Compile Include="Handlers\SpellHandler.cs" />
<Compile Include="Handlers\TaxiHandler.cs" />
<Compile Include="Handlers\TicketHandler.cs" />
<Compile Include="Handlers\TimeHandler.cs" />
<Compile Include="Handlers\TokenHandler.cs" />
<Compile Include="Handlers\ToyHandler.cs" />
<Compile Include="Handlers\TradeHandler.cs" />
<Compile Include="Handlers\VehicleHandler.cs" />
<Compile Include="Handlers\VoidStorageHandler.cs" />
<Compile Include="Loot\LootManager.cs" />
<Compile Include="Loot\LootStorage.cs" />
<Compile Include="Mails\Mail.cs" />
<Compile Include="Mails\MailDraft.cs" />
<Compile Include="AuctionHouse\AuctionManager.cs" />
<Compile Include="Calendar\CalendarManager.cs" />
<Compile Include="Text\CreatureTextManager.cs" />
<Compile Include="Conditions\DisableManager.cs" />
<Compile Include="Events\GameEventManager.cs" />
<Compile Include="Globals\Global.cs" />
<Compile Include="Globals\ObjectAccessor.cs" />
<Compile Include="Globals\ObjectManager.cs" />
<Compile Include="Pools\PoolManager.cs" />
<Compile Include="Reputation\ReputationManager.cs" />
<Compile Include="Warden\Warden.cs" />
<Compile Include="Warden\WardenKeyGeneration.cs" />
<Compile Include="Warden\WardenModuleWin.cs" />
<Compile Include="Warden\WardenWin.cs" />
<Compile Include="Warden\WargenCheckManager.cs" />
<Compile Include="Weather\WeatherManager.cs" />
<Compile Include="Server\WorldManager.cs" />
<Compile Include="Maps\Cell.cs" />
<Compile Include="Maps\MapUpdater.cs" />
<Compile Include="Maps\Grid.cs" />
<Compile Include="Maps\GridDefines.cs" />
<Compile Include="Maps\GridMap.cs" />
<Compile Include="Maps\GridNotifiers.cs" />
<Compile Include="Maps\Instances\InstanceSaveManager.cs" />
<Compile Include="Maps\Instances\InstanceScript.cs" />
<Compile Include="Maps\Instances\MapInstance.cs" />
<Compile Include="Maps\Map.cs" />
<Compile Include="Maps\MapManager.cs" />
<Compile Include="Maps\ObjectGridLoader.cs" />
<Compile Include="Maps\TransportManager.cs" />
<Compile Include="Maps\ZoneScript.cs" />
<Compile Include="Miscellaneous\Formulas.cs" />
<Compile Include="Entities\Creature\Gossip.cs" />
<Compile Include="Movement\Generators\ConfusedGenerator.cs" />
<Compile Include="Movement\Generators\FleeingGenerator.cs" />
<Compile Include="Movement\Generators\HomeMovement.cs" />
<Compile Include="Movement\Generators\IdleMovement.cs" />
<Compile Include="Movement\Generators\MovementGenerators.cs" />
<Compile Include="Movement\Generators\PointMovement.cs" />
<Compile Include="Movement\Generators\RandomMovement.cs" />
<Compile Include="Movement\Generators\TargetMovement.cs" />
<Compile Include="Movement\Generators\WaypointMovement.cs" />
<Compile Include="Movement\MotionMaster.cs" />
<Compile Include="Movement\MoveSpline.cs" />
<Compile Include="Movement\MoveSplineFlags.cs" />
<Compile Include="Movement\MoveSplineInit.cs" />
<Compile Include="Movement\MoveSplineInitArgs.cs" />
<Compile Include="Movement\Spline.cs" />
<Compile Include="Movement\WaypointManager.cs" />
<Compile Include="Network\Packets\BattlePetPackets.cs" />
<Compile Include="Network\Packets\ToyPackets.cs" />
<Compile Include="Network\WorldSocketManager.cs" />
<Compile Include="OutdoorPVP\OutdoorPvP.cs" />
<Compile Include="OutdoorPVP\OutdoorPvPManager.cs" />
<Compile Include="OutdoorPVP\Zones\HellfirePeninsulaPvP.cs" />
<Compile Include="Network\Packets\AchievementPackets.cs" />
<Compile Include="Network\Packets\AuctionHousePackets.cs" />
<Compile Include="Network\Packets\BankPackets.cs" />
<Compile Include="Network\Packets\BattleGroundPackets.cs" />
<Compile Include="Network\Packets\CalendarPackets.cs" />
<Compile Include="Network\Packets\ChannelPackets.cs" />
<Compile Include="Network\Packets\CharacterPackets.cs" />
<Compile Include="Network\Packets\ChatPackets.cs" />
<Compile Include="Network\Packets\ClientConfigPackets.cs" />
<Compile Include="Network\Packets\CombatLogPackets.cs" />
<Compile Include="Network\Packets\CombatPackets.cs" />
<Compile Include="Network\Packets\DuelPackets.cs" />
<Compile Include="Network\Packets\EquipmentPackets.cs" />
<Compile Include="Network\Packets\GameObjectPackets.cs" />
<Compile Include="Network\Packets\GarrisonPackets.cs" />
<Compile Include="Network\Packets\PartyPackets.cs" />
<Compile Include="Network\Packets\GuildPackets.cs" />
<Compile Include="Network\Packets\InspectPackets.cs" />
<Compile Include="Network\Packets\InstancePackets.cs" />
<Compile Include="Network\Packets\ItemPackets.cs" />
<Compile Include="Network\Packets\LFGPackets.cs" />
<Compile Include="Network\Packets\LootPackets.cs" />
<Compile Include="Network\Packets\MailPackets.cs" />
<Compile Include="Network\Packets\MovementPackets.cs" />
<Compile Include="Network\Packets\NPCPackets.cs" />
<Compile Include="Network\PacketUtilities.cs" />
<Compile Include="Network\Packets\PetitionPackets.cs" />
<Compile Include="Network\Packets\QueryPackets.cs" />
<Compile Include="Network\Packets\QuestPackets.cs" />
<Compile Include="Network\Packets\ReferAFriendPackets.cs" />
<Compile Include="Network\Packets\ReputationPackets.cs" />
<Compile Include="Network\Packets\ScenePackets.cs" />
<Compile Include="Network\Packets\SocialPackets.cs" />
<Compile Include="Network\Packets\SpellPackets.cs" />
<Compile Include="Network\Packets\SystemPackets.cs" />
<Compile Include="Network\Packets\TalentPackets.cs" />
<Compile Include="Network\Packets\TicketPackets.cs" />
<Compile Include="Network\Packets\TokenPackets.cs" />
<Compile Include="Network\Packets\TotemPackets.cs" />
<Compile Include="Network\Packets\TradePackets.cs" />
<Compile Include="Network\Packets\UpdatePackets.cs" />
<Compile Include="Network\Packets\VehiclePackets.cs" />
<Compile Include="Network\Packets\VoidStoragePackets.cs" />
<Compile Include="Network\Packets\WhoPackets.cs" />
<Compile Include="Network\Packets\WorldStatePackets.cs" />
<Compile Include="Quest\Quest.cs" />
<Compile Include="Scripting\CoreScripts.cs" />
<Compile Include="Scripting\ScriptManager.cs" />
<Compile Include="Scripting\SpellScript.cs" />
<Compile Include="Server\WorldConfig.cs" />
<Compile Include="Server\WorldSession.cs" />
<Compile Include="Network\Packet.cs" />
<Compile Include="Network\PacketManager.cs" />
<Compile Include="Network\WorldSocket.cs" />
<Compile Include="Network\Packets\AuthenticationPackets.cs" />
<Compile Include="Network\Packets\MiscPackets.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Spells\Auras\Aura.cs" />
<Compile Include="Spells\Auras\AuraEffect.cs" />
<Compile Include="Spells\Skills\SkillDiscovery.cs" />
<Compile Include="Spells\Skills\SkillExtraItems.cs" />
<Compile Include="Spells\Spell.cs" />
<Compile Include="Spells\SpellCastTargets.cs" />
<Compile Include="Spells\SpellEffects.cs" />
<Compile Include="Spells\SpellHistory.cs" />
<Compile Include="Spells\SpellInfo.cs" />
<Compile Include="Spells\SpellManager.cs" />
<Compile Include="SupportSystem\SupportTickets.cs" />
<Compile Include="SupportSystem\SupportManager.cs" />
<Compile Include="Tools\CharacterDatabaseCleaner.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Framework\Framework.csproj">
<Project>{82d442a9-18c0-4c59-8ec6-0dfe3e34d334}</Project>
<Name>Framework</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<!-- 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>