Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020-2024 Alan Barr
Copyright (c) 2020-2025 Alan Barr

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Notes:

## Release History

### v1.5.2 (2025-01-05)
* Revision to update package properties.

### v1.5.1 (2024-12-28)
* Revision for including readme in NuGet package.

Expand Down
15 changes: 6 additions & 9 deletions src/Freedom35.ImageProcessing/Freedom35.ImageProcessing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>.NET Standard library for image processing.</Description>
<Description>Open source .NET Standard library for image processing.</Description>
<Authors>Alan Barr (GitHub: freedom35)</Authors>
<Company>Alan Barr (GitHub: freedom35)</Company>
<Copyright>Copyright © 2022-2024 Alan Barr</Copyright>
<Copyright>Copyright © 2020-2025 Alan Barr</Copyright>
<RepositoryUrl>https://github.com/freedom35/image-processing</RepositoryUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand All @@ -15,24 +15,21 @@
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Revision for including readme in NuGet package.</PackageReleaseNotes>
<PackageReleaseNotes>Updated package properties.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="Images\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="Images\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>