-
-
Notifications
You must be signed in to change notification settings - Fork 982
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
Revert remove old runtimes #2692
Conversation
Updated MultipleFrameworks tests.
607c682
to
df29aba
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@timcassell thank you for your contribution!
I am fine with restoring the support for .NET Core 2.0, but:
- all our docs and samples should be using supported TFMs (net8.0 and net9.0)
- the parsing tests should cover both old and new tfms as string inputs
- the test projects should keep running as net8.0
I hope that my suggestion won't be too much work (it should be a matter of few reverts here and there).
tests/BenchmarkDotNet.IntegrationTests.ManualRunning/LocalNativeAotToolchainTests.cs
Outdated
Show resolved
Hide resolved
13a52ca
to
75274f9
Compare
@adamsitnik I think I addressed all of your feedback. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you @timcassell !
Reverts #2505, re-enabling old runtimes back to netcoreapp2.0 by utilizing
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
(thanks to the solution by @adamsitnik in #2686).