ValueUtils 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ValueUtils --version 1.2.0
NuGet\Install-Package ValueUtils -Version 1.2.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="ValueUtils" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ValueUtils --version 1.2.0
#r "nuget: ValueUtils, 1.2.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 ValueUtils as a Cake Addin
#addin nuget:?package=ValueUtils&version=1.2.0

// Install ValueUtils as a Cake Tool
#tool nuget:?package=ValueUtils&version=1.2.0

Provides utilities to make working with classes having value-semantics (e.g. a data transfer object) more practical in C#.
     
     Just write "sealed class MyClass : ValueObject<MyClass>" to add value semantics to your class.
     
     In particular, includes a efficient hash-code & equality function generators for arbitrary objects
     using runtime code generation to result in code similar to what you'd write by hand.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has 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
1.4.0 108,279 5/5/2017
1.3.0 3,783 2/6/2016
1.2.2 1,663 6/1/2014
1.2.1 1,376 5/30/2014
1.2.0 1,419 5/29/2014
1.1.0 1,382 5/29/2014
1.0.1 1,366 5/29/2014
1.0.0 1,388 5/29/2014
0.2.0 1,406 5/28/2014
0.1.0 1,388 5/27/2014

Bugfix: add support for nullable, enum and/or struct fields in equality operations.