-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
91 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>Ardalis.Result</PackageId> | ||
<Title>Ardalis.Result</Title> | ||
<Description>A simple package to implement the Result pattern for returning from services.</Description> | ||
<Summary>A simple package to implement the Result pattern for returning from services.</Summary> | ||
<PackageTags>result pattern web api aspnetcore mvc</PackageTags> | ||
<PackageReleaseNotes> | ||
* fixes ardalis/Result#187; add created option in ToMinimalApiResult by @Dalmazox in #188 | ||
* ✨ 176 result status helpers by @danielmackay in #184 | ||
* Bump rexml from 3.2.6 to 3.2.8 in /docs by @dependabot in #183 | ||
* Fix Null Ref when returning Result.Error(string) non-generically. by @ardalis in #189 | ||
</PackageReleaseNotes> | ||
<AssemblyName>Ardalis.Result</AssemblyName> | ||
<Version>9.1.0</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'"> | ||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<PackageId>Ardalis.Result</PackageId> | ||
<Title>Ardalis.Result</Title> | ||
<Description>A simple package to implement the Result pattern for returning from services.</Description> | ||
<Summary>A simple package to implement the Result pattern for returning from services.</Summary> | ||
<PackageTags>result pattern web api aspnetcore mvc</PackageTags> | ||
<PackageReleaseNotes> | ||
## What's Changed | ||
* Add error messages to forbidden and unauthorized by @Ahammdan in https://github.com/ardalis/Result/pull/190 | ||
* Fix unhandled ResultStatus.NoContent in MinimalApiResultExtensions.ToMinimalApiResult by @inghamc in https://github.com/ardalis/Result/pull/192 | ||
* Bump rexml from 3.2.8 to 3.3.6 in /docs by @dependabot in https://github.com/ardalis/Result/pull/202 | ||
* Fix missing new on Result.Error by @tpitlik-dev in https://github.com/ardalis/Result/pull/194 | ||
* Add support for HttpStatusCode: Created to the ResultStatus mapping by @wtygibbs in https://github.com/ardalis/Result/pull/198 | ||
* Add Result.Created void methods so that return Result type is implicitly handled. by @jdrames in https://github.com/ardalis/Result/pull/200 | ||
* Implement Expression method by @KhanbalaRashidov in https://github.com/ardalis/Result/pull/201 | ||
* Add support for ToMinimalApiResult in net6 | ||
|
||
## New Contributors | ||
* @Ahammdan made their first contribution in https://github.com/ardalis/Result/pull/190 | ||
* @inghamc made their first contribution in https://github.com/ardalis/Result/pull/192 | ||
* @tpitlik-dev made their first contribution in https://github.com/ardalis/Result/pull/194 | ||
* @wtygibbs made their first contribution in https://github.com/ardalis/Result/pull/198 | ||
* @jdrames made their first contribution in https://github.com/ardalis/Result/pull/200 | ||
* @KhanbalaRashidov made their first contribution in https://github.com/ardalis/Result/pull/201 | ||
|
||
**Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0 | ||
</PackageReleaseNotes> | ||
<AssemblyName>Ardalis.Result</AssemblyName> | ||
<Version>10.0.0</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'"> | ||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<NetCoreFrameworks>net6.0;net7.0;net8.0</NetCoreFrameworks> | ||
<TargetFrameworks>netstandard2.0;$(NetCoreFrameworks)</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>Steve Smith (@ardalis); Shady Nagy (@ShadyNagy)</Authors> | ||
<Company>Ardalis.com</Company> | ||
<PackageProjectUrl>https://github.com/ardalis/result</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/ardalis/result</RepositoryUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NetCoreFrameworks>net6.0;net7.0;net8.0</NetCoreFrameworks> | ||
<TargetFrameworks>netstandard2.0;$(NetCoreFrameworks)</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>Steve Smith (@ardalis); Shady Nagy (@ShadyNagy)</Authors> | ||
<Company>Ardalis.com</Company> | ||
<PackageProjectUrl>https://github.com/ardalis/result</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/ardalis/result</RepositoryUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
|
||
</Project> |