I am developing a Blazor Server app and it generates reports just fine when running in VS 2022. However, I get an error when I try the same code running in IIS on a Windows server. The error I get is;
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.ReportViewer.NETCore, Version=15.1.17.0, Culture=neutral, PublicKeyToken=null'.
The system cannot find the file specified.
I checked the directory and Microsoft.ReportViewer.NETCore, Version=15.1.17.0 is there along with Common, DataVisulization, and ProcessingObjectModel. Can you offer any suggestions for or solutions to this error?
I am developing a Blazor Server app and it generates reports just fine when running in VS 2022. However, I get an error when I try the same code running in IIS on a Windows server. The error I get is;
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.ReportViewer.NETCore, Version=15.1.17.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
I checked the directory and Microsoft.ReportViewer.NETCore, Version=15.1.17.0 is there along with Common, DataVisulization, and ProcessingObjectModel. Can you offer any suggestions for or solutions to this error?
Joe