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

Drop legacy frameworks #981

Merged
merged 3 commits into from
Aug 31, 2023
Merged

Drop legacy frameworks #981

merged 3 commits into from
Aug 31, 2023

Conversation

SimonCropp
Copy link
Member

fixes #784

@SimonCropp SimonCropp added this to the 21.0.0 milestone Aug 31, 2023
@SimonCropp SimonCropp merged commit 6ea4d53 into main Aug 31, 2023
3 checks passed
@SimonCropp SimonCropp deleted the drop-legacy-frameworks branch August 31, 2023 02:17
Comment on lines +3 to +4
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net472;net48</TargetFrameworks>
<TargetFrameworks>$(TargetFrameworks);net6.0;net7.0;net8.0</TargetFrameworks>
Copy link
Contributor

@ViktorHofer ViktorHofer Aug 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: You don't need the '$(OS)' == 'Windows_NT' conditions anymore as the .NET SDK automatically pulls in the .NET Framework targeting pack when building on Windows/Unix.

You could just collapse these to: <TargetFrameworks>net472;net48;net6.0;net7.0;net8.0</TargetFrameworks>.

Same for the other projects.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ViktorHofer awesome. thanks for the hint

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

Drop unsupported frameworks
2 participants