Browse Source
Merge pull request #12706 from abpframework/yekalkan-patch-1
Cli: fix typo in ProjectCreationCommandBase.cs file
pull/12737/head
maliming
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ProjectCreationCommandBase.cs
|
|
|
@ -36,14 +36,14 @@ public abstract class ProjectCreationCommandBase |
|
|
|
ICmdHelper cmdHelper, |
|
|
|
IInstallLibsService installLibsService, |
|
|
|
AngularPwaSupportAdder angularPwaSupportAdder, |
|
|
|
InitialMigrationCreator ınitialMigrationCreator) |
|
|
|
InitialMigrationCreator initialMigrationCreator) |
|
|
|
{ |
|
|
|
ConnectionStringProvider = connectionStringProvider; |
|
|
|
SolutionPackageVersionFinder = solutionPackageVersionFinder; |
|
|
|
CmdHelper = cmdHelper; |
|
|
|
InstallLibsService = installLibsService; |
|
|
|
AngularPwaSupportAdder = angularPwaSupportAdder; |
|
|
|
InitialMigrationCreator = ınitialMigrationCreator; |
|
|
|
InitialMigrationCreator = initialMigrationCreator; |
|
|
|
|
|
|
|
Logger = NullLogger<NewCommand>.Instance; |
|
|
|
} |
|
|
|
|