forked from fschultz/NetImageLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageLibrary.NetCore.csproj
More file actions
65 lines (60 loc) · 2.47 KB
/
ImageLibrary.NetCore.csproj
File metadata and controls
65 lines (60 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<RootNamespace>ImageLibrary</RootNamespace>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<Product>ImageLibrary</Product>
<Description>.NET library for easy image handling like cropping, thumbnails, streaming and more</Description>
<Company>Kaliko</Company>
<PackageId>Kaliko Image Library</PackageId>
<Copyright>Copyright © Fredrik Schultz and Contributors</Copyright>
<Authors>ImageLibrary.NetStdss</Authors>
<Version>3.0.2</Version>
<AssemblyName>Kaliko Image Library - NetCore</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Remove="ImageOutput.cs" />
<None Remove="Properties\AssemblyInfo.cs" />
<None Remove="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="ColorHandler.cs" />
<Compile Include="ColorSpace\CIELab.cs" />
<Compile Include="ColorSpace\CIEXYZ.cs" />
<Compile Include="ColorSpace\CMYK.cs" />
<Compile Include="ColorSpace\ColorSpaceHelper.cs" />
<Compile Include="ColorSpace\HSB.cs" />
<Compile Include="ColorSpace\HSL.cs" />
<Compile Include="ColorSpace\RGB.cs" />
<Compile Include="ColorSpace\YUV.cs" />
<Compile Include="Filters\BrightnessFilter.cs" />
<Compile Include="Filters\ChromaKeyFilter.cs" />
<Compile Include="Filters\ContrastFilter.cs" />
<Compile Include="Filters\ConvolveFilter.cs" />
<Compile Include="Filters\DesaturationFilter.cs" />
<Compile Include="Filters\IFilter.cs" />
<Compile Include="Filters\InvertFilter.cs" />
<Compile Include="Filters\Kernel.cs" />
<Compile Include="Filters\GaussianBlurFilter.cs" />
<Compile Include="Filters\UnsharpMaskFilter.cs" />
<Compile Include="ImageOutput.cs" />
<Compile Include="KalikoImage.cs" />
<Compile Include="Scaling\CropScaling.cs" />
<Compile Include="Scaling\FitScaling.cs" />
<Compile Include="Scaling\PadScaling.cs" />
<Compile Include="Scaling\ScalingBase.cs" />
<Compile Include="TextField.cs" />
<Compile Include="TextShadow.cs" />
<Compile Include="ThumbnailMethod.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
<PackageReference Include="System.IO" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>