Microsoft.Diagnostics.Tracing.EventSource.Redist
1.1.24
See the version list below for details.
Requires NuGet 2.5 or higher.
Install-Package Microsoft.Diagnostics.Tracing.EventSource.Redist -Version 1.1.24
dotnet add package Microsoft.Diagnostics.Tracing.EventSource.Redist --version 1.1.24
<PackageReference Include="Microsoft.Diagnostics.Tracing.EventSource.Redist" Version="1.1.24" />
paket add Microsoft.Diagnostics.Tracing.EventSource.Redist --version 1.1.24
#r "nuget: Microsoft.Diagnostics.Tracing.EventSource.Redist, 1.1.24"
// Install Microsoft.Diagnostics.Tracing.EventSource.Redist as a Cake Addin
#addin nuget:?package=Microsoft.Diagnostics.Tracing.EventSource.Redist&version=1.1.24
// Install Microsoft.Diagnostics.Tracing.EventSource.Redist as a Cake Tool
#tool nuget:?package=Microsoft.Diagnostics.Tracing.EventSource.Redist&version=1.1.24
This package includes the class Microsoft.Diagnostics.Tracing.EventSource which enables firing ETW events from managed code. This is the "runtime" or "redist" EventSource package and should be referenced directly only by other NuGet packages that need the EventSource functionality. Application developers that need this functionality should instead reference the Microsoft.Diagnostics.Tracing.EventSource NuGet package which provides an enhanced developer experience.
This package enables defining a strongly typed specification of an ETW provider that can be called by managed code. The EventSource class is also included in the .NET Framework. This package provides a newer version that has more features. It is meant to be used as a stop gap until those features it contains are ported to System.Diagnostics.Tracing.EventSource.
For more details, have a look at https://msdn.microsoft.com/en-us/library/system.diagnostics.tracing.eventsource.aspx.
New features:
- ETW channel support
- Support for static registration
Supported Platforms:
- .NET Framework 3.5
- .NET Framework 4.0
- .NET Framework 4.5
- Windows Store apps
- Windows Phone App 8.1
| Product | Versions |
|---|---|
| .NET Framework | net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
This package has no dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Microsoft.Diagnostics.Tracing.EventSource.Redist:
| Package | Downloads |
|---|---|
|
Microsoft.ApplicationInsights.AspNet
Application Insights for ASP.NET 5 web applications. See http://go.microsoft.com/fwlink/?LinkID=510752 for more information. |
|
|
Microsoft.ApplicationInsights.Agent.Intercept
This NuGet enables Interception of method calls. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156 |
|
|
Microsoft.ApplicationInsights.Web.TelemetryChannel
This nuget provides a telemetry channel to Application Insights Web SDK that will preserve telemetry in offline scenarios. This is a dependent package, for the best experience please install the platform specific package. |
The 1.1 release of EventSource has a number of new non-trivial features
DynamicEvents - Allows events defined 'on the fly' by without creating a 'event method'.
RichPayloads - Allows specially attributed classes and arrays as well as primitive types to be passed as a payload.
ActivityTracking - Causes Start and Stop events to tag events between them with ID that represents all currrntly active activties.
All of these features are non-trivial in the sense that they need more explaination than release notes justify.
Eventually MSDN will have this documentation, and you can go to https://blogs.msdn.com/b/vancem/ to get a preview.