I wanna implement compression on my services (netCore webapi) and I've found thi library to do it easily, through this nugget System.Net.Http.Extensions.Compression.Client , the problem is this: that nugget shows a warnning when I try to use it on a .Net Standar 2.0 class library, like my xamarin project, Does anyone knows if there is another library to decompress on the client when the data is comming with compression from the WebApi ? I don't know if the warnning about possible incompatibility on .Net Standar may bring some problems. Can anyone guideme on this matters?
This the warning
Warning NU1701 Package 'System.Net.Http.Extensions.Compression.Client 2.0.5' 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.
thanks for your help