Background:
I create an ASP.NET Web Application - Empty. I add to it a Telerik HTML Report Viewer page. The wizard creates a new REST service with a sample report. Inside the Html5ReportViewer.html file is the line
<!--If Kendo is used it should be added before the report viewer.-->
<script src="/api/reports/resources/js/telerikReportViewer-15.0.21.326.min.js/"></script>
with a trailing / in the src attribute. This works perfectly.
Problem:
I have a ASP.NET Webforms website that displays reports from the Reporting web application. Pages that display a report also have this script tag. However, any time there is an update for the Reporting toolkit, if I use the Reporting Upgrade Wizard, (Visual Studio 2019 "Extensions" menu -> Telerik -> Reporting -> Upgrade Wizard) the script tags get updated with the latest version, but the trailing / in the src attribute is no longer there and the page breaks because the Javascript library is not loaded. Adding in the / fixes the problem. Is this intended behavior or a bug in the upgrade wizard?