-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Cleanup TFM handling for the new dotnet test for MTP #47489
Conversation
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.
Pull Request Overview
This PR cleans up the TargetFramework handling for dotnet test by ensuring that global properties are applied correctly and multi-targeting scenarios are properly handled.
- Removed manipulation of global properties to override the TargetFramework property prior to project load.
- Changed the control flow to handle scenarios where both TargetFramework and TargetFrameworks may be set, including iterating over multiple target frameworks.
Comments suppressed due to low confidence (1)
src/Cli/dotnet/commands/dotnet-test/SolutionAndProjectUtility.cs:129
- Clearing 'TargetFrameworks' on each iteration may discard useful multi-targeting information needed by subsequent evaluations. Consider whether this property should be cleared before the loop or retained for later use.
project.SetProperty(ProjectProperties.TargetFrameworks, string.Empty);
src/Cli/dotnet/commands/dotnet-test/SolutionAndProjectUtility.cs
Outdated
Show resolved
Hide resolved
3fd39e2
to
3666720
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.
@baronfel @rainersigwald could we have a confirmation here?
This seems reasonable, however I would strongly disagree with users passing |
I think |
3666720
to
059a258
Compare
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
059a258
to
4a97503
Compare
4a97503
to
004e794
Compare
Related to #45927
The logic around removing TFM from global properties and then making sure the global property is valid doesn't sound correct to me.
The user should be free to have their csproj with
<TargetFramework>net8.0</TargetFrameworks>
and then be able to do this:The new logic will also do fewer re-evaluations, so it should be faster.