We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I changed the TargetFrameworkVersion to 12.0 in my project but the package still generates the wrong condition:
<Choose> <When Condition="$(TargetFrameworkIdentifier) == 'MonoAndroid' And $(TargetFrameworkVersion) == 'v10.0'"> <PropertyGroup> <__paket__Xamarin_Android_Support_VersionedParcelable_targets>monoandroid90\Xamarin.Android.Support.VersionedParcelable</__paket__Xamarin_Android_Support_VersionedParcelable_targets> </PropertyGroup> </When> </Choose>
Create blank MonoAndroid app and add any dependency.
Set TargetFrameworkVersion to v12.0
TargetFrameworkVersion
v12.0
Run dotnet paket install
dotnet paket install
<Choose> <When Condition="$(TargetFrameworkIdentifier) == 'MonoAndroid' And $(TargetFrameworkVersion) == 'v12.0'"> <PropertyGroup> <__paket__Xamarin_Android_Support_VersionedParcelable_targets>monoandroid90\Xamarin.Android.Support.VersionedParcelable</__paket__Xamarin_Android_Support_VersionedParcelable_targets> </PropertyGroup> </When> </Choose>
None
The text was updated successfully, but these errors were encountered:
@forki should we add monoandroid11.0/monoandroid12.0 support to Paket?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
I changed the TargetFrameworkVersion to 12.0 in my project but the package still generates the wrong condition:
Repro steps
Create blank MonoAndroid app and add any dependency.
Set
TargetFrameworkVersion
tov12.0
Run
dotnet paket install
Expected behavior
Actual behavior
Known workarounds
None
The text was updated successfully, but these errors were encountered: