Saturn Paket dependency issue

Hi,
I have tried to get Saturn | Getting started working by

mkdir fsharp-playground
cd fsharp-playground

# https://fsprojects.github.io/Paket/get-started.html#net-core-preferred
dotnet new tool-manifest
dotnet tool install paket
dotnet tool restore
dotnet paket init

# https://saturnframework.org/tutorials/how-to-start.html
mkdir server
cd server
dotnet new console -lang F#
dotnet paket add Saturn
dotnet build
Build FAILED.

/tmp/fsharp-playground/server/server.fsproj : error NU1202: Package Microsoft.AspNetCore.Authentication.JwtBearer 6.0.1 is not compatible with net5.0 (.NETCoreApp,Version=v5.0). Package Microsoft.AspNetCore.Authentication.JwtBearer 6.0.1 supports: net6.0 (.NETCoreApp,Version=v6.0)

In paket.dependencies it is stated:

framework: net5.0, netstandard2.0, netstandard2.1

Why is there a dependency which needs net6.0 in my project now?

Thank you!

1 Like

Maybe a general issue: Paket issue #4096