Merge pull request #8681 from abpframework/issue/8394

Cli: Configure cms-kit option for stable version
pull/8716/head
Alper Ebicoglu 5 years ago committed by GitHub
commit 44272782de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -210,10 +210,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.App
{
if (string.IsNullOrWhiteSpace(context.BuildArgs.Version))
{
// We'll return true after 4.3.0 stable release. see https://github.com/abpframework/abp/issues/8394
// return true;
return context.BuildArgs.ExtraProperties.ContainsKey(NewCommand.Options.Preview.Long);
return true;
}
return SemanticVersion.Parse(context.BuildArgs.Version) > SemanticVersion.Parse("4.2.9");

Loading…
Cancel
Save