Skip to content

Commit

Permalink
Merge pull request #52 from Lombiq/issue/NEST-401
Browse files Browse the repository at this point in the history
NEST-401: Upgrade to Orchard Core pre-1.6 nightly
  • Loading branch information
Piedone authored Feb 22, 2023
2 parents cbdc19d + 58be1fc commit 6429e58
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Lombiq.Privacy/Extensions/MigrationServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using Microsoft.Extensions.DependencyInjection;
using OrchardCore.Data.Migration;

namespace Lombiq.Privacy.Extensions;

// We need to use this until the Orchard Core upgrade so we don't have to upgrade submodules to nightly versions. This
// is the same method as what is in the 1.6 nightly version of Orchard Core. During the upgrade, this can be removed and
// use the Orchard Core method for data migrations.

/// <summary>
/// Provides extension methods for <see cref="IServiceCollection"/> to add YesSql migration <see cref="IDataMigration"/>.
/// </summary>
public static class MigrationServiceCollectionExtensions
{
public static IServiceCollection AddDataMigration<TDataMigration>(this IServiceCollection services)
where TDataMigration : class, IDataMigration => services.AddScoped<IDataMigration, TDataMigration>();
}
2 changes: 1 addition & 1 deletion Lombiq.Privacy/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Lombiq.Privacy.Activities;
using Lombiq.Privacy.Constants;
using Lombiq.Privacy.Drivers;
using Lombiq.Privacy.Extensions;
using Lombiq.Privacy.Filters;
using Lombiq.Privacy.Handlers;
using Lombiq.Privacy.Migrations;
Expand All @@ -15,7 +16,6 @@
using Microsoft.Extensions.Options;
using OrchardCore.ContentManagement;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.Data.Migration;
using OrchardCore.Modules;
using OrchardCore.Navigation;
using OrchardCore.ResourceManagement;
Expand Down

0 comments on commit 6429e58

Please sign in to comment.