I have a Desktop application which has TargetFramework in the csproj file as netcoreapp3.1
One of our new customer has installed .NET 6 runtime.
When trying to install the application, the customer is getting a prompt to install .NET Core 3.1 to continue the installation.
Is there a way that allows the user to install the app with just .NET 6 runtime installed?
I prefer not to modify the csproj file to add .NET 6 to the TargetFrameworks list as this will require new installers to be created.