ObjectPrinter 2.0.7

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

// Install ObjectPrinter as a Cake Tool
#tool nuget:?package=ObjectPrinter&version=2.0.7

Dumps an object to a string or a text writer. Great for debugging. Awesome for capturing context in production exception dumps.

Use ObjectPrinter.Log4Net for a renderer to automatically dump all logged exceptions using log4net.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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 (12)

Showing the top 5 NuGet packages that depend on ObjectPrinter:

Package Downloads
MultiCommandConsole

Framework for creating console apps with multiple commands IoC Registration: register all types where - type.IsAssignableTo<IConsoleCommand>() - type.HasCustomAttribute<ArgSetAttribute>()

MultiCommandConsole.Services

Enables MultiCommandConsole commands to be run as services

SimpleSettings

Makes mapping key/value stores (appSettings, environment variables, NameValueCollections...) to POCs dead simple and highly extensible.

ObjectPrinter-Log4Net-1.2.10

Provides an object renderer to integrate with log4net to dump exceptions (or any/all object types) using the ObjectPrinter. Also provides a log4net type inspector to prevent prevent dumping log4net objects that should be converted to strings.

ObjectPrinter-Log4Net-1.2.11

Provides an object renderer to integrate with log4net to dump exceptions (or any/all object types) using the ObjectPrinter. Also provides a log4net type inspector to prevent prevent dumping log4net objects that should be converted to strings.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.35 161,862 5/6/2016
2.0.30 11,442 4/6/2015
2.0.29 7,931 1/24/2015
2.0.28 1,895 12/28/2014
2.0.27 1,782 12/28/2014
2.0.26 1,791 12/27/2014
2.0.20 5,533 6/2/2014
2.0.19 1,670 5/27/2014
2.0.18 1,667 5/27/2014
2.0.17 1,698 5/27/2014
2.0.12 1,673 5/26/2014
2.0.11 1,695 5/26/2014
2.0.10 1,712 5/26/2014
2.0.9 1,739 5/26/2014
2.0.8 1,697 5/26/2014
2.0.7 1,699 5/6/2014
2.0.6 1,680 5/4/2014
2.0.5 1,835 5/4/2014
2.0.4 1,727 5/4/2014
2.0.3 1,701 5/4/2014
1.2.5140.3134 13,584 1/27/2014
1.2.5140.3078 1,261 1/27/2014
1.2.5140.2617 1,612 1/27/2014
1.2.5138.19224 1,489 1/25/2014
1.2.5137.27952 1,270 1/24/2014
1.2.0 10,848 1/23/2014
1.1.1 14,612 12/30/2012
1.1.0 1,315 12/28/2012
1.0.4 1,393 12/28/2012
1.0.3 1,266 12/28/2012
1.0.2 1,279 12/28/2012
1.0.1 1,610 12/1/2012
1.0.0 2,317 12/1/2012

v 1.2.5138.19225
- replace locks in MemberCache w/ ConcurrentDictionary.
 increase lookup speed, and decrease code complexity

v 1.2.5137.27952
- added ShouldObscureValue and ObscureValueText: enables obscuring sensitive data.  
 use Funcs.MemberContainsPassword to hide properties containing password, pwd, salt, connstring and connectionstring

v 1.2.0 ~ BREAKING CHANGES
- fixed centralized configs, moving all configs to Configs static class.
- fixed bug in Funcs.IncludtType, where condition needed to be reversed.
- share reflection cache between inspectors for lifetime of appdomain
- add LazyDump extension method, same as Dump, but less likely to conflict with Dump methods from other assemblies.

v 1.1.1
- fixed bug where cached version of exception could be included in the context if ex.DumpToString()
was called and then later the exception was output not using that extension method.
- exception caching is now disabled by default and can be enabled via the config.
the cache will only be saved when dumping to string, but the cache will be reused when dumping to any source.

v 1.1.0 ~ BREAKING CHANGES
- adding TypeInspectorsRegistration to make it easy to add custom inspectors.
- renamed DefaultTypeInspector to CatchAllTypeInspector
- removed InspectorsWithAllTypesInspected and InspectorsWithMsTypesToStringed in favor of TypeInspectorsRegistration

v 1.0.4
- fixed bug where NonSerializableWrapper was being printed.  added smoke tests.
- fixed bug where empty enumerable could print poorly and lose data.  added smoke tests.