This commit is contained in:
2022-12-13 11:20:53 +08:00
parent 6693a66b30
commit 750545c2d0
43 changed files with 179 additions and 109 deletions

View File

@ -1,3 +1,6 @@
// ReSharper disable ClassNeverInstantiated.Global
using System.Security.Cryptography;
using System.Text;
using NSExt.Extensions;
@ -10,7 +13,7 @@ namespace Dot.Text;
[Description(nameof(Str.TextTool))]
[Localization(typeof(Str))]
public sealed class Main : ToolBase<Option>
internal sealed class Main : ToolBase<Option>
{
private ref struct Output
{

View File

@ -1,6 +1,9 @@
// ReSharper disable ClassNeverInstantiated.Global
namespace Dot.Text;
public class Option : OptionBase
internal class Option : OptionBase
{
[CommandArgument(0, "[input text]")]
[Description(nameof(Str.TextTobeProcessed))]