Browse Source

Rename `ınıtial` to `initial`.

pull/12504/head
maliming 4 years ago
committed by GitHub
parent
commit
eff1a08edd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs

8
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs

@ -13,16 +13,16 @@ namespace Volo.Abp.Cli.Commands;
public class CreateMigrationAndRunMigratorCommand : IConsoleCommand, ITransientDependency
{
private readonly InitialMigrationCreator _ıtialMigrationCreator;
private readonly InitialMigrationCreator _initialMigrationCreator;
public const string Name = "create-migration-and-run-migrator";
public ICmdHelper CmdHelper { get; }
public DotnetEfToolManager DotnetEfToolManager { get; }
public ILogger<CreateMigrationAndRunMigratorCommand> Logger { get; set; }
public CreateMigrationAndRunMigratorCommand(ICmdHelper cmdHelper, InitialMigrationCreator ıtialMigrationCreator, DotnetEfToolManager dotnetEfToolManager)
public CreateMigrationAndRunMigratorCommand(ICmdHelper cmdHelper, InitialMigrationCreator initialMigrationCreator, DotnetEfToolManager dotnetEfToolManager)
{
_ınıtialMigrationCreator = ıtialMigrationCreator;
_initialMigrationCreator = initialMigrationCreator;
CmdHelper = cmdHelper;
DotnetEfToolManager = dotnetEfToolManager;
Logger = NullLogger<CreateMigrationAndRunMigratorCommand>.Instance;
@ -46,7 +46,7 @@ public class CreateMigrationAndRunMigratorCommand : IConsoleCommand, ITransientD
await DotnetEfToolManager.BeSureInstalledAsync();
var migrationsCreatedSuccessfully = await _ıtialMigrationCreator.CreateAsync(commandLineArgs.Target, !nolayers);
var migrationsCreatedSuccessfully = await _initialMigrationCreator.CreateAsync(commandLineArgs.Target, !nolayers);
if (migrationsCreatedSuccessfully)
{

Loading…
Cancel
Save