TrueCraft/TrueCraft.API/TrueCraft.API.csproj
2015-06-02 20:31:43 -06:00

115 lines
4.9 KiB
XML

<?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>{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>
</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>none</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>
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration.cs" />
<Compile Include="Coordinates3D.cs" />
<Compile Include="IAccessConfiguration.cs" />
<Compile Include="PlantSpecies.cs" />
<Compile Include="OreTypes.cs" />
<Compile Include="ToolMaterial.cs" />
<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" />
<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" />
<Compile Include="Size.cs" />
<Compile Include="TreeSpecies.cs" />
<Compile Include="Vector3.cs" />
<Compile Include="Server\IMultiplayerServer.cs" />
<Compile Include="Networking\IRemoteClient.cs" />
<Compile Include="World\IBiomeRepository.cs" />
<Compile Include="World\IBiomeMap.cs" />
<Compile Include="World\IBiomeProvider.cs" />
<Compile Include="World\IChunkDecorator.cs" />
<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" />
<Compile Include="Biome.cs" />
<Compile Include="Logging\LogCategory.cs" />
<Compile Include="Logging\ILogProvider.cs" />
<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" />
<Compile Include="Logic\IBlockProvider.cs" />
<Compile Include="Logic\IItemProvider.cs" />
<Compile Include="Logic\ICraftingRepository.cs" />
<Compile Include="Logic\ICraftingRecipe.cs" />
<Compile Include="ChatColor.cs" />
<Compile Include="Server\ChatMessageEventArgs.cs" />
<Compile Include="BlockFace.cs" />
<Compile Include="Logic\IBlockRepository.cs" />
<Compile Include="Entities\IAABBEntity.cs" />
<Compile Include="Entities\IBlockPhysicsProvider.cs" />
<Compile Include="Entities\IPhysicsEntity.cs" />
<Compile Include="Logic\IItemRepository.cs" />
<Compile Include="Logic\BlockDescriptor.cs" />
<Compile Include="ArmorMaterial.cs" />
<Compile Include="Server\PlayerJoinedQuitEventArgs.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup />
<ItemGroup>
<ProjectReference Include="..\externals\fNbt\fNbt\fNbt.csproj">
<Project>{4488498D-976D-4DA3-BF72-109531AF0488}</Project>
<Name>fNbt</Name>
</ProjectReference>
</ItemGroup>
</Project>