按照教程进行升级替换
https://gcdn.grapecity.com.cn/fo ... &extra=page%3D1
顺利进行
1. 先进行版本转换 2. 设置项目 .Net Framework 版本为 4.6.2 3. 安装 JSViewer 需要的Nuget包 l 在菜单栏中>>选择工具>>NuGet包管理器>>程序包管理器控制台 l 选择对应的包 n Microsoft.Owin.Host.SystemWeb4.0.0 n Microsoft.Owin4.0.0 |
| 4. 选中项目,添加新项à OWIN Startupclass 用于设置报表存放路径
5. 右键单击项目添加ActiveReports 必要的引用或者通过添加新项->Reporting-RDL 报表来自动生成对应dll C:\Program Files (x86)\CommonFiles\GrapeCity\ActiveReports 13 如 l GrapeCity.ActiveReports.Aspnet.Viewer.dll
6. 添加 Scripts 脚本文件 到项目中及 Web.config 文件(如果 旧项目的 Web.config文件没有改动的话,可直接覆盖)JS 代码可以从NPM 直接获取 从这步开始出现问题了,不知道怎么从npm获取 7. 修改 Startup.cs 函数 //Startup.cs u }sing GrapeCity.ActiveReports.Aspnet.Viewer; publicvoid Configuration(IAppBuilder app) { <...> app.UseReporting(settings => { // Reporting middleware settings settings.UseFileStore(newDirectoryInfo("path to the reports folder"));
}); 这个文件也报错了,说是缺少引用,我已经把该引用的引用进去了
|