2015-05-12 16:48:58 -06: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)' == '' ">x86</Platform>
|
|
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
<ProjectGuid>{A6516869-A2FB-4E31-85C8-2285490CB32C}</ProjectGuid>
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
<RootNamespace>TrueCraft.Client.Linux</RootNamespace>
|
|
|
|
<AssemblyName>TrueCraft.Client.Linux</AssemblyName>
|
|
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
<ConsolePause>false</ConsolePause>
|
|
|
|
<Commandlineparameters>127.0.0.1:25565</Commandlineparameters>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
<Externalconsole>true</Externalconsole>
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Client|AnyCPU' ">
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
<OutputPath>bin\Client</OutputPath>
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-05-13 11:30:29 -06:00
|
|
|
<Commandlineparameters>127.0.0.1:25565</Commandlineparameters>
|
2015-05-13 16:26:23 -06:00
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2015-05-12 16:48:58 -06:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Server|AnyCPU' ">
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
<OutputPath>bin\Server</OutputPath>
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="System" />
|
|
|
|
<Reference Include="MonoGame.Framework">
|
2015-05-13 11:30:29 -06:00
|
|
|
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\MonoGame.Framework.dll</HintPath>
|
2015-05-12 16:48:58 -06:00
|
|
|
</Reference>
|
|
|
|
<Reference Include="OpenTK">
|
2015-05-13 11:30:29 -06:00
|
|
|
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\OpenTK.dll</HintPath>
|
2015-05-12 16:48:58 -06:00
|
|
|
</Reference>
|
|
|
|
<Reference Include="Tao.Sdl">
|
2015-05-13 11:30:29 -06:00
|
|
|
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\Tao.Sdl.dll</HintPath>
|
2015-05-12 16:48:58 -06:00
|
|
|
</Reference>
|
2015-05-13 11:30:29 -06:00
|
|
|
<Reference Include="System.Xml" />
|
2015-05-12 16:48:58 -06:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
<Compile Include="TrueCraftGame.cs" />
|
2015-05-12 17:30:56 -06:00
|
|
|
<Compile Include="MultiplayerClient.cs" />
|
|
|
|
<Compile Include="Handlers\PacketHandlers.cs" />
|
2015-05-13 11:30:29 -06:00
|
|
|
<Compile Include="Events\ChatMessageEventArgs.cs" />
|
|
|
|
<Compile Include="Interface\ChatInterface.cs" />
|
2015-05-12 17:39:34 -06:00
|
|
|
<Compile Include="Interface\IGameInterface.cs" />
|
2015-05-13 11:30:29 -06:00
|
|
|
<Compile Include="BMFont.cs" />
|
|
|
|
<Compile Include="FontRenderer.cs" />
|
2015-05-13 14:20:35 -06:00
|
|
|
<Compile Include="Handlers\ChunkHandler.cs" />
|
|
|
|
<Compile Include="ReadOnlyWorld.cs" />
|
|
|
|
<Compile Include="Events\ChunkEventArgs.cs" />
|
|
|
|
<Compile Include="ChunkConverter.cs" />
|
2015-05-13 16:26:23 -06:00
|
|
|
<Compile Include="PhysicsEngine.cs" />
|
2015-05-12 16:48:58 -06:00
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
2015-05-12 17:30:56 -06:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\externals\fNbt\fNbt\fNbt.csproj">
|
|
|
|
<Project>{4488498D-976D-4DA3-BF72-109531AF0488}</Project>
|
|
|
|
<Name>fNbt</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="..\TrueCraft.API\TrueCraft.API.csproj">
|
|
|
|
<Project>{FEE55B54-91B0-4325-A2C3-D576C0B7A81F}</Project>
|
|
|
|
<Name>TrueCraft.API</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="..\TrueCraft.Core\TrueCraft.Core.csproj">
|
|
|
|
<Project>{FA4BE9A3-DBF0-4380-BA2B-FFAA71C4706D}</Project>
|
|
|
|
<Name>TrueCraft.Core</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions>
|
|
|
|
<MonoDevelop>
|
|
|
|
<Properties>
|
|
|
|
<Policies>
|
|
|
|
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
|
|
|
|
<CSharpFormattingPolicy IndentSwitchBody="True" IndentBlocksInsideExpressions="True" AnonymousMethodBraceStyle="NextLine" PropertyBraceStyle="NextLine" PropertyGetBraceStyle="NextLine" PropertySetBraceStyle="NextLine" EventBraceStyle="NextLine" EventAddBraceStyle="NextLine" EventRemoveBraceStyle="NextLine" StatementBraceStyle="NextLine" ElseNewLinePlacement="NewLine" CatchNewLinePlacement="NewLine" FinallyNewLinePlacement="NewLine" WhileNewLinePlacement="DoNotCare" ArrayInitializerWrapping="DoNotChange" ArrayInitializerBraceStyle="NextLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
2015-05-13 11:30:29 -06:00
|
|
|
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileFormatDefault" />
|
2015-05-12 17:30:56 -06:00
|
|
|
</Policies>
|
|
|
|
</Properties>
|
|
|
|
</MonoDevelop>
|
|
|
|
</ProjectExtensions>
|
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Handlers\" />
|
2015-05-12 17:39:34 -06:00
|
|
|
<Folder Include="Interface\" />
|
2015-05-13 11:30:29 -06:00
|
|
|
<Folder Include="Events\" />
|
|
|
|
<Folder Include="Content\" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<None Include="OpenTK.dll.config" />
|
|
|
|
<None Include="Tao.Sdl.dll.config" />
|
|
|
|
<None Include="packages.config" />
|
|
|
|
<None Include="Content\dejavu_0.png">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Include="Content\dejavu.fnt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2015-05-12 17:30:56 -06:00
|
|
|
</ItemGroup>
|
2015-05-12 16:48:58 -06:00
|
|
|
</Project>
|