Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 738 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 738 Bytes

Build status

Installation

Install ReportPortal.Tracer NuGet package.

NuGet version

PS> Install-Package ReportPortal.Tracer

Configuration

Add custom listener in your App.config file.

<configuration>
  ...
  <system.diagnostics>
    <trace>
      <listeners>
        <add name="ReportPortalListener" type="ReportPortal.Tracer.ReportPortalTracer, ReportPortal.Tracer" />
      </listeners>
    </trace>
  </system.diagnostics>
  ...
</configuration>