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
Some packages use nonstandard (?) monikers in nuspec. AWSSDK.Core includes <group targetFramework=".NETCoreApp8.0" />, while Paket supposedly expects net8.0.
Repro steps
Create a net8.0 project
paket add AWSSDK.Core 3.7.300.4
Expected behavior
Package added cleanly.
Actual behavior
Warning Could not detect any platforms from '.netcoreapp8.0' in 'C:\Users\goof\.nuget\packages\awssdk.core\3.7.300.4\awssdk.core.nuspec', please tell the package authors, and I assume Paket then doesn't use the net8.0 assembly from the package.
Known workarounds
None.
The text was updated successfully, but these errors were encountered:
Makes me wonder if we should have unit tests that scrape nuget.org (or basically, calls into the same code used there) to assert we match the same targets as shown on the page, nuget.org shows correct resolution.
Description
Some packages use nonstandard (?) monikers in nuspec. AWSSDK.Core includes
<group targetFramework=".NETCoreApp8.0" />
, while Paket supposedly expectsnet8.0
.Repro steps
Expected behavior
Package added cleanly.
Actual behavior
Warning
Could not detect any platforms from '.netcoreapp8.0' in 'C:\Users\goof\.nuget\packages\awssdk.core\3.7.300.4\awssdk.core.nuspec', please tell the package authors
, and I assume Paket then doesn't use the net8.0 assembly from the package.Known workarounds
None.
The text was updated successfully, but these errors were encountered: