I know, it's a big leap but I was assigned this old application. Obviously, a lot of things have changed.
currently we are using:
bundles.Add(new ScriptBundle("~/bundles/kendo").Include(
string.Format("~/Scripts/kendo/{0}/jszip.min.js", KendoVersion),
string.Format("~/Scripts/kendo/{0}/kendo.all.min.js", KendoVersion),
string.Format("~/Scripts/kendo/{0}/kendo.aspnetmvc.min.js", KendoVersion)));
and
bundles.Add(new StyleBundle(string.Format("~/Content/kendo/{0}/css", KendoVersion)).Include(
string.Format("~/Content/kendo/{0}/kendo.common-bootstrap.min.css", KendoVersion),
string.Format("~/Content/kendo/{0}/kendo.custom.css", KendoVersion)))
I noticed none of the Content files are around anymore, or the jszip.min.js
Are there new files to replace these with?
I assume, even if there are, there will be code changes involved. correct?
I started out trying to update Bootstrap to the latest, but I don't think the 2017 version of kendo was playing well with it.
Thanks in advance.