I am working on a project in Umbraco 10 and added the Umbraco.Forms package. In older projects, we used to have a manually written InsertUmbracoFormWithTheme.cshtml, which didn't work in version 10 and should be deleted according to this thread
After deleting that file, I end up with a bunch of errors in the browser, starting with:
The type or namespace name 'ClientDependency' could not be found (are you missing a using directive or an assembly reference?)
@using ClientDependency.Core.Mvc The type or namespace name 'Mvc' does not exist in the namespace 'Umbraco.Forms' (are you missing an assembly reference?)
@using Umbraco.Forms.Mvc.BusinessLogic The type or namespace name 'Mvc' does not exist in the namespace 'Umbraco.Forms' (are you missing an assembly reference?)
@using Umbraco.Forms.Mvc
There errors (in part) arise from files within the Views\Partials\Forms\ folder, which I cannot adjust (probably because they're created through the Umbraco.Forms package).
Umbraco 10 using Umbraco Forms package
Hi,
I am working on a project in Umbraco 10 and added the Umbraco.Forms package. In older projects, we used to have a manually written InsertUmbracoFormWithTheme.cshtml, which didn't work in version 10 and should be deleted according to this thread
After deleting that file, I end up with a bunch of errors in the browser, starting with:
There errors (in part) arise from files within the Views\Partials\Forms\ folder, which I cannot adjust (probably because they're created through the Umbraco.Forms package).
How should I solve these errors?
is working on a reply...