-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use .Net 5 packages? #49
Comments
Otherwise, I think I can probably just explicitly include v5 of System.Configuration.ConfigurationManager in my logging nuget project (not the app, just a wrapping logging project to reduce boilerplate and get things a certain way), and move on. |
Hi @zachrybaker - would your problem be solved by adding a .NET 5 TFM to https://github.com/serilog/serilog-settings-appsettings/blob/dev/src/Serilog.Settings.AppSettings/Serilog.Settings.AppSettings.csproj ? We've made that change in several other libs so should be no problem pushing through here. Any chance of a PR? |
I doubt it would in my case only b/c my target is actually netCore3.1.
…On Fri, Mar 25, 2022 at 4:04 PM Nicholas Blumhardt ***@***.***> wrote:
Hi @zachrybaker <https://github.com/zachrybaker> - would your problem be
solved by adding a .NET 5 TFM to
https://github.com/serilog/serilog-settings-appsettings/blob/dev/src/Serilog.Settings.AppSettings/Serilog.Settings.AppSettings.csproj
? We've made that change in several other libs so should be no problem
pushing through here. Any chance of a PR?
—
Reply to this email directly, view it on GitHub
<#49 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACDSMXO5WJVFFEQR3ZTA4DVBYS5LANCNFSM5RR4VPXQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Question: What version of |
I think for this package I'd lean towards "the minimum non-vulnerable version that works", but I haven't given it any deep thought :-) |
Ok (version 5.0 has been deprecated now, so that won't be the one to use at least) |
WIP updates for Serilog 4 at #52 (adds .NET6/8 targets) |
Some poor blokes like me need this code to work well with both net472, netCore3.1 and Net5 (and possibly net6) targets. This package ends up in a large solution and ends up pulling a v4 of System.Configuration.ConfigurationManager. We have another hard requirement for v5 of this package, however, that keeps an app from booting, unless I overwrite this dll on boot with a v5.
I really doubt that there's a hard requirement on the net472 framework's version, right?
The text was updated successfully, but these errors were encountered: