diff --git a/dist/build-package.ps1 b/dist/build-package.ps1 index faec5562..bd57972e 100644 --- a/dist/build-package.ps1 +++ b/dist/build-package.ps1 @@ -60,7 +60,7 @@ dotnet build ..\uSyncMigrations.sln -c $env /p:$buildParams ""; "##### Packaging"; "----------------------------------" ; "" dotnet pack ..\uSync.Migrations.Core\uSync.Migrations.Core.csproj --no-restore --no-build -c $env -o $outFolder -p:$buildParams -dotnet pack ..\uSync.Migrations.Clients\uSync.Migrations.Client.csproj --no-restore --no-build -c $env -o $outFolder -p:$buildParams +dotnet pack ..\uSync.Migrations.Client\uSync.Migrations.Client.csproj --no-restore --no-build -c $env -o $outFolder -p:$buildParams dotnet pack ..\uSync.Migrations.Migrators\uSync.Migrations.Migrators.csproj --no-restore --no-build -c $env -o $outFolder -p:$buildParams dotnet pack ..\uSync.Migrations\uSync.Migrations.csproj --no-restore --no-build -c $env -o $outFolder -p:$buildParams diff --git a/uSync.Migrations.Core/Handlers/Shared/SharedDataTypeHandler.cs b/uSync.Migrations.Core/Handlers/Shared/SharedDataTypeHandler.cs index d7968bbf..85b2813c 100644 --- a/uSync.Migrations.Core/Handlers/Shared/SharedDataTypeHandler.cs +++ b/uSync.Migrations.Core/Handlers/Shared/SharedDataTypeHandler.cs @@ -92,8 +92,8 @@ protected override void PrepareFile(XElement source, SyncMigrationContext contex context.DataTypes.GetByDefinition(dtd)!.OriginalEditorAlias = editorAlias; } } - - public void PrePrepareFiles(XElement source, SyncMigrationContext context) + + protected override void PrePrepareFile(XElement source, SyncMigrationContext context) { var editorAlias = GetEditorAlias(source); var (alias, dtd) = GetAliasAndKey(source, context);