* Added new notification to hook in after the premigrations and use this to init different services. * Force MaxDegreeOfParallelism to 1, while investigating scopes * Tried some more workarounds * Updated scopes and changed parallel to non parallel to ensure migration works * Missing scope * Make it parallel again - The secret is, the SuppressFlow needs to be when you create the task, but not on the await!. * Fixed issue when DEBUG_SCOPES is not added to tests. * Remove test exception * Try build on ubuntu again, even that we know it can be stuck. Just a test to see if all tests pass * Updated comment --------- Co-authored-by: kjac <kja@umbraco.dk>
20 lines
564 B
C#
20 lines
564 B
C#
namespace Umbraco.Cms.Core;
|
|
|
|
/// <summary>
|
|
/// Defines constants.
|
|
/// </summary>
|
|
public static partial class Constants
|
|
{
|
|
/// <summary>
|
|
/// Defines constants for composition.
|
|
/// </summary>
|
|
public static class Composing
|
|
{
|
|
public static readonly string[] UmbracoCoreAssemblyNames =
|
|
{
|
|
"Umbraco.Core", "Umbraco.Infrastructure", "Umbraco.Examine.Lucene",
|
|
"Umbraco.Web.Common", "Umbraco.Cms.Api.Common","Umbraco.Cms.Api.Delivery","Umbraco.Cms.Api.Management", "Umbraco.Web.Website",
|
|
};
|
|
}
|
|
}
|