designs icon indicating copy to clipboard operation
designs copied to clipboard

Add proposal for simpler multi-targeting conditions

Open dsplaisted opened this issue 1 year ago • 0 comments

This proposes making conditions for multi-targeted projects simpler. Instead of this:

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>

You would be able to do this:

<SupportedOSPlatformVersion Condition="'$(TargetPlatformIdentifier)' == 'ios'">11.0</SupportedOSPlatformVersion>

This should be more concise and understandable

Rendered Proposal

dsplaisted avatar Mar 24 '23 00:03 dsplaisted