Question Error CS0234 missing 'Reporting'?

Isuru

New member
Joined
Aug 28, 2020
Messages
1
Programming Experience
Beginner
I downloaded this project and database but when I run it I get this error, Can you please help me to fix this? I really appreciate your help.

I have attached the source code and database, please take a look.
Thank you!


Annotation 2020-08-28 093631.jpg
 

Attachments

  • DBApplication.zip
    313.8 KB · Views: 16
You are missing the NuGet package for the ReportViewer control. Expand the References node in the Solution Explorer and you should see a couple of references flagged. To add the appropriate references via NuGet, do the following:
  1. Select Project -> Manage NuGet Packages from the main menu.
  2. Select the Browse tab.
  3. Enter "Microsoft.ReportingServices.ReportViewerControl.Winforms" into the Search box.
  4. Select the match in the results with that exact name and version 150.1404.0.
  5. Click Install on the right-hand side.
Once the package and its dependencies are installed, you should see some extra references and none flagged. You should now be able to rebuild your project to clear those build errors. If any persist, double-click them in the Error List window to open the corresponding file and they should clear then.
 
Back
Top Bottom