Tracer.Fody 1.6.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Tracer.Fody --version 1.6.0
NuGet\Install-Package Tracer.Fody -Version 1.6.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="Tracer.Fody" Version="1.6.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tracer.Fody --version 1.6.0
#r "nuget: Tracer.Fody, 1.6.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 Tracer.Fody as a Cake Addin
#addin nuget:?package=Tracer.Fody&version=1.6.0

// Install Tracer.Fody as a Cake Tool
#tool nuget:?package=Tracer.Fody&version=1.6.0

Trace.Fody is an ILWeaver which adds trace enter and leave log entries to methods. Besides it rewrites static log calls to
   instance calls adding method information to the call in order to avoid costly stack walks in the logger. This is a general rewriter which can be adapted to different logging frameworks, do not use it directly.
Use one of the existing adapters in your project like Tracer.Log4Net.Fody or build your own.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

    • Fody (>= 2.0.9 && < 3.0.0)

NuGet packages (13)

Showing the top 5 NuGet packages that depend on Tracer.Fody:

Package Downloads
Tracer.OpenTracing.Fody

Tracer.Fody plugin for instrumenting with OpenTracing

Xels.Bitcoin

Xels Bitcoin FullNode

Xels.Bitcoin.Features.Consensus

Xels Bitcoin Features Consensus

Xels.Bitcoin.Features.MemoryPool

Xels Bitcoin Features MemoryPool

Xels.Bitcoin.Features.RPC

Xels Bitcoin Features RPC

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Tracer.Fody:

Repository Stars
stratisproject/StratisBitcoinFullNode
Bitcoin full node in C#
Version Downloads Last updated
3.3.1 86,761 4/19/2020
3.3.0 6,690 3/5/2020
3.2.2 8,170 1/6/2020
3.2.1 1,653 12/7/2019
3.2.0 11,116 10/14/2019
3.1.0 25,111 5/27/2019
3.0.0 4,015 3/19/2019
3.0.0-beta3 1,775 3/1/2019
3.0.0-beta2 1,264 2/21/2019
3.0.0-beta 1,658 2/18/2019
2.2.0 62,518 5/14/2018
2.0.0 3,952 11/5/2017
1.6.0 9,033 5/18/2017
1.5.0 16,085 4/18/2017
1.4.0 7,523 1/2/2017
1.3.1 2,791 8/24/2016
1.3.0 8,866 7/17/2016
1.2.4 2,830 4/14/2016
1.2.3 2,794 3/21/2016
1.2.2 2,775 3/19/2016
1.2.0 4,983 10/13/2015
1.1.1 2,473 8/19/2015
1.1.0 2,950 6/7/2015
1.0.0 2,656 5/17/2015

* 1.0.0
   Initial release
* 1.1.0
   - Trace leave now logs when a method is exited with an exception
   - Bug fix on static log rewrites
   - Tracer now creates verifiable code
* 1.1.1
   - Fixed static log rewrite for constructors and closures/lambdas
* 1.2.0
   - In the configuration TraceOn target value extended with 'none' which means no tracing by default
   - Changed TraceLeave signature to receive start and end ticks instead of elapsed ticks
* 1.2.2
- Updated to Fody 1.29.4
* 1.2.3
- Added support for strong named custom adapter assemblies
* 1.2.4
- Added option to trace log constructors with traceConstructors flag.
* 1.3.0
   - Static log rewrite now supports rewriting static property getters (e.g one can use Log.IsDebug to avoid costly calls)
   - Fix: Static constructors are excluded from tracing
   - Assembly level xml trace configuration is extended. Multiple TraceOn and NoTrace elements can be specified. Both supports
   namespace attribute which defines the scope of the configuration set. See documentation for more details.
   - property getter/setter rewriting can be turned off using traceProperties flag in xml configuration
   - NoTrace and TraceOn attributes now can be also applied on properties
* 1.3.1
   - bug fix: on some machines resolving method reference of static log methods did not work properly
* 1.4.0
   - added support for rewriting static generic log methods (fully instantiated case)
* 1.5.0
   - Added support for trace logging async methods
* 1.6.0
   - Updated dependency to Fody 2.x