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

Cleanup TFM handling for the new dotnet test for MTP #47489

Merged
merged 1 commit into from
Mar 13, 2025

Conversation

Youssef1313
Copy link
Member

@Youssef1313 Youssef1313 commented Mar 12, 2025

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:

dotnet restore -p:TargetFramework=net9.0
dotnet build -p:TargetFramework=net9.0 --no-restore
dotnet test -p:TargetFramework=net9.0 --no-build

The new logic will also do fewer re-evaluations, so it should be faster.

@Copilot Copilot bot review requested due to automatic review settings March 12, 2025 05:36
@Youssef1313 Youssef1313 requested a review from a team as a code owner March 12, 2025 05:36
@dotnet-issue-labeler dotnet-issue-labeler bot added Area-Infrastructure untriaged Request triage from a team member labels Mar 12, 2025
Copy link
Contributor

@Copilot Copilot AI left a 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);

@Youssef1313 Youssef1313 force-pushed the dev/ygerges/tfm-handling branch from 3fd39e2 to 3666720 Compare March 12, 2025 05:41
Copy link
Member

@Evangelink Evangelink left a 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?

@baronfel
Copy link
Member

baronfel commented Mar 12, 2025

This seems reasonable, however I would strongly disagree with users passing -p:TargetFramework=XXX on the command line. We have an established flag for doing that (-f/--framework) and we should not encourage users to do things in nonstandard ways. That may mean that you need to make sure to handle the SDK's concept of 'forwarded options' in this code path (I don't know the specifics of if/how you're doing that now) but that's something you just have to do in order to keep to our established UX interaction patterns.

@Youssef1313
Copy link
Member Author

I think -f is already handled and is forwarded correctly. We end up setting the passed value as a global property either way.

@Youssef1313
Copy link
Member Author

/azp run

Copy link

Azure Pipelines successfully started running 4 pipeline(s).

@Youssef1313 Youssef1313 force-pushed the dev/ygerges/tfm-handling branch from 4a97503 to 004e794 Compare March 13, 2025 05:34
@Youssef1313 Youssef1313 merged commit 6616a99 into main Mar 13, 2025
37 of 39 checks passed
@Youssef1313 Youssef1313 deleted the dev/ygerges/tfm-handling branch March 13, 2025 07:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Infrastructure untriaged Request triage from a team member
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants