|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <TargetFrameworks>net9.0;net8.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks> |
4 | | - <AssemblyVersion>7.6.1.0</AssemblyVersion> |
5 | | - <FileVersion>7.6.1.0</FileVersion> |
6 | | - <Version>7.6.1</Version> |
| 4 | + <AssemblyVersion>7.7.0.0</AssemblyVersion> |
| 5 | + <FileVersion>7.7.0.0</FileVersion> |
| 6 | + <Version>7.7.0</Version> |
7 | 7 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
8 | 8 | <PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl> |
9 | 9 | <Authors>EPPlus Software AB</Authors> |
|
18 | 18 | <PackageReadmeFile>readme.md</PackageReadmeFile> |
19 | 19 | <Copyright>EPPlus Software AB</Copyright> |
20 | 20 | <PackageReleaseNotes> |
21 | | - EPPlus 7.6.1 |
| 21 | + EPPlus 7.7.0 |
22 | 22 |
|
23 | 23 | IMPORTANT NOTICE! |
24 | 24 | From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. |
25 | 25 | EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license. |
26 | 26 | Commercial licenses can be purchased from https://epplussoftware.com |
27 | 27 | This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL. |
28 | 28 |
|
| 29 | + ## Version 7.7.0 |
| 30 | + * Fixed referenced packages versioning. |
| 31 | + * Minor bug fixes. |
| 32 | + |
29 | 33 | ## Version 7.6.1 |
30 | 34 | * Minor bug fixes. |
31 | 35 |
|
32 | 36 | ## Version 7.6.0 |
33 | 37 | * Added target framework .NET 9. Removed out of support versions, .NET 6 and .NET 7. |
34 | | - * Minor features and bug fixes. |
| 38 | + * Minor features and bug fixes. |
35 | 39 |
|
36 | 40 | ## Version 7.5.3 |
37 | 41 | * Minor features and bug fixes. |
|
454 | 458 | A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html |
455 | 459 |
|
456 | 460 | Version history |
| 461 | + 7.7.0 20250317 Fixed referenced packages versioning. Minor bug fixes. |
457 | 462 | 7.6.1 20250304 Minor bug fixes. |
458 | 463 | 7.6.0 20250206 Updated target frameworks. Minor features and bug fixes. |
459 | 464 | 7.5.3 20250116 Minor features and bug fixes. |
|
615 | 620 | <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" /> |
616 | 621 | </ItemGroup> |
617 | 622 |
|
618 | | - <ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net8.0'"> |
| 623 | + <ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0'"> |
619 | 624 | <PackageReference Include="Microsoft.Extensions.Configuration.Json" /> |
620 | 625 | <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" /> |
621 | 626 | <PackageReference Include="System.Security.Cryptography.Pkcs" /> |
622 | 627 | <PackageReference Include="System.ComponentModel.Annotations" /> |
623 | 628 | <PackageReference Include="System.Text.Encoding.CodePages" /> |
624 | 629 | </ItemGroup> |
625 | 630 |
|
626 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
627 | | - <PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="8.0.1" /> |
| 631 | + <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
| 632 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="9.0.3" /> |
628 | 633 | <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" /> |
629 | | - <PackageReference Include="System.Security.Cryptography.Pkcs" VersionOverride="8.0.1" /> |
| 634 | + <PackageReference Include="System.Security.Cryptography.Pkcs" VersionOverride="9.0.3" /> |
630 | 635 | <PackageReference Include="System.ComponentModel.Annotations" /> |
631 | | - <PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="8.0.0"/> |
| 636 | + <PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="9.0.3"/> |
632 | 637 | </ItemGroup> |
633 | 638 |
|
634 | 639 | <ItemGroup> |
|
0 commit comments