X Tutup
The Wayback Machine - https://web.archive.org/web/20201124034648/https://github.com/NLog/NLog/issues/3979
Skip to content
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

Proposal: Drop support .NET 4.0 (and add 4.6) #3979

Open
304NotModified opened this issue May 28, 2020 · 3 comments
Open

Proposal: Drop support .NET 4.0 (and add 4.6) #3979

304NotModified opened this issue May 28, 2020 · 3 comments
Milestone

Comments

@304NotModified
Copy link
Member

@304NotModified 304NotModified commented May 28, 2020

From https://docs.microsoft.com/en-us/lifecycle/faq/dotnet-framework

.NET Framework 4: .NET Framework 4 did not ship in any operating system. Support for the .NET Framework 4 on Windows Server 2003 SP2 ended on July 14, 2015, and support on all other operating systems ended on January 12, 2016.

@304NotModified 304NotModified added this to the 5.0 (new) milestone May 28, 2020
@304NotModified
Copy link
Member Author

@304NotModified 304NotModified commented May 28, 2020

related #3817

@snakefoot
Copy link
Contributor

@snakefoot snakefoot commented May 28, 2020

Along with also dropping Silverlight and Xamarin-builds. Now resolved with #3978

@snakefoot
Copy link
Contributor

@snakefoot snakefoot commented Jun 29, 2020

When removing .Net4 and adding .Net46, then I think we should remove the custom NLog defines NET3_5 + NET4_5 + NET4_6 and instead use the default ones NET35 + NET45 + NET46

Also the defines should changed from opt-in:

#if NET45 || NET46
// blah blah
#endif

To opt-out:

#if !NET35
// blah blah
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.
X Tutup