Fixed issue with models builder

Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-09-23 14:22:53 +02:00
parent 435cf2623a
commit acc7065fa1
4 changed files with 4 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
namespace Umbraco.Web.PublishedModels
{
// this is here so that Umbraco.Web.PublishedModels namespace exists in views
// even if people are not using models at all - because we are referencing it
// when compiling views - hopefully noone will ever create an actual model
// with that name
internal class DummyClassSoThatPublishedModelsNamespaceExists
{ }
}