ref: replace concrete TargetFramework string comparisons with TargetFrameworkIdentifier/Version properties#5240
Draft
jamescrosswell wants to merge 2 commits into
Draft
ref: replace concrete TargetFramework string comparisons with TargetFrameworkIdentifier/Version properties#5240jamescrosswell wants to merge 2 commits into
jamescrosswell wants to merge 2 commits into
Conversation
…rameworkIdentifier/TargetFrameworkVersion properties
Replace `$(TargetFramework) == 'net8.0'` style conditions with
`$(TargetFrameworkIdentifier) == '.NETCoreApp' And $(TargetFrameworkVersion) == 'v8.0'`
equivalents across src, test, and samples project files, as recommended by
the MSBuild best practices guidance. Also replaces `TargetFramework.Contains('-ios')`
with `$(TargetPlatformIdentifier) == 'ios'`.
Closes #2657
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: James Crosswell <james.crosswell@gmail.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5240 +/- ##
==========================================
- Coverage 74.12% 74.11% -0.01%
==========================================
Files 508 508
Lines 18282 18282
Branches 3574 3574
==========================================
- Hits 13551 13550 -1
- Misses 3861 3866 +5
+ Partials 870 866 -4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
jamescrosswell
commented
May 17, 2026
A bunch of these were unnecessarily specific, simply because historically it was easier to do an exact match than fuzzy matching. Checking the identifier and the versions separately, we can drop the version checks whenever we're checking for netfx and often times when checking for netstandard as well (e.g. when we only target on version of netstandard). Co-authored-by: James Crosswell <jamescrosswell@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace hardcoded
$(TargetFramework)string comparisons in.csprojfiles with the more scalable$(TargetFrameworkIdentifier)+$(TargetFrameworkVersion)property checks, as recommended by MSBuild best practices.'$(TargetFramework)' == 'net8.0'→'$(TargetFrameworkIdentifier)' == '.NETCoreApp' And '$(TargetFrameworkVersion)' == 'v8.0''$(TargetFramework)' == 'net48'→'$(TargetFrameworkIdentifier)' == '.NETFramework' And '$(TargetFrameworkVersion)' == 'v4.8''$(TargetFramework)' == 'netstandard2.0'→'$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(TargetFrameworkVersion)' == 'v2.0'$(TargetFramework.Contains('-ios'))→'$(TargetPlatformIdentifier)' == 'ios'14 files updated across
src/,test/, andsamples/.#skip-changelog
Closes #2657