I define a sap/ui/core/mvc/XMLView but instead of using the recommended sap.ui.core.mvc namespace to define the View, I use the old sap.ui.core namespace.
<core:View
xmlns:mvc="sap.ui.core.mvc"
xmlns:core="sap.ui.core"
xmlns="sap.m"
controllerName="ui5app.controller.Home">
<Text text="Hello"/>
<core:View>
Detection Goal
This scenario is detected and a finding is reported to use the sap.ui.core.mvc namespace.
Autofix Goal
The view definition is adjusted to consume the sap.ui.core.mvc namespace. In case the sap.ui.core is no longer used after the migration, it should be removed.
<mvc:View
xmlns:mvc="sap.ui.core.mvc"
xmlns:core="sap.ui.core"
xmlns="sap.m"
controllerName="ui5app.controller.Home">
<Text text="Hello"/>
<mvc:View>
I define a
sap/ui/core/mvc/XMLViewbut instead of using the recommendedsap.ui.core.mvcnamespace to define the View, I use the oldsap.ui.corenamespace.Detection Goal
This scenario is detected and a finding is reported to use the
sap.ui.core.mvcnamespace.Autofix Goal
The view definition is adjusted to consume the
sap.ui.core.mvcnamespace. In case thesap.ui.coreis no longer used after the migration, it should be removed.