trbenning / serilog-sinks-xunit

The xunit test output sink for Serilog
MIT License
80 stars 7 forks source link

Update dependencies #29

Closed treziac closed 1 year ago

treziac commented 2 years ago

With xunit 2.4.2, it causes an issue to have xunit.core directly referenced in a test library which should not be considered as testable (only helpers method) We had the issue as we reference Serilog.Sinks.Xunit, which reference xunit.core The correct usage as stated here https://xunit.net/docs/nuget-packages is to reference the extensibility packages.

This PR also includes other reference updates.