Browse Source
Merge pull request #18062 from abpframework/auto-merge/rel-7-4/2261
Merge branch dev with rel-7.4
update-doc
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
2 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs
|
|
|
@ -538,8 +538,11 @@ public class CSharpServiceProxyGenerator : ServiceProxyGeneratorBase<CSharpServi |
|
|
|
usingNamespaceList?.AddIfNotContains($"using {GetTypeNamespace(typeName)};"); |
|
|
|
return NormalizeTypeName(typeName.Split(".").Last()); |
|
|
|
} |
|
|
|
|
|
|
|
AddGenericTypeUsingNamespace(typeName, usingNamespaceList); |
|
|
|
|
|
|
|
if(usingNamespaceList != null) |
|
|
|
{ |
|
|
|
AddGenericTypeUsingNamespace(typeName, usingNamespaceList); |
|
|
|
} |
|
|
|
|
|
|
|
var type = new StringBuilder(); |
|
|
|
var s1 = typeName.Split("<"); |
|
|
|
|