|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <PackageId>Ardalis.Result</PackageId> |
5 | | - <Title>Ardalis.Result</Title> |
6 | | - <Description>A simple package to implement the Result pattern for returning from services.</Description> |
7 | | - <Summary>A simple package to implement the Result pattern for returning from services.</Summary> |
8 | | - <PackageTags>result pattern web api aspnetcore mvc</PackageTags> |
9 | | - <PackageReleaseNotes> |
10 | | - * fixes ardalis/Result#187; add created option in ToMinimalApiResult by @Dalmazox in #188 |
11 | | - * ✨ 176 result status helpers by @danielmackay in #184 |
12 | | - * Bump rexml from 3.2.6 to 3.2.8 in /docs by @dependabot in #183 |
13 | | - * Fix Null Ref when returning Result.Error(string) non-generically. by @ardalis in #189 |
14 | | - </PackageReleaseNotes> |
15 | | - <AssemblyName>Ardalis.Result</AssemblyName> |
16 | | - <Version>9.1.0</Version> |
17 | | - </PropertyGroup> |
18 | | - <ItemGroup> |
19 | | - <None Include="icon.png" Pack="true" Visible="false" PackagePath="" /> |
20 | | - </ItemGroup> |
21 | | - <ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'"> |
22 | | - <PackageReference Include="System.Text.Json" /> |
23 | | - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <PackageId>Ardalis.Result</PackageId> |
| 5 | + <Title>Ardalis.Result</Title> |
| 6 | + <Description>A simple package to implement the Result pattern for returning from services.</Description> |
| 7 | + <Summary>A simple package to implement the Result pattern for returning from services.</Summary> |
| 8 | + <PackageTags>result pattern web api aspnetcore mvc</PackageTags> |
| 9 | + <PackageReleaseNotes> |
| 10 | + ## What's Changed |
| 11 | + * Add error messages to forbidden and unauthorized by @Ahammdan in https://github.com/ardalis/Result/pull/190 |
| 12 | + * Fix unhandled ResultStatus.NoContent in MinimalApiResultExtensions.ToMinimalApiResult by @inghamc in https://github.com/ardalis/Result/pull/192 |
| 13 | + * Bump rexml from 3.2.8 to 3.3.6 in /docs by @dependabot in https://github.com/ardalis/Result/pull/202 |
| 14 | + * Fix missing new on Result.Error by @tpitlik-dev in https://github.com/ardalis/Result/pull/194 |
| 15 | + * Add support for HttpStatusCode: Created to the ResultStatus mapping by @wtygibbs in https://github.com/ardalis/Result/pull/198 |
| 16 | + * Add Result.Created void methods so that return Result type is implicitly handled. by @jdrames in https://github.com/ardalis/Result/pull/200 |
| 17 | + * Implement Expression method by @KhanbalaRashidov in https://github.com/ardalis/Result/pull/201 |
| 18 | + * Add support for ToMinimalApiResult in net6 |
| 19 | + |
| 20 | + ## New Contributors |
| 21 | + * @Ahammdan made their first contribution in https://github.com/ardalis/Result/pull/190 |
| 22 | + * @inghamc made their first contribution in https://github.com/ardalis/Result/pull/192 |
| 23 | + * @tpitlik-dev made their first contribution in https://github.com/ardalis/Result/pull/194 |
| 24 | + * @wtygibbs made their first contribution in https://github.com/ardalis/Result/pull/198 |
| 25 | + * @jdrames made their first contribution in https://github.com/ardalis/Result/pull/200 |
| 26 | + * @KhanbalaRashidov made their first contribution in https://github.com/ardalis/Result/pull/201 |
| 27 | + |
| 28 | + **Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0 |
| 29 | + </PackageReleaseNotes> |
| 30 | + <AssemblyName>Ardalis.Result</AssemblyName> |
| 31 | + <Version>10.0.0</Version> |
| 32 | + </PropertyGroup> |
| 33 | + <ItemGroup> |
| 34 | + <None Include="icon.png" Pack="true" Visible="false" PackagePath="" /> |
| 35 | + </ItemGroup> |
| 36 | + <ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'"> |
| 37 | + <PackageReference Include="System.Text.Json" /> |
| 38 | + </ItemGroup> |
24 | 39 | </Project> |
0 commit comments