Browse Source
Merge pull request #11783 from abpframework/liangshiwei/cli
Enhance CSharpServiceProxyGenerator
pull/11787/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
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs
|
|
|
@ -21,7 +21,7 @@ public class CSharpServiceProxyGenerator : ServiceProxyGeneratorBase<CSharpServi |
|
|
|
private const string MethodPlaceholder = "<method placeholder>"; |
|
|
|
private const string ClassName = "<className>"; |
|
|
|
private const string ServiceInterface = "<serviceInterface>"; |
|
|
|
private static string[] ServicePostfixes = { "AppService", "ApplicationService" }; |
|
|
|
private readonly static string[] ServicePostfixes = { "AppService", "ApplicationService" , "Service"}; |
|
|
|
private const string DefaultNamespace = "ClientProxies"; |
|
|
|
private const string Namespace = "<namespace>"; |
|
|
|
private const string AppServicePrefix = "Volo.Abp.Application.Services"; |
|
|
|
|