-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathLazZiya.ImageResize.csproj
59 lines (50 loc) · 2.73 KB
/
LazZiya.ImageResize.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Ziya Mollamahmut</Authors>
<Company>Ziyad.info</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>Easily resize and crop images, add text watermark, add text outline, add image watermark with transparency, etc. Supports all .NetStandard2.0 compatible platforms (Asp.Net Core all versions and more...)</Description>
<Copyright>Ziyad.info</Copyright>
<PackageTags>asp.net,core,.net,dotnet,image,resize,text,overlay</PackageTags>
<RepositoryUrl>https://github.com/LazZiya/ImageResize</RepositoryUrl>
<PackageProjectUrl>https://docs.ziyad.info/en/LazZiya.ImageResize/v4.0/index.md</PackageProjectUrl>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionSuffix>preview3</VersionSuffix>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<PackageReleaseNotes>
Updates in preview 3:
- New "Conditional" resizing methods: The resize will done depending on a conditional parameter.
- New "Conditional" text/image watermark methods: Add text/image watermark if condition is true.
- Amended method name: AnimatedImageResize.GifScaleByWidth --> AnimatedImageResize.GifScaleByWidth
Updates in preview 2:
- Added support to create animated text watermark
- Added support to create animated image watermark
Previous updates in preview 1:
- Added support for editing animated images (resize, text watewrmark, image water etc.)
- Update ref for System.Drawing.Common https://github.com/dotnet/core/issues/3244
- See all release notes https://github.com/LazZiya/ImageResize/releases
</PackageReleaseNotes>
<PackageIconUrl>https://raw.githubusercontent.com/LazZiya/ImageResize/master/LazZiya.ImageResize/files/icon.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>files\LazZiya.ImageResize.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>LazZiya.ImageResize.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="files\icon.png" Pack="true" Visible="false" PackagePath="\" />
<None Include="files\icon.ico" Pack="true" Visible="false" PackagePath="\" />
<None Include="files\license.txt" Pack="true" PackagePath="\" />
</ItemGroup>
<Target Name="AfterPack" AfterTargets="Pack">
<Exec Command="dotnet nuget push $(PackageOutputPath)*.nupkg --source Local" />
</Target>
</Project>