You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
Right now Xamarin.Build.Download does not work appropriately in .NET 6
projects. It relies on the value of `$(TargetFrameworkIdentifier)`,
which will be set to `.NETCoreApp` in .NET 6.
To fix this, we can also check if `$(TargetPlatformIdentifer)` is
equal to `ios` or `android`. This should enable Xamarin.Build.Download
to work in .NET 6 projects going forward.
I also tried to fix different casing for `or` and `and` -- to always
use lowercase.
<PropertyGroupCondition="'$(TargetFrameworkIdentifier)'=='Xamarin.iOS' And ('$(OutputType)' != 'Library' OR '$(IsAppExtension)'=='True')">
13
+
<PropertyGroupCondition="('$(TargetFrameworkIdentifier)'=='Xamarin.iOS' or '$(TargetPlatformIdentifier)'=='ios') and ('$(OutputType)' != 'Library' or '$(IsAppExtension)'=='True')">
0 commit comments