diff --git a/backend/src/Squidex.Data.EntityFramework/Squidex.Data.EntityFramework.csproj b/backend/src/Squidex.Data.EntityFramework/Squidex.Data.EntityFramework.csproj index db4b5392e..547887411 100644 --- a/backend/src/Squidex.Data.EntityFramework/Squidex.Data.EntityFramework.csproj +++ b/backend/src/Squidex.Data.EntityFramework/Squidex.Data.EntityFramework.csproj @@ -35,16 +35,16 @@ - - - + + + - - - + + + diff --git a/backend/src/Squidex.Data.MongoDb/Squidex.Data.MongoDb.csproj b/backend/src/Squidex.Data.MongoDb/Squidex.Data.MongoDb.csproj index 60927e0ec..9f9089966 100644 --- a/backend/src/Squidex.Data.MongoDb/Squidex.Data.MongoDb.csproj +++ b/backend/src/Squidex.Data.MongoDb/Squidex.Data.MongoDb.csproj @@ -24,11 +24,11 @@ - - - - - + + + + + diff --git a/backend/src/Squidex.Domain.Apps.Core.Operations/Squidex.Domain.Apps.Core.Operations.csproj b/backend/src/Squidex.Domain.Apps.Core.Operations/Squidex.Domain.Apps.Core.Operations.csproj index 6f7d72dea..2a5fcc6c5 100644 --- a/backend/src/Squidex.Domain.Apps.Core.Operations/Squidex.Domain.Apps.Core.Operations.csproj +++ b/backend/src/Squidex.Domain.Apps.Core.Operations/Squidex.Domain.Apps.Core.Operations.csproj @@ -28,8 +28,8 @@ - - + + diff --git a/backend/src/Squidex.Domain.Apps.Entities/Schemas/SchemaPermanentDeleter.cs b/backend/src/Squidex.Domain.Apps.Entities/Schemas/SchemaPermanentDeleter.cs index cd326485f..d4f1c9da7 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Schemas/SchemaPermanentDeleter.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Schemas/SchemaPermanentDeleter.cs @@ -61,7 +61,7 @@ public sealed class SchemaPermanentDeleter( return; } - using var activity = Infrastructure.Telemetry.Activities.StartActivity("RemoveAppFromSystem"); + using var activity = Telemetry.Activities.StartActivity("RemoveAppFromSystem"); var app = await appProvider.GetAppAsync(schemaDeleted.AppId.Id); if (app == null) @@ -77,7 +77,7 @@ public sealed class SchemaPermanentDeleter( foreach (var deleter in deleters) { - using (Infrastructure.Telemetry.Activities.StartActivity(deleter.GetType().Name)) + using (Telemetry.Activities.StartActivity(deleter.GetType().Name)) { await deleter.DeleteSchemaAsync(app, schema.Snapshot, default); } diff --git a/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerManager.cs b/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerManager.cs index 15c2b4961..849012292 100644 --- a/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerManager.cs +++ b/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerManager.cs @@ -23,7 +23,7 @@ public sealed class EventConsumerManager( { var snapshots = await persistence.Snapshots.ReadAllAsync(ct).ToListAsync(ct); - return snapshots.Where(x => activeNames.Contains(x.Key.ToString())).Select(x => x.Value.ToInfo(x.Key.ToString())).ToList(); + return snapshots.Where(x => activeNames.Contains(x.Key.ToString())).Select(x => x.Value.ToInfo(x.Key.ToString())).OrderBy(x => x.Name).ToList(); } public async Task ResetAsync(string consumerName, diff --git a/backend/src/Squidex.Infrastructure/Squidex.Infrastructure.csproj b/backend/src/Squidex.Infrastructure/Squidex.Infrastructure.csproj index 328989d7b..09f4182cf 100644 --- a/backend/src/Squidex.Infrastructure/Squidex.Infrastructure.csproj +++ b/backend/src/Squidex.Infrastructure/Squidex.Infrastructure.csproj @@ -24,13 +24,13 @@ - - - - - - - + + + + + + + diff --git a/backend/src/Squidex/Squidex.csproj b/backend/src/Squidex/Squidex.csproj index b6655f028..56b3abb33 100644 --- a/backend/src/Squidex/Squidex.csproj +++ b/backend/src/Squidex/Squidex.csproj @@ -59,17 +59,17 @@ - - - - - - + + + + + + - - - - + + + + @@ -83,11 +83,11 @@ - + - +