Qrtix.Results 2.0.0

dotnet add package Qrtix.Results --version 2.0.0
NuGet\Install-Package Qrtix.Results -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Qrtix.Results" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Qrtix.Results --version 2.0.0
#r "nuget: Qrtix.Results, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Qrtix.Results as a Cake Addin
#addin nuget:?package=Qrtix.Results&version=2.0.0

// Install Qrtix.Results as a Cake Tool
#tool nuget:?package=Qrtix.Results&version=2.0.0

Result Library

NuGet Version NuGet Downloads GitHub Repo stars

This C# library provides functionality for manage results. Consult the online documentation for more details.

Getting Started

To install Qrtix.Results, you can use NuGet Package Manager in Visual Studio or the .NET CLI.

NuGet Package Manager

  1. Open your project in Visual Studio.
  2. Right-click on your project in Solution Explorer.
  3. Select "Manage NuGet Packages..."
  4. Search for "Qrtix.Results" in the NuGet Package Manager.
  5. Click on "Install" to add the package to your project.

.NET CLI

You can also install Qrtix.Results using the .NET CLI:

dotnet add package Qrtix.Results

Contributing

Did you find a bug?

  • Ensure the bug was not already reported by searching on GitHub under Issues.
  • If you're unable to find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and a code sample or an executable test case demonstrating the expected behavior that is not occurring.

Did you write a patch that fixes a bug?

  • Open a new GitHub pull request with the patch.
  • Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.

Do you intend to add a new feature or change an existing one?

  • First suggest your change in the Results ideas page for discussion.
  • There are no fixed rules on what should and shouldn't be in this library, but some features are more valuable than others, and some require long-term maintenance that outweighs the value of the feature. So please get sign-off from the project leader (Carlos J. Ortiz) before putting in an excessive amount of work.

Do you have questions about the source code?

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 77 5/9/2024
1.1.0 93 5/6/2024
1.0.3 82 4/22/2024
1.0.2 89 3/31/2024
1.0.1 83 3/31/2024
1.0.0 89 3/31/2024

- Remove the implicit operators to create the Result from ResultTypes.
- Add an static factory class to create Results. It's recommended add this line: 'using static Results.ResultFactory'.
- Remove the non generic result class.
- Add a class named Empty to represent a result without data.