the application requires that assembly microsoft.reportviewer.processingObjectModel version 11.0.0.0 be installed in the global assembly cache first

前端 未结 9 1013
天涯浪人
天涯浪人 2021-02-08 18:08

I have a small windows forms application created in Visual Studio 2012 that uses ReportViewer version 11.0.0.0.

The application target framework is .NET 4.0 and its depl

9条回答
  •  星月不相逢
    2021-02-08 19:04

    It depends on the setup type you are using but basically, it means the required library is missing from your server or computer. To enable the application to download from the server (In a client-server architecture), you need to include the file(s) in the project.

    1. Go to your application option and locate the "Publish" tab
    2. Click on "Application files"
    3. In the ensuing dialog, select to include all the libraries you want included (or that are required to run your application on the client machine and click "Ok")
    4. Build your application and then publish to the server.

    I hope this works for you, it worked for me in Visual Studio 2010 Professional

提交回复
热议问题