1d48d01648
- Added a new command system - Added a help command - Added a command event
90 lines
3.8 KiB
XML
90 lines
3.8 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>
|
|
</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" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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="Coordinates.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\CommandEventArgs.cs" />
|
|
<Compile Include="Server\ICommand.cs" />
|
|
<Compile Include="Server\ICommandManager.cs" />
|
|
<Compile Include="Size.cs" />
|
|
<Compile Include="Vector3.cs" />
|
|
<Compile Include="Server\IMultiplayerServer.cs" />
|
|
<Compile Include="Networking\IRemoteClient.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\BlockData.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="ChatColor.cs" />
|
|
<Compile Include="Server\ChatMessageEventArgs.cs" />
|
|
<Compile Include="BlockFace.cs" />
|
|
<Compile Include="Server\PlayerJoinedEventArgs.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> |