TrueCraft/TrueCraft.Core/TrueCraft.Core.csproj

219 lines
12 KiB
XML
Raw Normal View History

2014-12-26 22:35:26 -07:00
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{FA4BE9A3-DBF0-4380-BA2B-FFAA71C4706D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>TrueCraft.Core</RootNamespace>
<AssemblyName>TrueCraft.Core</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Ionic.Zip.Reduced">
<HintPath>..\lib\Ionic.Zip.Reduced.dll</HintPath>
</Reference>
2014-12-26 22:35:26 -07:00
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Networking\MinecraftStream.cs" />
<Compile Include="Networking\PacketReader.cs" />
<Compile Include="Networking\Packets\HandshakePacket.cs" />
<Compile Include="Networking\Packets\HandshakeResponsePacket.cs" />
<Compile Include="Networking\Packets\KeepAlivePacket.cs" />
<Compile Include="Networking\Packets\LoginRequestPacket.cs" />
<Compile Include="Networking\Packets\LoginResponsePacket.cs" />
<Compile Include="Networking\Packets\ChatMessagePacket.cs" />
<Compile Include="Networking\Packets\TimeUpdatePacket.cs" />
<Compile Include="Networking\Packets\EntityEquipmentPacket.cs" />
<Compile Include="Networking\Packets\SpawnPositionPacket.cs" />
<Compile Include="Networking\Packets\UseEntityPacket.cs" />
<Compile Include="Networking\Packets\UpdateHealthPacket.cs" />
<Compile Include="Networking\Packets\RespawnPacket.cs" />
<Compile Include="Networking\Packets\PlayerGroundedPacket.cs" />
<Compile Include="Networking\Packets\PlayerPositionPacket.cs" />
<Compile Include="Networking\Packets\PlayerLookPacket.cs" />
<Compile Include="Networking\Packets\PlayerPositionAndLookPacket.cs" />
<Compile Include="Networking\Packets\SetPlayerPositionPacket.cs" />
<Compile Include="Networking\Packets\PlayerDiggingPacket.cs" />
<Compile Include="Networking\Packets\PlayerBlockPlacementPacket.cs" />
<Compile Include="Networking\Packets\ChangeHeldItemPacket.cs" />
<Compile Include="Networking\Packets\UseBedPacket.cs" />
<Compile Include="Networking\Packets\AnimationPacket.cs" />
<Compile Include="Networking\Packets\PlayerActionPacket.cs" />
<Compile Include="Networking\Packets\SpawnPlayerPacket.cs" />
<Compile Include="Networking\Packets\SpawnItemPacket.cs" />
<Compile Include="Networking\Packets\CollectItemPacket.cs" />
<Compile Include="Networking\Packets\SpawnGenericEntityPacket.cs" />
<Compile Include="Networking\Packets\SpawnMobPacket.cs" />
<Compile Include="Networking\Packets\SpawnPaintingPacket.cs" />
<Compile Include="Networking\Packets\EntityVelocityPacket.cs" />
<Compile Include="Networking\Packets\UselessEntityPacket.cs" />
<Compile Include="Networking\Packets\EntityRelativeMovePacket.cs" />
<Compile Include="Networking\Packets\EntityLookPacket.cs" />
<Compile Include="Networking\Packets\EntityLookAndRelativeMovePacket.cs" />
<Compile Include="Networking\Packets\EntityTeleportPacket.cs" />
<Compile Include="Networking\Packets\EntityStatusPacket.cs" />
<Compile Include="Networking\Packets\AttachEntityPacket.cs" />
<Compile Include="Networking\Packets\EntityMetadataPacket.cs" />
<Compile Include="Networking\Packets\ChunkPreamblePacket.cs" />
<Compile Include="Networking\Packets\ChunkDataPacket.cs" />
<Compile Include="Networking\Packets\BulkBlockChangePacket.cs" />
<Compile Include="Networking\Packets\BlockChangePacket.cs" />
<Compile Include="Networking\Packets\BlockActionPacket.cs" />
<Compile Include="Networking\Packets\SoundEffectPacket.cs" />
<Compile Include="Networking\Packets\EnvironmentStatePacket.cs" />
<Compile Include="Networking\Packets\LightningPacket.cs" />
<Compile Include="Networking\Packets\OpenWindowPacket.cs" />
<Compile Include="Networking\Packets\CloseWindow.cs" />
<Compile Include="Networking\Packets\ClickWindowPacket.cs" />
<Compile Include="Networking\Packets\SetSlotPacket.cs" />
<Compile Include="Networking\Packets\WindowItemsPacket.cs" />
<Compile Include="Networking\Packets\UpdateProgressPacket.cs" />
<Compile Include="Networking\Packets\TransactionStatusPacket.cs" />
<Compile Include="Networking\Packets\UpdateSignPacket.cs" />
<Compile Include="Networking\Packets\MapDataPacket.cs" />
<Compile Include="Networking\Packets\UpdateStatisticPacket.cs" />
<Compile Include="Networking\Packets\DisconnectPacket.cs" />
<Compile Include="World\Chunk.cs" />
<Compile Include="World\Region.cs" />
<Compile Include="World\World.cs" />
2014-12-27 18:19:41 -07:00
<Compile Include="TerrainGen\FlatlandGenerator.cs" />
<Compile Include="Logging\ConsoleLogProvider.cs" />
<Compile Include="Networking\BufferedStream.cs" />
<Compile Include="Networking\Packets\DestroyEntityPacket.cs" />
<Compile Include="Networking\Packets\ExplosionPacket.cs" />
<Compile Include="Windows\Window.cs" />
<Compile Include="Windows\ArmorWindowArea.cs" />
<Compile Include="Windows\CraftingWindowArea.cs" />
<Compile Include="Windows\InventoryWindow.cs" />
<Compile Include="Windows\WindowArea.cs" />
2014-12-28 15:38:58 -07:00
<Compile Include="Logic\BlockProvider.cs" />
2014-12-28 18:55:46 -07:00
<Compile Include="Logic\Blocks\BedBlock.cs" />
<Compile Include="Logic\Blocks\BedrockBlock.cs" />
<Compile Include="Logic\Blocks\BookshelfBlock.cs" />
<Compile Include="Logic\Blocks\BricksBlock.cs" />
<Compile Include="Logic\Blocks\ButtonBlock.cs" />
<Compile Include="Logic\Blocks\CactusBlock.cs" />
<Compile Include="Logic\Blocks\CakeBlock.cs" />
<Compile Include="Logic\Blocks\ChestBlock.cs" />
<Compile Include="Logic\Blocks\ClayBlock.cs" />
<Compile Include="Logic\Blocks\CoalOreBlock.cs" />
<Compile Include="Logic\Blocks\CobblestoneBlock.cs" />
<Compile Include="Logic\Blocks\CobwebBlock.cs" />
<Compile Include="Logic\Blocks\CraftingTableBlock.cs" />
<Compile Include="Logic\Blocks\CropsBlock.cs" />
<Compile Include="Logic\Blocks\DetectorRailBlock.cs" />
<Compile Include="Logic\Blocks\DiamondOreBlock.cs" />
<Compile Include="Logic\Blocks\DirtBlock.cs" />
<Compile Include="Logic\Blocks\DispenserBlock.cs" />
<Compile Include="Logic\Blocks\FarmlandBlock.cs" />
<Compile Include="Logic\Blocks\FenceBlock.cs" />
<Compile Include="Logic\Blocks\FireBlock.cs" />
<Compile Include="Logic\Blocks\FlowerBlock.cs" />
<Compile Include="Logic\Blocks\FurnaceBlock.cs" />
<Compile Include="Logic\Blocks\GlassBlock.cs" />
<Compile Include="Logic\Blocks\GlowstoneBlock.cs" />
<Compile Include="Logic\Blocks\GoldOreBlock.cs" />
<Compile Include="Logic\Blocks\GrassBlock.cs" />
<Compile Include="Logic\Blocks\GravelBlock.cs" />
<Compile Include="Logic\Blocks\IceBlock.cs" />
<Compile Include="Logic\Blocks\IronDoorBlock.cs" />
<Compile Include="Logic\Blocks\IronOreBlock.cs" />
<Compile Include="Logic\Blocks\JackoLanternBlock.cs" />
<Compile Include="Logic\Blocks\JukeboxBlock.cs" />
<Compile Include="Logic\Blocks\LadderBlock.cs" />
<Compile Include="Logic\Blocks\LapisLazuliOreBlock.cs" />
<Compile Include="Logic\Blocks\LavaBlock.cs" />
<Compile Include="Logic\Blocks\LeavesBlock.cs" />
<Compile Include="Logic\Blocks\LeverBlock.cs" />
<Compile Include="Logic\Blocks\MonsterSpawnerBlock.cs" />
<Compile Include="Logic\Blocks\MossStoneBlock.cs" />
<Compile Include="Logic\Blocks\MushroomBlock.cs" />
<Compile Include="Logic\Blocks\NetherrackBlock.cs" />
<Compile Include="Logic\Blocks\NoteBlockBlock.cs" />
<Compile Include="Logic\Blocks\ObsidianBlock.cs" />
<Compile Include="Logic\Blocks\PistonBlock.cs" />
<Compile Include="Logic\Blocks\PortalBlock.cs" />
<Compile Include="Logic\Blocks\PoweredRailBlock.cs" />
<Compile Include="Logic\Blocks\PressurePlateBlock.cs" />
<Compile Include="Logic\Blocks\PumpkinBlock.cs" />
<Compile Include="Logic\Blocks\RailBlock.cs" />
<Compile Include="Logic\Blocks\RedstoneDustBlock.cs" />
<Compile Include="Logic\Blocks\RedstoneOreBlock.cs" />
<Compile Include="Logic\Blocks\RedstoneTorchBlock.cs" />
<Compile Include="Logic\Blocks\RoseBlock.cs" />
<Compile Include="Logic\Blocks\SandBlock.cs" />
<Compile Include="Logic\Blocks\SandstoneBlock.cs" />
<Compile Include="Logic\Blocks\SaplingBlock.cs" />
<Compile Include="Logic\Blocks\SignBlock.cs" />
<Compile Include="Logic\Blocks\SnowBlock.cs" />
<Compile Include="Logic\Blocks\SoulSandBlock.cs" />
<Compile Include="Logic\Blocks\SpongeBlock.cs" />
<Compile Include="Logic\Blocks\StoneBlock.cs" />
<Compile Include="Logic\Blocks\StoneStairsBlock.cs" />
<Compile Include="Logic\Blocks\SugarcaneBlock.cs" />
<Compile Include="Logic\Blocks\TNTBlock.cs" />
<Compile Include="Logic\Blocks\TorchBlock.cs" />
<Compile Include="Logic\Blocks\TrapdoorBlock.cs" />
<Compile Include="Logic\Blocks\WaterBlock.cs" />
<Compile Include="Logic\Blocks\WoodBlock.cs" />
<Compile Include="Logic\Blocks\WoodenDoorBlock.cs" />
<Compile Include="Logic\Blocks\WoodenPlanksBlock.cs" />
<Compile Include="Logic\Blocks\WoodenStairsBlock.cs" />
<Compile Include="Logic\Blocks\WoolBlock.cs" />
<Compile Include="Logic\Blocks\DeadBushBlock.cs" />
<Compile Include="Logic\Blocks\RedstoneRepeaterBlock.cs" />
<Compile Include="Logic\Blocks\GoldBlock.cs" />
<Compile Include="Logic\Blocks\IronBlock.cs" />
<Compile Include="Logic\Blocks\DiamondBlock.cs" />
<Compile Include="Logic\Blocks\LapisLazuliBlock.cs" />
<Compile Include="Logic\Blocks\LockedChestBlock.cs" />
<Compile Include="Logic\Blocks\TallGrassBlock.cs" />
<Compile Include="Logic\Blocks\StoneSlabBlock.cs" />
2014-12-28 20:13:23 -07:00
<Compile Include="MathHelper.cs" />
2015-01-01 19:21:46 -07:00
<Compile Include="TerrainGen\Noise.cs" />
<Compile Include="TerrainGen\StandardGenerator.cs" />
<Compile Include="Logging\PacketLogging.cs" />
<Compile Include="Logging\FileLogProvider.cs" />
2014-12-26 22:35:26 -07:00
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\TrueCraft.API\TrueCraft.API.csproj">
<Project>{FEE55B54-91B0-4325-A2C3-D576C0B7A81F}</Project>
<Name>TrueCraft.API</Name>
</ProjectReference>
<ProjectReference Include="..\externals\fNbt\fNbt\fNbt.csproj">
<Project>{4488498D-976D-4DA3-BF72-109531AF0488}</Project>
<Name>fNbt</Name>
</ProjectReference>
2014-12-26 22:35:26 -07:00
</ItemGroup>
<ItemGroup>
<Folder Include="Networking\Packets\" />
<Folder Include="World\" />
2014-12-27 18:19:41 -07:00
<Folder Include="Logging\" />
<Folder Include="Windows\" />
2014-12-28 15:38:58 -07:00
<Folder Include="Logic\" />
<Folder Include="Logic\Blocks\" />
2014-12-26 22:35:26 -07:00
</ItemGroup>
</Project>