search
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Got this to work. Had to add the following in web.config. The install package did not add this.
<scanAssembly forceBinFolderScan="false">
<add assembly="EPiServer.DeveloperTools" />
</scanAssembly>
I've installed EPiServer.DeveloperTools 3.5.0 via the console using PM> Install-Package EPiServer.DeveloperTools and all went well. All dependency versions are good. The issue is that EPiServfer.DeveloperTool never shows in EPiServer. When I go to http://localhost/EPiServer/, all that shows is the Dashboard (which is empty) and CMS. What am I missing?
<episerver.shell>
<publicModules rootPath="~/modules/" autoDiscovery="Modules" />
<protectedModules rootPath="~/EPiServer/">
<add name="EPiServer.XForms" />
<add name="EPiServer.Search.Cms" />
<add name="Shell" />
<add name="CMS" />
<add name="EPiServer.Cms.TinyMce" />
<add name="EPiServer.Forms.UI" />
<add name="EPiServer.Forms" />
<add name="EPiServer.DeveloperTools" />
</protectedModules>
</episerver.shell>