Ether.Outcomes 2.0.2-alpha

This is a prerelease version of Ether.Outcomes.

Requires NuGet 2.8.1 or higher.

dotnet add package Ether.Outcomes --version 2.0.2-alpha
NuGet\Install-Package Ether.Outcomes -Version 2.0.2-alpha
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="Ether.Outcomes" Version="2.0.2-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ether.Outcomes --version 2.0.2-alpha
#r "nuget: Ether.Outcomes, 2.0.2-alpha"
#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 Ether.Outcomes as a Cake Addin
#addin nuget:?package=Ether.Outcomes&version=2.0.2-alpha&prerelease

// Install Ether.Outcomes as a Cake Tool
#tool nuget:?package=Ether.Outcomes&version=2.0.2-alpha&prerelease

Outcome.NET uses generics and a fluent interface to add metadata to your return value. It's an expressive, clean  result wrapper.

Outcome really shines when you're orchestrating complex logic, because the fluent interface makes it easy to roll up messages from multiple methods, and even from unusual sources like exceptions. The resulting code is very clean, and is great way to implement the Notification pattern.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.2-alpha 67 5/7/2015
2.0.1-alpha 31 4/29/2015
2.0.0-alpha 32 3/30/2015
1.3.1 98 3/27/2015
1.3.1-alpha 32 3/26/2015
1.3.0-alpha 34 3/23/2015
1.2.0 143 2/11/2015
1.1.0 450 11/14/2014
1.0.5 361 10/30/2014
1.0.4 112 8/7/2014
1.0.3 67 6/21/2014
1.0.2 55 6/17/2014
1.0.1 56 6/17/2014
1.0.0 56 6/17/2014

- Reworked the library as a PCL, and provided targets for Xamarin.
- Removed methods that were deprecated at the end of 1.x
- Added the notion of StatusCodes, which is just another kind of metadata you can choose to use, or not. StatusCodes can be generic but default to int?.
- Renamed FormatMultiLine to ToMultiLine, and added an overload for no delimiter.