TrueCraft/TrueCraft.API/TrueCraft.API.csproj

115 lines
4.9 KiB
XML
Raw Normal View History

<?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>
<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' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<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>
<Compile Include="Configuration.cs" />
<Compile Include="Coordinates3D.cs" />
<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" />
<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" />
<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" />
<Compile Include="World\IDecoration.cs" />
<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" />
<Compile Include="Server\IEntityManager.cs" />
<Compile Include="Entities\IEntity.cs" />
<Compile Include="World\BlockChangeEventArgs.cs" />
<Compile Include="Windows\IWindow.cs" />
<Compile Include="Windows\IWindowArea.cs" />
<Compile Include="Windows\WindowChangeEventArgs.cs" />
2014-12-28 15:38:58 -07:00
<Compile Include="Logic\IBlockProvider.cs" />
<Compile Include="Logic\IItemProvider.cs" />
<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" />
<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" />
<Compile Include="Logic\BlockDescriptor.cs" />
<Compile Include="ArmorMaterial.cs" />
2014-12-26 22:35:26 -07:00
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<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>
</Project>