This project is currently using Serilog.Sinks.File 4.0.0 while version 5.0.0 has been available since June 2021. The older 4.0 version has a lot of dependencies on system packages like System.IO which in turn have various other "older" dependencies. This is causing some issues for us with implicit package downgrades in completely unrelated parts of our app. Manually adding the update to Serilog.Sinks.File fixes the problem.
That aside, what does this library actually use the File sink for? Github code search only showing the reference in the project file. Is it actually used for something?
This project is currently using Serilog.Sinks.File 4.0.0 while version 5.0.0 has been available since June 2021. The older 4.0 version has a lot of dependencies on system packages like
System.IO
which in turn have various other "older" dependencies. This is causing some issues for us with implicit package downgrades in completely unrelated parts of our app. Manually adding the update toSerilog.Sinks.File
fixes the problem.Compare the depdendencies:
That aside, what does this library actually use the File sink for? Github code search only showing the reference in the project file. Is it actually used for something?