dotnet*: add and update Korean translation (#14515)

This commit is contained in:
코드싸이
2024-11-02 03:02:08 +09:00
committed by GitHub
parent f76992563a
commit 98c9638ec8
10 changed files with 253 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
# dotnet tool
> .NET 도구를 관리하고 NuGet에서 게시된 도구를 검색.
> 더 많은 정보: <https://learn.microsoft.com/dotnet/core/tools/global-tools>.
- 전역 도구 설치 (`--global`은 로컬 도구에는 사용하지 않음):
`dotnet tool install --global {{dotnetsay}}`
- 로컬 도구 매니페스트에 정의된 도구 설치:
`dotnet tool restore`
- 특정 전역 도구 업데이트 (`--global`은 로컬 도구에는 사용하지 않음):
`dotnet tool update --global {{도구_이름}}`
- 전역 도구 제거 (`--global`은 로컬 도구에는 사용하지 않음):
`dotnet tool uninstall --global {{도구_이름}}`
- 설치된 전역 도구 나열 (`--global`은 로컬 도구에는 사용하지 않음):
`dotnet tool list --global`
- NuGet에서 도구 검색:
`dotnet tool search {{검색_어구}}`
- 도움말 표시:
`dotnet tool --help`