Cosmos/Users/Orvid/Orvid.Graphics/Orvid.Graphics.csproj
2017-11-21 14:08:25 +00:00

116 lines
5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" 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>{C9E995CF-CB65-4410-A7D2-63EBBE02AABB}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Orvid.Graphics</RootNamespace>
<AssemblyName>Orvid.Graphics</AssemblyName>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="AnimatedImage.cs" />
<Compile Include="BoundingBox.cs" />
<Compile Include="Colors.cs" />
<Compile Include="FontSupport\bdf\BDFFont.cs" />
<Compile Include="FontSupport\bdf\BDFFontContainer.cs" />
<Compile Include="FontSupport\bdf\BDFFontMetrics.cs" />
<Compile Include="FontSupport\bdf\BDFMetrics.cs" />
<Compile Include="FontSupport\bdf\BDFParser.cs" />
<Compile Include="FontSupport\bdf\BDFGlyph.cs" />
<Compile Include="FontSupport\bdf\BDFTextRenderer.cs" />
<Compile Include="FontSupport\bdf\StringBuilder.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="FontSupport\Defaults\DefaultFontManager.cs" />
<Compile Include="FontSupport\fnt\FntFont.cs" />
<Compile Include="FontSupport\fnt\FntGlyph.cs" />
<Compile Include="FontSupport\fnt\FntLoader.cs" />
<Compile Include="FontSupport\fnt\FntMetrics.cs" />
<Compile Include="FontSupport\fnt\FntTextRenderer.cs" />
<Compile Include="FontSupport\Font.cs" />
<Compile Include="FontSupport\FontMetrics.cs" />
<Compile Include="FontSupport\FontStyle.cs" />
<Compile Include="FontSupport\FontManager.cs" />
<Compile Include="FontSupport\Interfaces\ITextRenderer.cs" />
<Compile Include="FontSupport\SupportClasses\AffineTransform.cs" />
<Compile Include="Image.cs" />
<Compile Include="ImageFormats\BmpSupport.cs" />
<Compile Include="ImageFormats\DdsSupport.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="ImageFormats\FormatManager.cs" />
<Compile Include="ImageFormats\GifSupport.cs" />
<Compile Include="ImageFormats\ImageFormat.cs" />
<Compile Include="ImageFormats\JpegSupport.cs" />
<Compile Include="ImageFormats\OifSupport.cs" />
<Compile Include="ImageFormats\PcxSupport.cs" />
<Compile Include="ImageFormats\PngSupport.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="ImageFormats\PnmFamilySupport.cs" />
<Compile Include="ImageFormats\TgaSupport.cs" />
<Compile Include="ImageFormats\TiffSupport.cs" />
<Compile Include="ImageFormats\VbpSupport.cs" />
<Compile Include="ImageFormats\XpmSupport.cs" />
<Compile Include="ImageManipulator.cs" />
<Compile Include="MiImage.cs" />
<Compile Include="Pixel.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Rectangle.cs" />
<Compile Include="Shapes\Shape.cs" />
<Compile Include="Shapes\ShapedImage.cs" />
<Compile Include="Shapes\Square.cs" />
<Compile Include="Vec2.cs" />
<Compile Include="Vec2d.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Orvid.Compression\Orvid.Compression.csproj">
<Project>{931E9514-6750-4700-8B20-364DD1B78038}</Project>
<Name>Orvid.Compression</Name>
</ProjectReference>
<ProjectReference Include="..\Orvid.Graphics.Dependancies\Orvid.Graphics.Dependancies.csproj">
<Project>{6B3ABC85-0A7B-4941-A4BE-BE5A5BE3D3F8}</Project>
<Name>Orvid.Graphics.Dependancies</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="FontSupport\Abstracts\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.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>