2015-02-21 13:25:44 -05:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<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>{FEE55B54-91B0-4325-A2C3-D576C0B7A81F}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>TrueCraft.API</RootNamespace>
|
|
|
|
|
<AssemblyName>TrueCraft.API</AssemblyName>
|
2015-05-12 16:48:58 -06:00
|
|
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
2014-12-26 22:35:26 -07:00
|
|
|
|
</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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2015-05-21 23:09:17 +02:00
|
|
|
|
<DebugType>none</DebugType>
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<ConsolePause>false</ConsolePause>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
2015-05-16 13:00:28 +02:00
|
|
|
|
<Reference Include="YamlDotNet">
|
|
|
|
|
<HintPath>..\packages\YamlDotNet.3.5.1\lib\net35\YamlDotNet.dll</HintPath>
|
|
|
|
|
</Reference>
|
2014-12-26 22:35:26 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2015-05-16 13:00:28 +02:00
|
|
|
|
<Compile Include="Configuration.cs" />
|
2015-02-04 17:00:13 +02:00
|
|
|
|
<Compile Include="Coordinates3D.cs" />
|
2015-05-16 12:00:34 +02:00
|
|
|
|
<Compile Include="IAccessConfiguration.cs" />
|
2015-01-26 00:38:58 -05:00
|
|
|
|
<Compile Include="PlantSpecies.cs" />
|
|
|
|
|
<Compile Include="OreTypes.cs" />
|
2015-01-26 06:17:42 -05:00
|
|
|
|
<Compile Include="ToolMaterial.cs" />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Networking\IPacket.cs" />
|
|
|
|
|
<Compile Include="Networking\IPacketReader.cs" />
|
|
|
|
|
<Compile Include="Networking\IMinecraftStream.cs" />
|
|
|
|
|
<Compile Include="GameMode.cs" />
|
|
|
|
|
<Compile Include="Difficulty.cs" />
|
|
|
|
|
<Compile Include="Dimension.cs" />
|
|
|
|
|
<Compile Include="BoundingBox.cs" />
|
2015-02-04 17:00:13 +02:00
|
|
|
|
<Compile Include="Coordinates2D.cs" />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<Compile Include="ItemStack.cs" />
|
|
|
|
|
<Compile Include="MetadataByte.cs" />
|
|
|
|
|
<Compile Include="MetadataDictionary.cs" />
|
|
|
|
|
<Compile Include="MetadataEntry.cs" />
|
|
|
|
|
<Compile Include="MetadataFloat.cs" />
|
|
|
|
|
<Compile Include="MetadataInt.cs" />
|
|
|
|
|
<Compile Include="MetadataShort.cs" />
|
|
|
|
|
<Compile Include="MetadataSlot.cs" />
|
|
|
|
|
<Compile Include="MetadataString.cs" />
|
|
|
|
|
<Compile Include="Ray.cs" />
|
2015-01-23 04:03:28 -05:00
|
|
|
|
<Compile Include="Server\ICommand.cs" />
|
|
|
|
|
<Compile Include="Server\ICommandManager.cs" />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<Compile Include="Size.cs" />
|
2015-01-26 00:38:58 -05:00
|
|
|
|
<Compile Include="TreeSpecies.cs" />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<Compile Include="Vector3.cs" />
|
|
|
|
|
<Compile Include="Server\IMultiplayerServer.cs" />
|
|
|
|
|
<Compile Include="Networking\IRemoteClient.cs" />
|
2015-01-26 00:38:58 -05:00
|
|
|
|
<Compile Include="World\IBiomeRepository.cs" />
|
|
|
|
|
<Compile Include="World\IBiomeMap.cs" />
|
2015-01-26 00:38:58 -05:00
|
|
|
|
<Compile Include="World\IBiomeProvider.cs" />
|
|
|
|
|
<Compile Include="World\IChunkDecorator.cs" />
|
2015-01-26 00:38:58 -05:00
|
|
|
|
<Compile Include="World\INoise.cs" />
|
2015-03-01 00:24:29 -05:00
|
|
|
|
<Compile Include="World\IDecoration.cs" />
|
2014-12-27 12:34:55 -07:00
|
|
|
|
<Compile Include="World\IWorld.cs" />
|
|
|
|
|
<Compile Include="World\IChunk.cs" />
|
|
|
|
|
<Compile Include="World\IChunkProvider.cs" />
|
|
|
|
|
<Compile Include="NibbleArray.cs" />
|
|
|
|
|
<Compile Include="World\IRegion.cs" />
|
2014-12-27 18:19:41 -07:00
|
|
|
|
<Compile Include="Biome.cs" />
|
|
|
|
|
<Compile Include="Logging\LogCategory.cs" />
|
|
|
|
|
<Compile Include="Logging\ILogProvider.cs" />
|
2014-12-27 18:19:41 -07:00
|
|
|
|
<Compile Include="Server\IEventScheduler.cs" />
|
2014-12-27 18:19:42 -07:00
|
|
|
|
<Compile Include="Server\IEntityManager.cs" />
|
|
|
|
|
<Compile Include="Entities\IEntity.cs" />
|
2014-12-28 11:17:14 -07:00
|
|
|
|
<Compile Include="World\BlockChangeEventArgs.cs" />
|
2014-12-28 12:03:54 -07:00
|
|
|
|
<Compile Include="Windows\IWindow.cs" />
|
|
|
|
|
<Compile Include="Windows\IWindowArea.cs" />
|
2014-12-28 11:48:20 -07:00
|
|
|
|
<Compile Include="Windows\WindowChangeEventArgs.cs" />
|
2014-12-28 15:38:58 -07:00
|
|
|
|
<Compile Include="Logic\IBlockProvider.cs" />
|
|
|
|
|
<Compile Include="Logic\IItemProvider.cs" />
|
2015-02-07 15:51:38 -07:00
|
|
|
|
<Compile Include="Logic\ICraftingRepository.cs" />
|
|
|
|
|
<Compile Include="Logic\ICraftingRecipe.cs" />
|
2014-12-28 19:04:42 -07:00
|
|
|
|
<Compile Include="ChatColor.cs" />
|
2014-12-28 19:18:13 -07:00
|
|
|
|
<Compile Include="Server\ChatMessageEventArgs.cs" />
|
2014-12-28 20:13:23 -07:00
|
|
|
|
<Compile Include="BlockFace.cs" />
|
2015-01-01 19:49:53 -07:00
|
|
|
|
<Compile Include="Server\PlayerJoinedEventArgs.cs" />
|
2015-01-26 16:40:32 -07:00
|
|
|
|
<Compile Include="Logic\IBlockRepository.cs" />
|
2015-02-01 10:38:55 -07:00
|
|
|
|
<Compile Include="Entities\IAABBEntity.cs" />
|
|
|
|
|
<Compile Include="Entities\IBlockPhysicsProvider.cs" />
|
|
|
|
|
<Compile Include="Entities\IPhysicsEntity.cs" />
|
2015-02-01 14:59:02 -07:00
|
|
|
|
<Compile Include="Logic\IItemRepository.cs" />
|
2015-02-01 18:53:10 -07:00
|
|
|
|
<Compile Include="Logic\BlockDescriptor.cs" />
|
2015-02-08 00:05:00 -07:00
|
|
|
|
<Compile Include="ArmorMaterial.cs" />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
2015-01-23 04:03:28 -05:00
|
|
|
|
<ItemGroup />
|
2014-12-26 22:35:26 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\externals\fNbt\fNbt\fNbt.csproj">
|
|
|
|
|
<Project>{4488498D-976D-4DA3-BF72-109531AF0488}</Project>
|
|
|
|
|
<Name>fNbt</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
2015-02-21 13:25:44 -05:00
|
|
|
|
</Project>
|