Browse Source
Merge pull request #7180 from abpframework/Cli-remove-cms-kit-always
Cli template creation: remove cms kit always
pull/7186/head
Ahmet Çotur
5 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
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/App/AppTemplateBase.cs
|
|
|
@ -144,7 +144,8 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.App |
|
|
|
steps.Add(new RemoveEfCoreDependencyFromPublicStep()); |
|
|
|
} |
|
|
|
|
|
|
|
if (context.BuildArgs.ExtraProperties.ContainsKey("without-cms-kit")) |
|
|
|
// We disabled cms-kit for v4.2 release.
|
|
|
|
if (true || context.BuildArgs.ExtraProperties.ContainsKey("without-cms-kit")) |
|
|
|
{ |
|
|
|
steps.Add(new RemoveCmsKitStep()); |
|
|
|
} |
|
|
|
|