From f87e96ed75386c54cd84f9da7d4d68352567052e Mon Sep 17 00:00:00 2001 From: Arkat Erol Date: Thu, 16 Jan 2020 11:46:17 +0300 Subject: [PATCH] generate proxy command clean up --- .../Volo/Abp/Cli/Commands/GenerateProxyCommand.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs index 5c113a2a74..00980e6ac6 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs @@ -1,21 +1,15 @@ using System; using System.IO; -using System.Net; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; -using ICSharpCode.SharpZipLib.Core; -using ICSharpCode.SharpZipLib.Zip; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; -using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Volo.Abp.Cli.Args; using Volo.Abp.Cli.ProjectBuilding; using Volo.Abp.Cli.ProjectBuilding.Building; -using Volo.Abp.Cli.Utils; using Volo.Abp.DependencyInjection; -using Microsoft.CSharp; using System.Collections.Generic; using System.Linq; using static System.String; @@ -497,7 +491,9 @@ namespace Volo.Abp.Cli.Commands public static string PascalToKebabCase(this string value) { if (IsNullOrEmpty(value)) + { return value; + } return Regex.Replace( value,