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
#35 is for a package that doesn't support net8.0 and so can't be referenced in a package that also includes the test project.
Can work around this by setting: <PackageReference Include="Plugin.MauiMTAdmob" Version="1.1.1" Condition="'$(TargetFramework)' != 'net8.0'" />
However, the current generator code doesn't support setting a condition for a package added via the add Nuget package postaction.
Look at modifying/extending the postaction, or adding a new postaction that can run afterwards and set the condition.
The text was updated successfully, but these errors were encountered:
#35 is for a package that doesn't support
net8.0
and so can't be referenced in a package that also includes the test project.Can work around this by setting:
<PackageReference Include="Plugin.MauiMTAdmob" Version="1.1.1" Condition="'$(TargetFramework)' != 'net8.0'" />
However, the current generator code doesn't support setting a condition for a package added via the add Nuget package postaction.
Look at modifying/extending the postaction, or adding a new postaction that can run afterwards and set the condition.
The text was updated successfully, but these errors were encountered: