0
votes

I installed a package with Nuget on VisualStudio, but in the Packages of my project, this message appears in the extension I installed. What should I do to make it work properly? The extension is: ThriveGmbH.BottomNavigationBar

Package 'ThriveGmbH.BottomNavigationBar.LATEST 1.0.6' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETStandard,Version=v2.0'. This package may not be fully compatible with your project.

1

1 Answers

0
votes

Different projects can target different frameworks. Your project is targeting netstandard2.0, but the package you're depending on doesn't support any netstandard framework.

The only solutions are to not depend on that package, or to change the target framework of your project to net472 or one of the others in the list in the error message.