Merge pull request #7180 from abpframework/Cli-remove-cms-kit-always

Cli template creation: remove cms kit always
pull/7182/head^2
Ahmet Çotur 5 years ago committed by GitHub
commit 536e7fb816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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());
}

Loading…
Cancel
Save