Files
MonoGame.Extended/Source/MonoGame.Extended.Graphics/MonoGame.Extended.Graphics.csproj
T
Lucas Girouard-StranksandDylan Wilson d0c621d0dc Create Graphics library. (#316)
* Fix BoundingRect unit tests.

* Create `graphics` library.
2016-11-27 22:51:59 +10:00

90 lines
4.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{9B3AB8A1-78AA-471A-AFD0-B10B932115BC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MonoGame.Extended.Graphics</RootNamespace>
<AssemblyName>MonoGame.Extended.Graphics</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<None Include="Effects\Resources\compile.bat" />
<EmbeddedResource Include="Effects\Resources\DefaultEffect2D.mgfxo" />
</ItemGroup>
<ItemGroup>
<Compile Include="Batch2DSortMode.cs" />
<Compile Include="Batching\Batch.cs" />
<Compile Include="Batching\BatchCommandDrawer.cs" />
<Compile Include="Batching\BatchCommandQueue.cs" />
<Compile Include="Batching\BatchCommandQueueOverflowException.cs" />
<Compile Include="Batching\BatchDrawCommand.cs" />
<Compile Include="Batching\BatchSortMode.cs" />
<Compile Include="Batching\DeferredBatchCommandQueue.cs" />
<Compile Include="Batching\IBatchDrawCommandData.cs" />
<Compile Include="Batching\ImmediateBatchCommandQueue.cs" />
<Compile Include="DynamicBatch2D.cs" />
<Compile Include="Effects\DefaultEffect2D.cs" />
<Compile Include="Effects\EffectResource.cs" />
<Compile Include="Effects\IMatrixChainEffect.cs" />
<Compile Include="Effects\ITexture2DEffect.cs" />
<Compile Include="Effects\MatrixChainEffect.cs" />
<Compile Include="GeometryBuffer.cs" />
<Compile Include="GeometryBuffer.Dynamic.cs" />
<Compile Include="GeometryBuffer.Static.cs" />
<Compile Include="GeometryBufferExtensions.VertexPositionColorTexture.cs" />
<Compile Include="GeometryBufferOverflowException.cs" />
<Compile Include="PrimitiveTypeExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Effects\Resources\DefaultEffect2D.fx" />
</ItemGroup>
<ItemGroup>
<Reference Include="MonoGame.Framework">
<HintPath>..\..\Dependencies\MonoGame.Framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonoGame.Extended\MonoGame.Extended.csproj">
<Project>{41724c52-3d50-45bb-81eb-3c8a247eafd1}</Project>
<Name>MonoGame.Extended</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>