From 267cd46ea0de85a78b38110495d7ab2a0ce3c498 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Wed, 28 Nov 2012 13:34:35 -0100 Subject: [PATCH] Another additional fix to make the reloading of trees work after package install --- src/Umbraco.Core/PluginManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Core/PluginManager.cs b/src/Umbraco.Core/PluginManager.cs index 5b458e6a15..213e2b3402 100644 --- a/src/Umbraco.Core/PluginManager.cs +++ b/src/Umbraco.Core/PluginManager.cs @@ -175,7 +175,9 @@ namespace Umbraco.Core //add the app code folder and everything in it new DirectoryInfo(IOHelper.MapPath("~/App_Code")), //add the global.asax (the app domain also monitors this, if it changes will do a full restart) - new FileInfo(IOHelper.MapPath("~/global.asax")) + new FileInfo(IOHelper.MapPath("~/global.asax")), + //add the trees.config + new FileInfo(IOHelper.MapPath(SystemDirectories.Config + "/trees.config")) } ); return _currentAssembliesHash;