I have added the following reference to my winforms C# project:
CrystalDecisions.CrystalReports.Engine
CrystalDecisions.ReportSource
CrystalDecisions.Shared
but no matter what I do i can't use the .dll's in any of my .cs pages. I get the following warning when I add the CrystalRecisions references:
Warning The referenced assembly "CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL" could not be resolved because it has a dependency on "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project.
From the error above I can see that it says that it has a dependency on system.web but what do I do from here? What do i need to download in order to run Crystal Reports from my Winforms C# application?