Hello,
I am struggling to deploy a Winforms application that implements the Reportviewer. After some reading online the best I could find was to include the following dll files with my application.
This solved the initial errors of missing assemblies.
Microsoft.ReportViewer.Common.dll
Microsoft.Reportviewer.ProcessingObjects.dll
Microsoft.Reportviewer.Winforms.dll
However no I am getting the following error:
Could not load file / assembly 'Microsoft.SQLServer.Types. Version = 11.0.0.0, Culture-neutral...' etc.
I'd like to as some direction before I start adding a bunch of Dlls to my bin folder prior to shipping. I am uncertain as to whether I am following the correct method of redistribution and / or whether there is some easier / better way of doing this. It just seems like there are an extreme amount of dependencies that need to be shipped along.
My application is a simple winforms project that interacts with SQLite (assemblies are shipped with). In additional to the SQLite and ReportViewer requirements, my installer ensures that the .Net frameworks is installed (I can understand this requirement), and it also has to ensure that the C++ redistributables are installed.
1. Id like confirmation on the fact that I have to distribute all these assemblies / RTEs.
2. I require some advice on getting the ReportViewer to work on a client machine.
You help greatly appreciated.