mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
222 lines
13 KiB
222 lines
13 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.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>{8047C4AC-7097-4DE4-B00D-6D55EBCF1D36}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>ImageProcessor</RootNamespace>
|
|
<AssemblyName>ImageProcessor</AssemblyName>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
|
|
<RestorePackages>true</RestorePackages>
|
|
</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>
|
|
<DocumentationFile>bin\Debug\ImageProcessor.XML</DocumentationFile>
|
|
</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>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Common\Helpers\ImageMaths.cs" />
|
|
<Compile Include="Common\Helpers\PixelOperations.cs" />
|
|
<Compile Include="Filters\Contrast.cs" />
|
|
<Compile Include="Filters\ImageFilterExtensions.cs" />
|
|
<Compile Include="ImageExtensions.cs" />
|
|
<Compile Include="ParallelImageProcessor.cs" />
|
|
<Compile Include="IImageProcessor.cs" />
|
|
<Compile Include="Colors\Hsv.cs" />
|
|
<Compile Include="Colors\YCbCr.cs" />
|
|
<Compile Include="Common\Extensions\ByteExtensions.cs" />
|
|
<Compile Include="Common\Extensions\ComparableExtensions.cs" />
|
|
<Compile Include="Formats\Bmp\BmpCompression.cs" />
|
|
<Compile Include="Formats\Bmp\BmpFileHeader.cs" />
|
|
<Compile Include="Formats\Bmp\BmpFormat.cs" />
|
|
<Compile Include="Formats\Bmp\BmpInfoHeader.cs" />
|
|
<Compile Include="Formats\Bmp\BmpDecoder.cs" />
|
|
<Compile Include="Formats\Bmp\BmpDecoderCore.cs" />
|
|
<Compile Include="Formats\Bmp\BmpEncoder.cs" />
|
|
<Compile Include="Formats\Gif\BitEncoder.cs" />
|
|
<Compile Include="Formats\Gif\GifFormat.cs" />
|
|
<Compile Include="Formats\Gif\LzwEncoder.cs" />
|
|
<Compile Include="Formats\Gif\GifConstants.cs" />
|
|
<Compile Include="Formats\Gif\GifDecoderCore.cs" />
|
|
<Compile Include="Formats\Gif\GifEncoder.cs" />
|
|
<Compile Include="Formats\Gif\Quantizer\QuantizedImage.cs" />
|
|
<Compile Include="Formats\Gif\Quantizer\IQuantizer.cs" />
|
|
<Compile Include="Formats\Gif\Quantizer\OctreeQuantizer.cs" />
|
|
<Compile Include="Formats\Gif\Quantizer\Quantizer.cs" />
|
|
<Compile Include="Formats\IImageFormat.cs" />
|
|
<Compile Include="Formats\Jpg\JpegFormat.cs" />
|
|
<Compile Include="Formats\Jpg\JpegDecoder.cs" />
|
|
<Compile Include="Formats\Jpg\JpegEncoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\BitmapDestination.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\BitStream.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\DensityUnit.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\bitread_perm_state.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\bitread_working_state.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\ComponentBuffer.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\d_derived_tbl.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\huff_entropy_decoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\huff_entropy_encoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\JpegUtils.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_color_converter.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_color_deconverter.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_color_quantizer.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_comp_master.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_c_coef_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_c_main_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_c_prep_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_decomp_master.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_downsampler.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_d_coef_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_d_main_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_d_post_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_entropy_decoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_entropy_encoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_forward_dct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_input_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_inverse_dct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_marker_reader.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_marker_writer.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_scan_info.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\jpeg_upsampler.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\J_BUF_MODE.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_1pass_cquantizer.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_2pass_cquantizer.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_c_coef_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_destination_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_merged_upsampler.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_source_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_trans_c_coef_controller.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\my_upsampler.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\phuff_entropy_decoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\Internal\phuff_entropy_encoder.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\JBLOCK.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\JHUFF_TBL.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\JpegConstants.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_common_struct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_component_info.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_compress_struct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_decompress_struct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_destination_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_error_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\JPEG_MARKER.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_marker_struct.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_progress_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jpeg_source_mgr.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\JQUANT_TBL.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\jvirt_array.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\J_COLOR_SPACE.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\J_DCT_METHOD.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\J_DITHER_MODE.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\J_MESSAGE_CODE.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Classic\ReadResult.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\CompressionParameters.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\DecompressionParameters.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\DecompressorToJpegImage.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Enumerations.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\IDecompressDestination.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\IRawImage.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Jpeg.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\JpegImage.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\LoadedImageAttributes.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\RawImage.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Sample.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\SampleRow.cs" />
|
|
<Compile Include="Formats\Jpg\LibJpeg\Utils.cs" />
|
|
<Compile Include="Formats\Png\PngFormat.cs" />
|
|
<Compile Include="Formats\Png\PngDecoder.cs" />
|
|
<Compile Include="Formats\Png\PngDecoderCore.cs" />
|
|
<Compile Include="Formats\Png\PngEncoder.cs" />
|
|
<Compile Include="Formats\Png\PngColorTypeInformation.cs" />
|
|
<Compile Include="Formats\Png\PngChunk.cs" />
|
|
<Compile Include="Formats\Png\PngChunkTypes.cs" />
|
|
<Compile Include="Formats\Png\TrueColorReader.cs" />
|
|
<Compile Include="Formats\Png\PaletteIndexReader.cs" />
|
|
<Compile Include="Formats\Png\GrayscaleReader.cs" />
|
|
<Compile Include="Formats\Png\IColorReader.cs" />
|
|
<Compile Include="Formats\Png\PngHeader.cs" />
|
|
<Compile Include="IImage.cs" />
|
|
<Compile Include="IImageBase.cs" />
|
|
<Compile Include="ImageProperty.cs" />
|
|
<Compile Include="ImageFrame.cs" />
|
|
<Compile Include="Colors\Bgra.cs" />
|
|
<Compile Include="Common\Exceptions\ImageFormatException.cs" />
|
|
<Compile Include="Common\Helpers\Guard.cs" />
|
|
<Compile Include="Formats\Gif\GifDecoder.cs" />
|
|
<Compile Include="Formats\Gif\LzwDecoder.cs" />
|
|
<Compile Include="Formats\Gif\Sections\GifLogicalScreenDescriptor.cs" />
|
|
<Compile Include="Formats\Gif\Sections\GifImageDescriptor.cs" />
|
|
<Compile Include="Formats\Gif\Sections\GifGraphicsControlExtension.cs" />
|
|
<Compile Include="Formats\Gif\DisposalMethod.cs" />
|
|
<Compile Include="Formats\IImageDecoder.cs" />
|
|
<Compile Include="Formats\IImageEncoder.cs" />
|
|
<Compile Include="Image.cs" />
|
|
<Compile Include="ImageBase.cs" />
|
|
<Compile Include="Numerics\Point.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Numerics\Rectangle.cs" />
|
|
<Compile Include="Numerics\Size.cs" />
|
|
<Compile Include="Samplers\Lanczos5Resampler.cs" />
|
|
<Compile Include="Samplers\BicubicResampler.cs" />
|
|
<Compile Include="Samplers\ImageSampleExtensions.cs" />
|
|
<Compile Include="Samplers\IResampler.cs" />
|
|
<Compile Include="Samplers\Resize.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="ICSharpCode.SharpZipLib.Portable, Version=0.86.0.51802, Culture=neutral, processorArchitecture=MSIL">
|
|
<HintPath>..\..\packages\SharpZipLib.Portable.0.86.0.0002\lib\portable-net45+netcore45+wp8+win8+wpa81+MonoTouch+MonoAndroid\ICSharpCode.SharpZipLib.Portable.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Formats\Gif\README.md" />
|
|
<None Include="Formats\Jpg\README.md" />
|
|
<None Include="packages.config" />
|
|
<AdditionalFiles Include="stylecop.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Formats\Bmp\README.md" />
|
|
<None Include="Formats\Png\README.md" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Analyzer Include="..\..\packages\StyleCop.Analyzers.1.0.0-beta013\analyzers\dotnet\cs\Newtonsoft.Json.dll" />
|
|
<Analyzer Include="..\..\packages\StyleCop.Analyzers.1.0.0-beta013\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
<PropertyGroup>
|
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
</PropertyGroup>
|
|
</Target>
|
|
<!-- 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>
|