Have you found an answer to this? I was also following that tutorial and have the same issue. I do not see a "Save and generate models" as Tim suggests.
For Umbraco v8, the Models Builder tab/dashboard got moved to the Settings section. Majority of the dashboards/trees in the v7 Developer section got moved with Setting section.
I ran into this problem where the Models Builder dashboard was missing and found the following entry in my logs
ModelsBuilder.Embedded is disabled, the external ModelsBuilder was detected.
When I looked in my /bin, I found the following dll:
/bin/Umbraco.ModelsBuilder.dll
This was an old dll to the v7 ModelsBuilder and will trigger the core ModelsBuilder in v8 to be disabled. In v8, that nuget package will get you the full version of Models Builder. In my case, we didn't need the full version any longer and just needed to delete that dll and any references from our project. Some projects may need the full version. See this documentation: https://our.umbraco.com/documentation/reference/templating/modelsbuilder/install-models-builder
models builder tab missing from developer section!
Hi there,
I was following this guide https://24days.in/umbraco-cms/2016/getting-started-with-modelsbuilder/
and now my modelsbuilder tab in the developer area is completely missing! The only thing I changed in my web config was:
it should be between published status and health check
Can't seem to find anything online about this, can someone help me out?
thanks!
That tab is gone in v8. Go to a doctype and if you have model updates you will get a Save button with an additional "Save and generate models" option.
Have you found an answer to this? I was also following that tutorial and have the same issue. I do not see a "Save and generate models" as Tim suggests.
Hi Austin,
You can generate the model in doctype settings!
You can generate models without custom tool
I didn't realize you could save and generate models there. Thanks Nevin!
I couldn't see the tab or the button 'Save and generate models' either until I ran the solution without debugging - hope that helps!
Thank you for your reply Rosa. Nevin was able to help me with my question. I always choose to run my solution without debugging.
For Umbraco v8, the Models Builder tab/dashboard got moved to the Settings section. Majority of the dashboards/trees in the v7 Developer section got moved with Setting section.
I ran into this problem where the
Models Builder
dashboard was missing and found the following entry in my logsWhen I looked in my
/bin
, I found the following dll:/bin/Umbraco.ModelsBuilder.dll
This was an old dll to the v7 ModelsBuilder and will trigger the core ModelsBuilder in v8 to be disabled. In v8, that nuget package will get you the full version of Models Builder. In my case, we didn't need the full version any longer and just needed to delete that dll and any references from our project. Some projects may need the full version. See this documentation: https://our.umbraco.com/documentation/reference/templating/modelsbuilder/install-models-builder
is working on a reply...