|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net462; netstandard2.0;netstandard2.1;net5.0; net6.0; net8.0; net9.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net462; netstandard2.0;netstandard2.1;net5.0;net6.0;net8.0;net9.0;net10.0</TargetFrameworks> |
5 | 5 | <ImplicitUsings>disable</ImplicitUsings> |
6 | 6 | <Nullable>disable</Nullable> |
7 | 7 | <Title>ApiAggregator</Title> |
8 | 8 | <Authors>CodeShayk</Authors> |
9 | 9 | <Company>CodeShayk</Company> |
10 | 10 | <Description>.Net utility to combine multiple api requests to return a single aggregated response. </Description> |
11 | | - <PackageIcon>ninja-icon-16.png</PackageIcon> |
| 11 | + <PackageIcon>api-icon.png</PackageIcon> |
12 | 12 | <PackageReadmeFile>README.md</PackageReadmeFile> |
13 | 13 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
14 | | - <Copyright>Copyright (c) 2025 Code Shayk</Copyright> |
| 14 | + <Copyright>Copyright (c) 2026 Code Shayk</Copyright> |
15 | 15 | <RepositoryType></RepositoryType> |
16 | 16 | <PackageTags>api, aggregator, api-aggregator, utility, api-utility, data-aggregator, api-response, api-response-aggregator</PackageTags> |
17 | 17 | <IncludeSymbols>True</IncludeSymbols> |
|
21 | 21 | <PackageProjectUrl>https://github.com/CodeShayk/ApiAggregator/wiki</PackageProjectUrl> |
22 | 22 | <RepositoryUrl>https://github.com/CodeShayk/ApiAggregator</RepositoryUrl> |
23 | 23 | <PackageReleaseNotes> |
24 | | - v2.1.0 - Targets .Net9.0, net5.0, net6.0, net8.0, .Net Standard 2.0, and .Net Framework 4.6.2. <br /> |
25 | | -- Critical fix: Eliminated async/await blocking operations that could cause deadlocks |
26 | | -- Code quality: Fixed syntax consistency issues and improved maintainability |
27 | | -- Performance: Better handling of concurrent API requests and improved thread pool utilization |
28 | | -- Maintains 100% backward compatibility |
| 24 | + # ApiAggregator 2.2.0 - No Functional Changes. |
| 25 | + ## Release Type: Minor Release: Targets .Net 10 |
| 26 | + **Date**: 2026-03-13 |
| 27 | + **Version**: 2.2.0 |
29 | 28 | </PackageReleaseNotes> |
30 | | - <Version>2.1.0</Version> |
| 29 | + <Version>2.2.0</Version> |
31 | 30 | </PropertyGroup> |
32 | 31 |
|
33 | 32 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
34 | 33 | <Optimize>True</Optimize> |
35 | 34 | </PropertyGroup> |
36 | 35 |
|
37 | 36 | <ItemGroup> |
38 | | - <None Include="..\..\Images\ninja-icon-16.png" Link="Misc\ninja-icon-16.png"> |
| 37 | + <None Include="..\..\Images\api-icon.png"> |
39 | 38 | <Pack>True</Pack> |
40 | 39 | <PackagePath>\</PackagePath> |
41 | 40 | </None> |
|
0 commit comments