Hi,
I am very new in Asp.Net Core MVC web application development.
I am first time developing an application using Asp.Net Core MVC, in which I am using DataTables.net
I have installed DataTables.net from NuGet Packages: "datatables.net" -- LatestStable 1.10.18
(1st search result with Description: DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, and will add advanced interaction controls to any HTML table.)
After installing, I can see under project -- "Dependencies -- Packages -- datatables.net(1.10.18)"
After doing so, I am getting below warning message:
Warning NU1701 Package 'datatables.net 1.10.18' 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 '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.
Also, I tried to add datatables.net reference (css and js) in _Layout.cshtml file, using below link:
https://datatables.net/download/
(under Download Tab -- Added the folders in my project same as per unzipped structure).
How to resolve above warning ?
Thank you so much in advance.
Please help.