Im try to use Rotativa ım follow this guide in start.cs in configure function ım add this code
RotativaConfiguration.Setup(env);
Severity Code Description Project File Line Suppression State
Error CS1503 Argument 1: cannot convert from 'Microsoft.AspNetCore.Hosting.IWebHostEnvironment' to 'Microsoft.AspNetCore.Hosting.IHostingEnvironment'
ım search this error and find this and convert my code like this
RotativaConfiguration.Setup(env.WebRootPath, "Rotativa");
and its give me this error
Severity Code Description Project File Line Suppression State
Error CS1503 Argument 1: cannot convert from 'string' to 'Microsoft.AspNetCore.Hosting.IHostingEnvironment'
ım add Rotative folder in wwwroot and added wkhtmltoimage.exe, wkhtmltopdf.exe
my package version Rotativa.aspnetcore v1.1.1 ım using current asp.net core version 3.xx what is problem any one can be explain me ?