Browse Source

Merge pull request #16463 from abpframework/abp-cli-generate-proxy-service-type-issue

Fix service-type all
pull/16464/head
maliming 3 years ago
committed by GitHub
parent
commit
532f7c1250
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ProxyCommandBase.cs

2
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ProxyCommandBase.cs

@ -79,7 +79,7 @@ public abstract class ProxyCommandBase<T> : IConsoleCommand, ITransientDependenc
? ServiceType.Application
: serviceTypeArg.ToLower() == "integration"
? ServiceType.Integration
: null;
: ServiceType.All;
}
var withoutContracts = commandLineArgs.Options.ContainsKey(Options.WithoutContracts.Short) ||

Loading…
Cancel
Save