TrueCraft/TrueCraft.Client/TrueCraft.Client.csproj

174 lines
8.6 KiB
XML
Raw Normal View History

2015-05-17 22:43:28 -07: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</RootNamespace>
<AssemblyName>TrueCraft.Client</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2015-05-24 17:36:53 -07:00
<NoWin32Manifest>False</NoWin32Manifest>
<SignAssembly>False</SignAssembly>
<DelaySign>False</DelaySign>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<OutputPath>bin\Release</OutputPath>
<DebugType>Full</DebugType>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<ErrorReport>prompt</ErrorReport>
<ConsolePause>false</ConsolePause>
<Commandlineparameters>localhost TestUser</Commandlineparameters>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<StartAction>Project</StartAction>
<Optimize>False</Optimize>
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<ErrorReport>prompt</ErrorReport>
<Externalconsole>true</Externalconsole>
<Optimize>true</Optimize>
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
2015-05-24 17:36:53 -07:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
2015-05-24 17:36:53 -07:00
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<StartAction>Project</StartAction>
2015-05-16 11:32:10 +02:00
</PropertyGroup>
2015-05-24 17:36:53 -07:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<Optimize>true</Optimize>
2015-05-16 11:32:10 +02:00
</PropertyGroup>
2015-05-24 17:36:53 -07:00
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>True</Prefer32Bit>
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
2015-05-16 11:32:10 +02:00
</PropertyGroup>
<ItemGroup Condition=" '$(OS)' == 'Unix' ">
2015-06-02 17:39:44 -06:00
<Reference Include="MonoGame.Framework, Version=3.4.0.459, Culture=neutral, PublicKeyToken=null">
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\MonoGame.Framework.dll</HintPath>
</Reference>
2015-06-02 17:39:44 -06:00
<Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4">
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\OpenTK.dll</HintPath>
</Reference>
2015-06-02 17:39:44 -06:00
<Reference Include="Tao.Sdl, Version=1.2.13.0, Culture=neutral, PublicKeyToken=9c7a200e36c0094e">
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\Tao.Sdl.dll</HintPath>
</Reference>
2015-06-02 17:39:44 -06:00
<Reference Include="MonoGame.Framework">
<HintPath>..\packages\MonoGame.Framework.WindowsGL.3.4.0.459\lib\net40\MonoGame.Framework.dll</HintPath>
2015-05-16 11:32:10 +02:00
</Reference>
2015-06-02 17:39:44 -06:00
<Reference Include="OpenTK">
2015-05-24 17:36:53 -07:00
<HintPath>..\packages\MonoGame.Framework.WindowsGL.3.4.0.459\lib\net40\OpenTK.dll</HintPath>
2015-05-16 11:32:10 +02:00
</Reference>
</ItemGroup>
2015-06-02 17:39:44 -06:00
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TrueCraftGame.cs" />
<Compile Include="MultiplayerClient.cs" />
<Compile Include="Handlers\PacketHandlers.cs" />
<Compile Include="Events\ChatMessageEventArgs.cs" />
<Compile Include="Interface\ChatInterface.cs" />
<Compile Include="Interface\IGameInterface.cs" />
<Compile Include="BMFont.cs" />
<Compile Include="FontRenderer.cs" />
<Compile Include="Handlers\ChunkHandler.cs" />
<Compile Include="ReadOnlyWorld.cs" />
<Compile Include="Events\ChunkEventArgs.cs" />
<Compile Include="PhysicsEngine.cs" />
2015-05-13 17:02:03 -06:00
<Compile Include="Rendering\Mesh.cs" />
<Compile Include="Rendering\BlockRenderer.cs" />
<Compile Include="Rendering\ChunkMesh.cs" />
<Compile Include="Rendering\Blocks\GrassRenderer.cs" />
2015-05-15 12:39:59 -06:00
<Compile Include="Rendering\Blocks\CraftingTableRenderer.cs" />
2015-05-15 15:12:36 -06:00
<Compile Include="Rendering\Blocks\TNTRenderer.cs" />
<Compile Include="Rendering\Blocks\SnowRenderer.cs" />
<Compile Include="Rendering\Blocks\TorchRenderer.cs" />
<Compile Include="Rendering\Blocks\LogRenderer.cs" />
<Compile Include="Rendering\ChunkRenderer.cs" />
<Compile Include="Rendering\Blocks\LeavesRenderer.cs" />
<Compile Include="Rendering\Blocks\TallGrassRenderer.cs" />
<Compile Include="Rendering\FlatQuadRenderer.cs" />
2015-06-03 21:09:37 -06:00
<Compile Include="Rendering\Blocks\LadderRenderer.cs" />
2015-06-03 21:36:21 -06:00
<Compile Include="Rendering\Blocks\SugarcaneRenderer.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<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" />
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileFormatDefault" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
<ItemGroup>
<Folder Include="Handlers\" />
<Folder Include="Interface\" />
<Folder Include="Events\" />
<Folder Include="Content\" />
<Folder Include="Rendering\" />
<Folder Include="Rendering\Blocks\" />
</ItemGroup>
2015-05-17 22:43:28 -07:00
<ItemGroup />
<ItemGroup>
2015-05-17 22:43:28 -07:00
<Content Include="Content\dejavu_0.png">
2015-05-14 19:24:26 -06:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2015-05-17 22:43:28 -07:00
</Content>
<Content Include="Content\dejavu.fnt">
2015-05-14 19:24:26 -06:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2015-05-17 22:43:28 -07:00
</Content>
<Content Include="Content\items.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2015-05-17 22:43:28 -07:00
</Content>
<Content Include="Content\terrain.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2015-05-17 22:43:28 -07:00
</Content>
<None Include="OpenTK.dll.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2015-05-17 22:43:28 -07:00
<None Include="packages.config" />
<None Include="Tao.Sdl.dll.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>