Skip to content

자음모음 분리 현상을 해결하기 위한 tool.

License

Notifications You must be signed in to change notification settings

shockzinfinity/PathPolisher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PathPolisher

자음모음 분리 현상을 해결하기 위한 tool.

Usage

by source

$ dotnet build && dotnet publish
$ cd ./PathPolisher/bin/Release/net9.0/win-x64/publish

# default: current directory
$ pathpolisher --directory <target directory> # e.g. c:/users/username/documents
$ pathpolisher -d <target directory>

by dotnet tool

$ dotnet build && dotnet pack

# install dotnet global tool
$ dotnet tool install --global --add-source ./nupkg PathPolisher

# default: current directory
$ polish --directory <target directory> # e.g. c:/users/username/documents
$ polish -d <target directory>
# uninstall
$ dotnet tool uninstall -g PathPolisher

Misc

build 를 위한 .csproj 설정

  • for build
<PropertyGroup>
...
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
...
</PropertyGroup>
  • for dotnet tool
<PropertyGroup>
...
<PackAsTool>true</PackAsTool>
<ToolCommandName>polish</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
...
</PropertyGroup>

Reference

About

자음모음 분리 현상을 해결하기 위한 tool.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages